communication
Google Chat MCP Integration for Claude Code
Connect Google Chat to Claude Code through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Google Chat to Claude Code
Connect local KosmoKrator integrations to Claude Code through one scoped MCP gateway entry.
Add KosmoKrator as a stdio MCP server in the Claude Code project config and select the integrations that should be visible. The gateway is local, scoped to this integration, and starts with
--write=deny so Claude Code can inspect read-capable tools without receiving write access by default.
Google Chat MCP Config for Claude Code
Claude Code can launch the local kosmo binary directly from the project MCP config.
{
"mcpServers": {
"kosmokrator-google-chat": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=google-chat",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=google-chat --write=deny Why Use KosmoKrator Here
Expose only Google Chat instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Google Chat Tools Visible to Claude Code
Claude Code sees stable MCP tool names generated from the Google Chat integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__google_chat__google_chat_list_spaces | google-chat.google_chat_list_spaces | Read | List Google Chat spaces the authenticated user belongs to. Returns space names, display names, and types. Supports pagination with pageSize and pageToken. |
integration__google_chat__google_chat_get_space | google-chat.google_chat_get_space | Read | Get details about a specific Google Chat space. Returns the space name, display name, type, and other metadata. |
integration__google_chat__google_chat_list_messages | google-chat.google_chat_list_messages | Read | List messages in a Google Chat space. Returns message text, sender info, and creation timestamps. Supports pagination with pageSize and pageToken. |
integration__google_chat__google_chat_get_message | google-chat.google_chat_get_message | Read | Get a specific message from a Google Chat space. Returns the full message including text, cards, sender, and annotations. |
integration__google_chat__google_chat_create_message | google-chat.google_chat_create_message | Write | Send a message to a Google Chat space. Supports plain text and card-based rich messages (cardsV2). Either text or cardsV2 must be provided. |
integration__google_chat__google_chat_list_memberships | google-chat.google_chat_list_memberships | Read | List members (human users and bots) in a Google Chat space. Returns member names, display names, and roles. Supports pagination with pageSize and pageToken. |
integration__google_chat__google_chat_get_current_user | google-chat.google_chat_get_current_user | Read | Get the authenticated user's membership details in a Google Chat space. Returns the user's display name, role, and membership state. |