# Google Meet — MCP server on mcp.ai > Google Meet is a secure video conferencing platform that integrates with Google Workspace, facilitating remote meetings, screen sharing, and chat By: mcp.ai · official Page: https://mcp.ai/googlemeet ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_googlemeet?ms=1781542320000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/googlemeet/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/googlemeet/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/googlemeet/skill.md Postman collection (v2.1): https://mcp.ai/googlemeet/postman.json ## Tools - googlemeet_create_meet(access_type?: string, entry_point_access?: string) — Creates a new google meet space, optionally configuring its access type and entry point access controls. - googlemeet_get_conference_record_for_meet(end_time?: string, space_name?: string, start_time?: string, meeting_code?: string) — Get conference record - googlemeet_get_meet(space_name: string) — Retrieve details of a google meet space using its unique identifier. - googlemeet_get_participant_session(name: string) — 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. - googlemeet_get_recordings_by_conference_record_id(conferenceRecord_id: string) — Retrieves recordings from google meet for a given conference record id. - googlemeet_get_transcripts_by_conference_record_id(conferenceRecord_id: string) — Retrieves all transcripts for a specific google meet conference using its conferencerecord id. - googlemeet_list_conference_records(filter?: string, page_size?: integer, page_token?: string) — 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. - googlemeet_list_participant_sessions(filter?: string, parent: string, page_size?: integer, page_token?: string) — 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. - googlemeet_update_space(name: string, config?: object, updateMask?: string) — 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. ## Links Docs: https://mcp.ai/docs/mcps/googlemeet Website: https://mcp.ai/mcps/googlemeet