communication
Google Chat MCP Integration for Cursor
Connect Google Chat to Cursor through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Google Chat to Cursor
Expose selected local integrations to Cursor through KosmoKrator without configuring each service as its own MCP server.
Create or update .cursor/mcp.json with a KosmoKrator stdio server entry. The gateway is local, scoped to this integration, and starts with
--write=deny so Cursor can inspect read-capable tools without receiving write access by default.
Google Chat MCP Config for Cursor
Use the same KosmoKrator install and integration credentials that power terminal and headless runs.
{
"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 Cursor
Cursor 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. |