productivity
Zoho Sheet MCP Gateway for AI Agents
Expose Zoho Sheet tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.
7 functions 6 read 1 write Manual OAuth token auth
Zoho Sheet MCP Gateway
Expose Zoho Sheet to MCP clients with `kosmokrator mcp:serve --integration=zoho_sheet`.
If the client has never used KosmoKrator before, install it first, then register this integration as a stdio MCP server. The gateway exposes only the selected integration in the example below.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash kosmokrator mcp:gateway:install --integration=zoho_sheet --write=deny --json {
"mcpServers": {
"kosmokrator-zoho_sheet": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=zoho_sheet",
"--write=deny"
]
}
}
} Serve Manually
kosmokrator mcp:serve --integration=zoho_sheet --write=deny MCP Tool Names
KosmoKrator exposes integration tools through the gateway with stable names:
| MCP tool | Source function | Type |
|---|---|---|
integration__zoho_sheet__zoho_sheet_list_spreadsheets | zoho_sheet.zoho_sheet_list_spreadsheets | Read read |
integration__zoho_sheet__zoho_sheet_get_spreadsheet | zoho_sheet.zoho_sheet_get_spreadsheet | Read read |
integration__zoho_sheet__zoho_sheet_list_worksheets | zoho_sheet.zoho_sheet_list_worksheets | Read read |
integration__zoho_sheet__zoho_sheet_get_worksheet | zoho_sheet.zoho_sheet_get_worksheet | Read read |
integration__zoho_sheet__zoho_sheet_list_rows | zoho_sheet.zoho_sheet_list_rows | Read read |
integration__zoho_sheet__zoho_sheet_create_row | zoho_sheet.zoho_sheet_create_row | Write write |
integration__zoho_sheet__zoho_sheet_get_current_user | zoho_sheet.zoho_sheet_get_current_user | 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.