> ## Documentation Index
> Fetch the complete documentation index at: https://docs.boxd.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# Google Meet

> Google Meet is a secure video conferencing platform that integrates with Google Workspace, facilitating remote meetings, screen sharing, and chat

Google Meet is a secure video conferencing platform that integrates with Google Workspace, facilitating remote meetings, screen sharing, and chat

`googlemeet` · **15 tools** · no triggers

## Connect it

```bash theme={"theme":"github-dark"}
run auth googlemeet
run auth googlemeet --scope team    # shared with the organization
```

Or from the [Integrations page](https://app.boxd.sh/integrations) in the console. See [Connections](/guides/integrations/connections) for personal versus shared, and who may remove one.

## Use it

```bash theme={"theme":"github-dark"}
run googlemeet          # common commands
run googlemeet --all    # every command
```

```ts theme={"theme":"github-dark"}
import { googlemeet } from "@boxd/run";
```

## Common tools

| Tool                            | What it does                                                                                                                                          |
| ------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- |
| `create-meet`                   | Creates a new Google Meet space with optional configuration.                                                                                          |
| `end-active-conference`         | Ends an active conference in a Google Meet space. REQUIRES 'space\_name' parameter (e.g., 'spaces/jQCFfuBOdN5z' or just 'jQCFfuBOdN5z').              |
| `get-conference-record-by-name` | Tool to get a specific conference record by its resource name.                                                                                        |
| `get-participant-session`       | Retrieves detailed information about a specific participant session from a Google Meet conference record.                                             |
| `list-conference-records`       | Tool to list conference records. Use when you need to retrieve a list of past conferences, optionally filtering them by criteria like meeting code... |
| `list-participants`             | Lists the participants in a conference record. By default, ordered by join time descending.                                                           |
| `list-participant-sessions`     | Lists all participant sessions for a specific participant in a Google Meet conference.                                                                |
| `list-recordings`               | Tool to list recording resources from a conference record. Use when you need to retrieve recordings from a specific Google Meet conference.           |
| `list-transcript-entries`       | Tool to list structured transcript entries (speaker/time/text segments) for a specific Google Meet transcript.                                        |
| `update-space`                  | Updates the settings of an existing Google Meet space. Requires organizer/host privileges and the meetings.space.created OAuth scope.                 |

<Accordion title="All 15 tools" icon="list">
  | Tool                                      | What it does                                                                                                                                           |
  | ----------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | `create-meet`                             | Creates a new Google Meet space with optional configuration.                                                                                           |
  | `end-active-conference`                   | Ends an active conference in a Google Meet space. REQUIRES 'space\_name' parameter (e.g., 'spaces/jQCFfuBOdN5z' or just 'jQCFfuBOdN5z').               |
  | `get-conference-record-by-name`           | Tool to get a specific conference record by its resource name.                                                                                         |
  | `get-meet`                                | Retrieve details of a Google Meet space using its unique identifier.                                                                                   |
  | `get-participant-session`                 | Retrieves detailed information about a specific participant session from a Google Meet conference record.                                              |
  | `get-recordings-by-conference-record-id`  | Retrieves recordings from Google Meet for a given conference record ID.                                                                                |
  | `get-transcript`                          | Retrieves a specific transcript by its resource name. Returns transcript details including state (STARTED, ENDED, FILE\_GENERATED), start/end times... |
  | `get-transcript-entry`                    | Fetches a single transcript entry by resource name for targeted inspection or incremental processing.                                                  |
  | `get-transcripts-by-conference-record-id` | Retrieves all transcripts for a specific Google Meet conference using its conference\_record\_id.                                                      |
  | `list-conference-records`                 | Tool to list conference records. Use when you need to retrieve a list of past conferences, optionally filtering them by criteria like meeting code...  |
  | `list-participants`                       | Lists the participants in a conference record. By default, ordered by join time descending.                                                            |
  | `list-participant-sessions`               | Lists all participant sessions for a specific participant in a Google Meet conference.                                                                 |
  | `list-recordings`                         | Tool to list recording resources from a conference record. Use when you need to retrieve recordings from a specific Google Meet conference.            |
  | `list-transcript-entries`                 | Tool to list structured transcript entries (speaker/time/text segments) for a specific Google Meet transcript.                                         |
  | `update-space`                            | Updates the settings of an existing Google Meet space. Requires organizer/host privileges and the meetings.space.created OAuth scope.                  |
</Accordion>

[Open Google Meet in the console →](https://app.boxd.sh/integrations/detail/googlemeet)
