communication
Google Chat MCP Integration for Codex
Connect Google Chat to Codex through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Google Chat to Codex
Use KosmoKrator as a local MCP proxy for Codex so coding sessions can reach selected integrations with explicit write policy.
Register kosmo mcp:serve as a local stdio server and choose the integration allowlist. The gateway is local, scoped to this integration, and starts with
--write=deny so Codex can inspect read-capable tools without receiving write access by default.
Google Chat MCP Config for Codex
Keep write access denied or ask-based unless the workspace is trusted.
{
"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 Codex
Codex 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. |