Zoho MCP Server — Hosted Api Connectors, Any AI Agent
MCP Server language Hosted language PublicManage business accounting with Zoho Books — contacts, invoices, bills, expenses, payments, and financial reports from AI.
Use with AI AssistantsMCP
Connect Claude, Cursor, or any MCP-compatible client — then call tools directly
① Add This MCP Server
Paste into your AI client config — then all its tools are available instantly.
{
"mcpServers": {
"zoho-books": {
"url": "https://mcp.aerostack.dev/s/aerostack/mcp-zoho-books",
"headers": {
"Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
}
}
}
}Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.
② Call a Tool
Ask your AI assistant to call a specific tool, or send raw JSON-RPC:
Natural Language Prompt
“Use the list_contacts tool to list contacts (customers and vendors)”
Using a Workspace?
Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.
description Overview
mcp-zoho-books — Zoho Books MCP Server
Manage business accounting with Zoho Books — contacts, invoices, bills, expenses, payments, and financial reports from AI.
Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-zoho-books
What You Can Do
This MCP server gives AI agents access to Zoho Books via 20 tools. Connect it to any Aerostack workspace and your agents can interact with Zoho Books directly.
Available Tools
| Tool | Description |
|---|---|
list_contacts |
List contacts (customers and vendors) |
create_contact |
Create a new contact |
get_contact |
Get a contact by ID |
list_invoices |
List invoices with optional filters |
create_invoice |
Create a new invoice |
get_invoice |
Get an invoice by ID |
email_invoice |
Send an invoice via email |
list_bills |
List vendor bills |
create_bill |
Create a vendor bill |
list_estimates |
List estimates/quotes |
create_estimate |
Create an estimate/quote |
list_expenses |
List expenses |
create_expense |
Create an expense |
list_items |
List products and services |
create_item |
Create a new product or service |
list_payments |
List customer payments |
create_payment |
Record a customer payment |
get_balance_sheet |
Get the balance sheet report |
get_profit_loss |
Get profit and loss report |
get_organization |
Get organization details |
Configuration
| Variable | Required | Description |
|---|---|---|
ZOHO_BOOKS_ACCESS_TOKEN |
Yes | Personal access token or service token from the provider |
ZOHO_BOOKS_ORGANIZATION_ID |
Yes | See provider documentation |
Quick Start
Add to Aerostack Workspace
- Go to aerostack.dev → Your Project → MCPs
- Search for "Zoho Books" and click Add to Workspace
Add the following secrets under Project → Secrets:
ZOHO_BOOKS_ACCESS_TOKENZOHO_BOOKS_ORGANIZATION_ID
Once added, every AI agent in your workspace can use Zoho Books tools automatically.
Direct API Call
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-zoho-books \
-H 'Content-Type: application/json' \
-H 'X-Mcp-Secret-ZOHO-BOOKS-ACCESS-TOKEN: your-zoho-books-access-token' \
-H 'X-Mcp-Secret-ZOHO-BOOKS-ORGANIZATION-ID: your-zoho-books-organization-id' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_contacts","arguments":{}}}'
License
MIT
terminal Tools (20)
Available tools on this MCP server. Each tool can be called directly from any AI agent.
list_contacts #1 List contacts (customers and vendors)
create_contact #2 Create a new contact
get_contact #3 Get a contact by ID
list_invoices #4 List invoices with optional filters
create_invoice #5 Create a new invoice
get_invoice #6 Get an invoice by ID
email_invoice #7 Send an invoice via email
list_bills #8 List vendor bills
create_bill #9 Create a vendor bill
list_estimates #10 List estimates/quotes
create_estimate #11 Create an estimate/quote
list_expenses #12 List expenses
create_expense #13 Create an expense
list_items #14 List products and services
create_item #15 Create a new product or service
list_payments #16 List customer payments
create_payment #17 Record a customer payment
get_balance_sheet #18 Get the balance sheet report
get_profit_loss #19 Get profit and loss report
get_organization #20 Get organization details
Details
language Live Endpoint
https://mcp.aerostack.dev/s/aerostack/mcp-zoho-books
Sub-50ms globally · Zero cold start
Publisher
Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.
More in API Connectors
Browse API Connectors MCPs →Aerostack Registry
by @aerostack
Discover and invoke any MCP, Function, or Skill published to the Aerostack marketplace — the universal AI capability hub.
Algolia
by @aerostack
Search indexes, manage records, browse data, and configure ranking in Algolia — AI-native instant search access.
Arangodb
by @aerostack
Query documents, run AQL, traverse graphs, and manage collections in your ArangoDB database — AI-native multi-model database access.
Ayrshare
by @aerostack
Post, schedule, and analyze social media across 13 platforms — Facebook, Instagram, X, LinkedIn, TikTok, Bluesky, Threads, Reddit, Pinterest, YouTube, Telegram, Snapchat, Google Business.
Basecamp
by @aerostack
Manage projects, to-dos, messages, schedules, and campfire chats in Basecamp — AI-native project management.
Bigquery
by @aerostack
Run SQL queries, list datasets and tables, inspect schemas, and export results from Google BigQuery — AI-native data warehouse access.
Frequently asked questions
What is the Zoho MCP server and what can it do? +
The Zoho MCP server is hosted on Aerostack and exposes these tools to your AI agent: `list_contacts`, `create_contact`, `get_contact`, `list_invoices`, `create_invoice`. You get one hosted URL — no self-hosting — that works from Claude, Cursor, ChatGPT, Gemini, VS Code, or any MCP-compatible client, and you can share it with your team or combine it with other MCP servers in a workspace.
Is the Zoho MCP server hosted, or do I have to run it myself? +
It's hosted on Aerostack's edge infrastructure — you don't deploy or maintain anything. Add it to a workspace and you get one authenticated URL, with secrets encrypted, that any AI agent or editor can connect to. Use it solo or share the same URL across your whole team.
Which AI agents and editors can use the Zoho MCP server? +
Any MCP client: Claude and Claude Code, Cursor, ChatGPT, Gemini, Windsurf, Cline, VS Code, and custom agents. Because it's one hosted URL, the same Zoho MCP server works everywhere — and you can compose it with other MCP servers, skills, and functions behind a single workspace URL.
How do I install the Zoho MCP server in Claude Desktop? +
Add the following to your Claude Desktop config (`claude_desktop_config.json`): ```json { "mcpServers": { "@aerostack/mcp-zoho-books": { "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-zoho-books"] } } } ``` Then restart Claude Desktop and the tools will appear automatically.
How do I use the Zoho MCP server in Cursor? +
In Cursor, open **Settings → MCP** and add: ```json { "name": "@aerostack/mcp-zoho-books", "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-zoho-books"] } ``` Save and reload Cursor. The MCP tools will be available in Agent mode.
Does Zoho MCP require authentication? +
Yes. Zoho requires authentication. Check the MCP's documentation for the required credentials.