Aerostack
electrical_services

Zoho MCP Server — Hosted Api Connectors, Any AI Agent

MCP Server language Hosted language Public

Manage business accounting with Zoho Books — contacts, invoices, bills, expenses, payments, and financial reports from AI.

aerostack @aerostack verified
v0.1.0 MIT Updated Jun 28, 2026
robot_2

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.

.claude/mcp.json
{
  "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:

+14 more

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.

add_circleAdd to Workspace

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
  1. Go to aerostack.dev → Your Project → MCPs
  2. Search for "Zoho Books" and click Add to Workspace

Add the following secrets under Project → Secrets:

  • ZOHO_BOOKS_ACCESS_TOKEN
  • ZOHO_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.

terminal
list_contacts #1

List contacts (customers and vendors)

terminal
create_contact #2

Create a new contact

terminal
get_contact #3

Get a contact by ID

terminal
list_invoices #4

List invoices with optional filters

terminal
create_invoice #5

Create a new invoice

terminal
get_invoice #6

Get an invoice by ID

terminal
email_invoice #7

Send an invoice via email

terminal
list_bills #8

List vendor bills

terminal
create_bill #9

Create a vendor bill

terminal
list_estimates #10

List estimates/quotes

terminal
create_estimate #11

Create an estimate/quote

terminal
list_expenses #12

List expenses

terminal
create_expense #13

Create an expense

terminal
list_items #14

List products and services

terminal
create_item #15

Create a new product or service

terminal
list_payments #16

List customer payments

terminal
create_payment #17

Record a customer payment

terminal
get_balance_sheet #18

Get the balance sheet report

terminal
get_profit_loss #19

Get profit and loss report

terminal
get_organization #20

Get organization details

Details

upgrade Version 0.1.0
gavel License MIT
wifi Transport streamable-http
lock Access Public
category Category API Connectors
terminal Tools 20

language Live Endpoint

https://mcp.aerostack.dev/s/aerostack/mcp-zoho-books

Sub-50ms globally · Zero cold start

Publisher

aerostack
@aerostack verified

Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.

Tags

Browse more servers

More in API Connectors

Browse API Connectors MCPs →

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.