Create and manage Google Meet spaces, schedule meetings via Google Calendar, list participants, access recordings and transcripts.
Use with AI AssistantsMCP
Connect Claude, Cursor, or any MCP-compatible client — then call tools directly
① Add This MCP Server
Paste into your AI client config — then all its tools are available instantly.
{
"mcpServers": {
"google-meet": {
"url": "https://mcp.aerostack.dev/s/aerostack/mcp-google-meet",
"headers": {
"Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
}
}
}
}Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.
② Call a Tool
Ask your AI assistant to call a specific tool, or send raw JSON-RPC:
Natural Language Prompt
“Use the create_space tool to create a new google meet space. returns the meetinguri, meetingcode, and space name for sharing”
Using a Workspace?
Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.
Create Google Meet spaces, schedule calendar meetings with Meet links, manage participants, recordings, and transcripts from any AI agent.
Google Meet is Google's enterprise video conferencing platform, deeply integrated with Google Calendar and Google Workspace. This MCP server gives your agents complete access to the Google Meet REST API and Google Calendar API: creating instant or scheduled meetings, managing spaces and conferences, listing participants, retrieving recordings and transcripts, and full calendar event CRUD.
Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-google-meet
| Tool | Description |
|---|---|
| create_space | Create a new Google Meet space — returns meetingUri and meetingCode |
| get_space | Get Meet space details by resource name or meeting code |
| end_active_conference | End an active conference, disconnecting all participants |
| list_conferences | List past conferences in a Meet space |
| get_conference | Get conference details including start/end time |
| list_participants | List participants in a conference session |
| get_participant | Get participant details: display name, join/leave time |
| list_recordings | List recordings for a conference |
| get_recording | Get a recording with download URI and timestamps |
| create_meeting_event | Create a Calendar event with a Google Meet link |
| get_event | Get a Calendar event including the Meet link |
| list_upcoming_meetings | List upcoming Calendar events with Meet links |
| update_meeting_event | Update a Calendar event (title, time, attendees) |
| delete_meeting_event | Delete a meeting from Calendar with cancellation notifications |
| list_transcripts | List transcripts for a conference |
| get_transcript | Get a transcript with speaker turns and timestamps |
| _ping | Verify credentials by fetching primary calendar info |
| Variable | Required | Description | How to Get |
|---|---|---|---|
| GOOGLE_ACCESS_TOKEN | Yes | Google OAuth 2.0 access token with Meet and Calendar scopes | Google OAuth Playground or your Google Workspace OAuth app |
Your access token must include these scopes:
https://www.googleapis.com/auth/calendar — Create and manage calendar eventshttps://www.googleapis.com/auth/calendar.events — Read/write calendar eventshttps://www.googleapis.com/auth/meetings.space.created — Manage created Meet spaceshttps://www.googleapis.com/auth/meetings.space.readonly — Read Meet space dataGOOGLE_ACCESS_TOKEN under Project → SecretsOnce added, every AI agent in your workspace can create and manage Google Meet sessions automatically.
"Create a Google Meet space for our team standup and share the link"
"Schedule a 1-hour product review on April 5th at 2pm EST with alice@example.com and bob@example.com"
"List all participants from yesterday's all-hands meeting"
"Get the transcript from our latest product demo call"
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-google-meet \
-H 'Content-Type: application/json' \
-H 'X-Mcp-Secret-GOOGLE-ACCESS-TOKEN: your-access-token' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"create_meeting_event","arguments":{"summary":"Team Sync","start":"2026-04-01T14:00:00Z","end":"2026-04-01T15:00:00Z","attendees":["alice@example.com"]}}}'
MIT
Live Endpoint
https://mcp.aerostack.dev/s/aerostack/mcp-google-meet
Sub-50ms globally · Zero cold start
@aerostack
Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.
by @aerostack
Search, index, and manage documents in your Elasticsearch cluster — AI-native full-text search and analytics.
by @aerostack
Scrape web pages, crawl entire sites, extract structured data, and search the web — AI-native web data extraction for RAG pipelines.
by @aerostack
Manage Google Ads campaigns, ad groups, keywords, and budgets — automate your PPC advertising with AI.
by @aerostack
Read, write, and format Google Sheets data — use your spreadsheets as a live AI-accessible data source.
by @aerostack
Manage CMS collections, publish content, and control site deployments in Webflow — AI-powered web publishing.
by @aerostack
Create, read, edit, and format Google Docs — paragraph styling, tables, images, comments, and real-time collaboration via Google Docs API.
Yes. The Google Meet MCP includes a create_space tool that lets Claude create spaces in your Google Meet account from a plain-English prompt. You can also update and delete spaces — no Google Meet UI needed.
Yes. The Google Meet MCP includes tools to list and retrieve conferences from your Google Meet account. Claude can filter, sort, and summarize conferences based on your instructions.
Yes. The Google Meet MCP uses the open Model Context Protocol standard, so it works in Claude, Cursor, Windsurf, and any other MCP-compatible AI tool. All 16 Google Meet tools are available everywhere you connect it — install once on Aerostack.
Yes. The Google Meet MCP includes tools to update meeting events in your Google Meet account. Tell Claude what to change in plain English — it reads the current state and applies the update via the Google Meet API.