productivity
Google Meet MCP Gateway for AI Agents
Expose Google Meet tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.Google Meet MCP Gateway
Expose Google Meet to MCP clients with `kosmokrator mcp:serve --integration=google-meet`.
If the client has never used KosmoKrator before, install it first, then register this integration as a stdio MCP server.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash kosmokrator mcp:gateway:install --integration=google-meet --write=deny --json {
"mcpServers": {
"kosmokrator-google-meet": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=google-meet",
"--write=deny"
]
}
}
} kosmokrator mcp:serve --integration=google-meet --write=deny Client Notes
Use one scoped MCP gateway entry, then adapt the config location to the client or framework.
MCP Tool Names
KosmoKrator exposes integration tools through the gateway with stable names.
| MCP tool | Source function | Type |
|---|---|---|
integration__google_meet__google_meet_spaces_create | google-meet.google_meet_spaces_create | Write write |
integration__google_meet__google_meet_spaces_get | google-meet.google_meet_spaces_get | Read read |
integration__google_meet__google_meet_spaces_end_active_conference | google-meet.google_meet_spaces_end_active_conference | Write write |
integration__google_meet__google_meet_spaces_patch | google-meet.google_meet_spaces_patch | Write write |
integration__google_meet__google_meet_conference_records_list | google-meet.google_meet_conference_records_list | Read read |
integration__google_meet__google_meet_conference_records_get | google-meet.google_meet_conference_records_get | Read read |
integration__google_meet__google_meet_conference_records_recordings_list | google-meet.google_meet_conference_records_recordings_list | Read read |
integration__google_meet__google_meet_conference_records_recordings_get | google-meet.google_meet_conference_records_recordings_get | Read read |
integration__google_meet__google_meet_conference_records_participants_get | google-meet.google_meet_conference_records_participants_get | Read read |
integration__google_meet__google_meet_conference_records_participants_list | google-meet.google_meet_conference_records_participants_list | Read read |
integration__google_meet__google_meet_conference_records_participants_participant_sessions_list | google-meet.google_meet_conference_records_participants_participant_sessions_list | Read read |
integration__google_meet__google_meet_conference_records_participants_participant_sessions_get | google-meet.google_meet_conference_records_participants_participant_sessions_get | Read read |
integration__google_meet__google_meet_conference_records_transcripts_list | google-meet.google_meet_conference_records_transcripts_list | Read read |
integration__google_meet__google_meet_conference_records_transcripts_get | google-meet.google_meet_conference_records_transcripts_get | Read read |
integration__google_meet__google_meet_conference_records_transcripts_entries_get | google-meet.google_meet_conference_records_transcripts_entries_get | Read read |
integration__google_meet__google_meet_conference_records_transcripts_entries_list | google-meet.google_meet_conference_records_transcripts_entries_list | Read read |
integration__google_meet__google_meet_conference_records_smart_notes_get | google-meet.google_meet_conference_records_smart_notes_get | Read read |
integration__google_meet__google_meet_conference_records_smart_notes_list | google-meet.google_meet_conference_records_smart_notes_list | Read read |
Write Access
Start with --write=deny for read-only MCP clients. Use --write=ask or
--write=allow only when the client and workspace are trusted.