# Google Meet — how to use (mcp.ai)

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

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_googlemeet?ms=1781541960000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `googlemeet_create_meet`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/googlemeet`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/googlemeet/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/googlemeet/create/meet` — Creates a new google meet space, optionally configuring its access type and entry point access controls.
  - body: { access_type?: string, entry_point_access?: string }
- `POST https://api.mcp.ai/api/googlemeet/get/conference/record/for/meet` — Get conference record
  - body: { end_time?: string, space_name?: string, start_time?: string, meeting_code?: string }
- `POST https://api.mcp.ai/api/googlemeet/get/meet` — Retrieve details of a google meet space using its unique identifier.
  - body: { space_name: string }
- `POST https://api.mcp.ai/api/googlemeet/get/participant/session` — Tool to get a specific participant session from a conference record. use when you need to retrieve details about a particular participant in a past meeting.
  - body: { name: string }
- `POST https://api.mcp.ai/api/googlemeet/get/recordings/by/conference/record/id` — Retrieves recordings from google meet for a given conference record id.
  - body: { conferenceRecord_id: string }
- `POST https://api.mcp.ai/api/googlemeet/get/transcripts/by/conference/record/id` — Retrieves all transcripts for a specific google meet conference using its conferencerecord id.
  - body: { conferenceRecord_id: string }
- `POST https://api.mcp.ai/api/googlemeet/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, space name, or time range.
  - body: { filter?: string, page_size?: integer, page_token?: string }
- `POST https://api.mcp.ai/api/googlemeet/list/participant/sessions` — Tool to list all participant sessions for a specific conference record in google meet. use this when you need to retrieve a list of participants who joined a particular meeting.
  - body: { filter?: string, parent: string, page_size?: integer, page_token?: string }
- `POST https://api.mcp.ai/api/googlemeet/update/space` — Updates a meeting space. use this tool to modify the settings of an existing google meet space. requires the space resource in the request body and the space name in the path.
  - body: { name: string, config?: object, updateMask?: string }

## More
- Page: https://mcp.ai/googlemeet
- Agent spec (llms.txt): https://mcp.ai/googlemeet/llms.txt
- Postman collection: https://mcp.ai/googlemeet/postman.json
