Labsco
AStheTECH logo

MewCP Google Meet MCP

from AStheTECH

Hosted, Stateless & Multitenant Google Meet MCP server enables AI assistants to create, manage, and coordinate virtual meetings through Google Meet.

๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅโœ“ VerifiedFreeQuick setup

Create, manage, and inspect Google Meet sessions โ€” directly from your AI workflows.

A Model Context Protocol (MCP) server that exposes Google Meet's API for creating meeting spaces, managing conference records, and retrieving participant information.

Overview

The Google Meet MCP Server provides full programmatic access to Google Meet through a stateless, multi-tenant interface:

  • Create, update, and end Google Meet meeting spaces
  • Retrieve conference records and meeting history
  • List and inspect participants and their session details

Perfect for:

  • Automating meeting creation and management from AI agents
  • Building assistants that can schedule, start, and end Meet sessions
  • Analyzing meeting attendance and participant data in LLM-powered pipelines

Tools

create_meeting_space โ€” Create a new Google Meet meeting space

Creates a new Google Meet meeting space and returns its details including the join link.

Inputs:

None

Output:

{
  "name": "spaces/abc-defg-hij",
  "meetingUri": "https://meet.google.com/abc-defg-hij",
  "meetingCode": "abc-defg-hij"
}
get_meeting_space โ€” Retrieve details for a Google Meet meeting space

Fetches the current details of an existing meeting space by its resource name.

Inputs:

- `name` (string, required) โ€” Space resource name e.g. `spaces/abc-defg-hij`

Output:

{
  "name": "spaces/abc-defg-hij",
  "meetingUri": "https://meet.google.com/abc-defg-hij",
  "meetingCode": "abc-defg-hij",
  "config": { "accessType": "OPEN" }
}
end_meeting_space โ€” End a Google Meet meeting space

Ends an active meeting space, disconnecting all participants.

Inputs:

- `name` (string, required) โ€” Space resource name e.g. `spaces/abc-defg-hij`

Output:

{}
update_meeting_space โ€” Update a Google Meet meeting space

Patches one or more fields of an existing meeting space using a field mask.

Inputs:

- `name` (string, required) โ€” Space resource name e.g. `spaces/abc-defg-hij`
- `update_mask` (string, required) โ€” Comma-separated field mask for the patch operation e.g. `config.accessType`
- `space` (string, required) โ€” JSON string containing the updated space fields e.g. `{"config": {"accessType": "TRUSTED"}}`

Output:

{
  "name": "spaces/abc-defg-hij",
  "meetingUri": "https://meet.google.com/abc-defg-hij",
  "config": { "accessType": "TRUSTED" }
}
get_conference_record โ€” Get a Google Meet conference record

Retrieves a single conference record by its resource name.

Inputs:

- `name` (string, required) โ€” Conference record resource name e.g. `conferenceRecords/abc123`

Output:

{
  "name": "conferenceRecords/abc123",
  "startTime": "2024-03-20T10:00:00.000Z",
  "endTime": "2024-03-20T11:00:00.000Z",
  "space": "spaces/abc-defg-hij"
}
list_conference_records โ€” List Google Meet conference records

Returns a paginated list of past conference records for the authenticated user.

Inputs:

- `page_size` (integer, optional) โ€” Maximum number of records per page
- `page_token` (string, optional) โ€” Pagination token from a previous response

Output:

{
  "conferenceRecords": [
    {
      "name": "conferenceRecords/abc123",
      "startTime": "2024-03-20T10:00:00.000Z",
      "endTime": "2024-03-20T11:00:00.000Z",
      "space": "spaces/abc-defg-hij"
    }
  ],
  "nextPageToken": "token123"
}
get_participant โ€” Get a participant from a conference record

Retrieves details of a single participant from a conference record.

Inputs:

- `name` (string, required) โ€” Participant resource name e.g. `conferenceRecords/abc123/participants/xyz`

Output:

{
  "name": "conferenceRecords/abc123/participants/xyz",
  "signedinUser": {
    "user": "users/123",
    "displayName": "Jane Doe"
  },
  "earliestStartTime": "2024-03-20T10:02:00.000Z",
  "latestEndTime": "2024-03-20T10:58:00.000Z"
}
list_participants โ€” List participants from a conference record

Returns a paginated list of participants for a given conference record.

Inputs:

- `parent` (string, required) โ€” Parent conference record resource name e.g. `conferenceRecords/abc123`
- `page_size` (integer, optional) โ€” Maximum number of participants per page
- `page_token` (string, optional) โ€” Pagination token from a previous response
- `filter` (string, optional) โ€” API filter expression e.g. `signedinUser.user='users/123'`

Output:

{
  "participants": [
    {
      "name": "conferenceRecords/abc123/participants/xyz",
      "signedinUser": { "displayName": "Jane Doe" }
    }
  ],
  "nextPageToken": "token123"
}
get_participant_session โ€” Get a participant session from a conference record

Retrieves a single participant session, representing one continuous join/leave interval.

Inputs:

- `name` (string, required) โ€” Participant session resource name e.g. `conferenceRecords/abc123/participants/xyz/participantSessions/session1`

Output:

{
  "name": "conferenceRecords/abc123/participants/xyz/participantSessions/session1",
  "startTime": "2024-03-20T10:02:00.000Z",
  "endTime": "2024-03-20T10:30:00.000Z"
}
list_participant_sessions โ€” List participant sessions of a participant

Returns a paginated list of all sessions for a given participant in a conference record.

Inputs:

- `parent` (string, required) โ€” Parent participant resource name e.g. `conferenceRecords/abc123/participants/xyz`
- `page_size` (integer, optional) โ€” Maximum number of sessions per page
- `page_token` (string, optional) โ€” Pagination token from a previous response
- `filter` (string, optional) โ€” API filter expression

Output:

{
  "participantSessions": [
    {
      "name": "conferenceRecords/abc123/participants/xyz/participantSessions/session1",
      "startTime": "2024-03-20T10:02:00.000Z",
      "endTime": "2024-03-20T10:30:00.000Z"
    }
  ],
  "nextPageToken": "token123"
}

API Parameters Reference

Common Parameters
  • name โ€” Full resource name identifying a Meet object. Always returned in API responses and used as the identifier for subsequent calls.
  • page_size โ€” Limits the number of items returned per page. If omitted, the API uses its default page size.
  • page_token โ€” Token from a previous paginated response. Pass it to retrieve the next page of results.
  • filter โ€” Standard API filter expression for narrowing list results.
Resource Name Formats

Meeting Space:

spaces/{spaceId}
Example: spaces/abc-defg-hij

Conference Record:

conferenceRecords/{recordId}
Example: conferenceRecords/abc123xyz

Participant:

conferenceRecords/{recordId}/participants/{participantId}
Example: conferenceRecords/abc123/participants/p456

Participant Session:

conferenceRecords/{recordId}/participants/{participantId}/participantSessions/{sessionId}
Example: conferenceRecords/abc123/participants/p456/participantSessions/s789