accounting
Zoho Books MCP Gateway for AI Agents
Expose Zoho Books tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.
12 functions 7 read 5 write Manual OAuth token auth
Zoho Books MCP Gateway
Expose Zoho Books to MCP clients with `kosmokrator mcp:serve --integration=zoho_books`.
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_books --write=deny --json {
"mcpServers": {
"kosmokrator-zoho_books": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=zoho_books",
"--write=deny"
]
}
}
} Serve Manually
kosmokrator mcp:serve --integration=zoho_books --write=deny MCP Tool Names
KosmoKrator exposes integration tools through the gateway with stable names:
MCP Tool Names (12 tools)
| MCP tool | Source function | Type |
|---|---|---|
integration__zoho_books__zohobooks_list_invoices | zoho_books.zohobooks_list_invoices | Read read |
integration__zoho_books__zohobooks_get_invoice | zoho_books.zohobooks_get_invoice | Read read |
integration__zoho_books__zohobooks_create_invoice | zoho_books.zohobooks_create_invoice | Write write |
integration__zoho_books__zohobooks_update_invoice | zoho_books.zohobooks_update_invoice | Write write |
integration__zoho_books__zohobooks_list_contacts | zoho_books.zohobooks_list_contacts | Read read |
integration__zoho_books__zohobooks_get_contact | zoho_books.zohobooks_get_contact | Read read |
integration__zoho_books__zohobooks_create_contact | zoho_books.zohobooks_create_contact | Write write |
integration__zoho_books__zohobooks_list_items | zoho_books.zohobooks_list_items | Read read |
integration__zoho_books__zohobooks_create_item | zoho_books.zohobooks_create_item | Write write |
integration__zoho_books__zohobooks_list_estimates | zoho_books.zohobooks_list_estimates | Read read |
integration__zoho_books__zohobooks_create_estimate | zoho_books.zohobooks_create_estimate | Write write |
integration__zoho_books__zohobooks_get_current_user | zoho_books.zohobooks_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.