Skip to main content
Glama
NitinSharma077-echo

Zoho CRM MCP Server

Zoho CRM MCP Server (FastAPI + FastMCP)

A production-grade Model Context Protocol (MCP) server built with FastAPI + FastMCP that provides Claude Desktop and AI clients with complete, authenticated access to the Zoho CRM REST API v8.


๐ŸŒŸ Key Features

  • FastAPI Web Framework: High-performance, production-ready web application powered by Uvicorn and FastAPI.

  • Dual Transport Support: Runs seamlessly both as a Web/HTTP/SSE MCP Server (for remote deployment & cloud hosting) and as a STDIO MCP Server (for local Claude Desktop).

  • Full OAuth 2.0 Lifecycle: Automatic code exchange, browser redirect handler (/auth/callback), token storage, and automatic token refresh.

  • Chat-Configurable Credentials: Supply a Zoho Client ID/Secret directly from chat (set_zoho_credentials, or inline on get_auth_url/exchange_auth_code) instead of .env - useful when switching between different Zoho accounts/API console apps without restarting the server.

  • Scoped Session Mode: ID-based safety filter (activate_scope) that restricts operations exclusively to specific record IDs to prevent accidental modifications.

  • Interactive OpenAPI Documentation: Built-in Swagger UI accessible at /docs.

  • Resilient Network Client: Built with httpx featuring automatic 401 token refresh retry, HTTP 429 rate limit backoff, and exponential retry for 5xx errors.

  • Automated Test Suite: Complete test suite using pytest and FastAPI TestClient.


Related MCP server: Zoho CRM MCP Server

๐Ÿ“ Repository Structure

zoho-crm-mcp/
โ”œโ”€โ”€ server.py              # FastAPI application + FastMCP tool definitions & endpoints
โ”œโ”€โ”€ auth_manager.py        # OAuth 2.0 flow & token refresh manager
โ”œโ”€โ”€ zoho_client.py         # Async HTTP client wrapper for Zoho CRM API v8
โ”œโ”€โ”€ models.py              # Pydantic state & validation models
โ”œโ”€โ”€ token_store.py         # File-based JSON token persistence (~/.zoho_crm_tokens.json)
โ”œโ”€โ”€ test_server.py         # Automated pytest test suite
โ”œโ”€โ”€ requirements.txt       # Project dependencies
โ”œโ”€โ”€ .env.example           # Environment configuration template
โ”œโ”€โ”€ pyproject.toml         # Package metadata
โ””โ”€โ”€ README.md              # Server documentation

โš™๏ธ Setup & Installation

1. Prerequisites

  • Python 3.10+

  • A Zoho CRM Developer Account / API Console App (Zoho API Console)

    • Client Type: Server-based Applications

    • Redirect URI: http://localhost:8000/auth/callback (or your production deployment callback URL)

2. Environment Setup

Copy .env.example to .env:

cp .env.example .env

Configure .env with your Zoho API application credentials:

ZOHO_CLIENT_ID=1000.xxxxxxx
ZOHO_CLIENT_SECRET=xxxxxxx
ZOHO_REDIRECT_URI=http://localhost:8000/auth/callback
ZOHO_DATA_CENTER=com
HOST=0.0.0.0
PORT=8000

Working with more than one Zoho account? ZOHO_CLIENT_ID/ZOHO_CLIENT_SECRET are optional. You can leave them blank in .env and instead ask Claude to call set_zoho_credentials(client_id, client_secret, redirect_uri?, data_center?), or pass client_id/client_secret directly to get_auth_url / exchange_auth_code. This configures the running server for that session without restarting it or editing files. Switching to a different client_id automatically clears any tokens saved for the previous account, which avoids Zoho's invalid_client error caused by reusing a refresh token issued to a different API console app.

3. Install Dependencies

Using pip:

pip install -r requirements.txt

๐Ÿš€ Running & Deploying the Server

Option A: Local Development / FastAPI Web Server

To start the FastAPI web server with Uvicorn auto-reload:

python server.py

Or directly with Uvicorn:

uvicorn server:app --host 0.0.0.0 --port 8000 --reload

Once running, access:

Option B: Cloud Production Deployment (Render, Railway, Docker, AWS, Heroku)

Deploy using standard ASGI entrypoint server:app:

  • Start Command: uvicorn server:app --host 0.0.0.0 --port $PORT

  • Health Check Path: /health

  • Environment Variables: Set ZOHO_CLIENT_ID, ZOHO_CLIENT_SECRET, ZOHO_REDIRECT_URI, ZOHO_DATA_CENTER in your hosting dashboard.


๐Ÿงช How to Test the Server

1. Run Automated Test Suite (pytest)

Execute all unit and integration tests using pytest:

pytest -v

This runs tests verifying:

  • Health check endpoint (/health)

  • Root landing page dashboard (/)

  • OAuth URL generation (/auth/url)

  • OAuth callback handler (/auth/callback)

  • Scoped mode state lifecycle (/scope, /scope/activate, /scope/deactivate)

  • Registration of all 30+ FastMCP tools.

2. Test via Interactive Swagger UI

  1. Open http://localhost:8000/docs in your browser.

  2. Test /health to verify server status.

  3. Test /auth/url to receive your OAuth authorization URL.

  4. Test /scope endpoints to manage scoped record access.

3. Test OAuth Login Flow in Browser

  1. Start server: python server.py

  2. Open http://localhost:8000/auth/url in browser or ask Claude to run get_auth_url().

  3. Open the returned URL, sign in to Zoho CRM, and click Accept.

  4. Zoho will redirect to http://localhost:8000/auth/callback?code=....

  5. The FastAPI server will automatically exchange the code, save tokens to ~/.zoho_crm_tokens.json, and render a success confirmation page.


๐Ÿ–ฅ๏ธ Claude Desktop Integration

Mode 1: HTTP / Remote MCP Connection

In claude_desktop_config.json:

{
  "mcpServers": {
    "zoho-crm": {
      "url": "http://localhost:8000/mcp/mcp"
    }
  }
}

Mode 2: Local STDIO Connection

In claude_desktop_config.json:

{
  "mcpServers": {
    "zoho-crm": {
      "command": "python",
      "args": ["C:/Users/Lenovo/Desktop/zoho MCP/server.py", "--stdio"],
      "env": {
        "ZOHO_CLIENT_ID": "1000.YOUR_CLIENT_ID",
        "ZOHO_CLIENT_SECRET": "YOUR_CLIENT_SECRET",
        "ZOHO_REDIRECT_URI": "http://localhost:8000/auth/callback",
        "ZOHO_DATA_CENTER": "com"
      }
    }
  }
}

๐ŸŽฏ Scoped Session Mode (Safety Filter)

Restrict operations exclusively to specific record IDs to prevent unintended modifications:

  • Activate: activate_scope(module="Deals", record_ids=["415340000000123001", "415340000000123002"])

  • REST Activation: POST http://localhost:8000/scope/activate with JSON {"module": "Leads", "record_ids": ["123", "456"]}

  • Deactivate: deactivate_scope() or POST http://localhost:8000/scope/deactivate


๐Ÿ› ๏ธ Complete MCP Tool Reference

Category

Tools Included

OAuth & Auth

get_auth_url, exchange_auth_code, set_zoho_credentials, get_auth_status

Scoped Mode

activate_scope, deactivate_scope, get_scope_status

Record CRUD

create_record, get_record, update_record, delete_record, list_records, search_records, upsert_record

COQL Engine

execute_coql

Metadata & Discovery

get_modules, get_fields, get_layouts, get_related_lists, get_users, get_organizations

Settings API

create_module, update_module, create_field, update_field, delete_field, get_custom_views

Workflows

create_workflow, get_workflows, update_workflow, activate_workflow, deactivate_workflow, delete_workflow

Bulk Operations

bulk_create_records, bulk_update_records, bulk_delete_records

Attachments & Notes

upload_attachment, get_attachments, download_attachment, create_note, get_notes, create_call

Record Actions & Tags

convert_lead, add_tags, remove_tags, get_blueprints, execute_blueprint

F
license - not found
-
quality - not tested
B
maintenance

Maintenance

โ€“Maintainers
โ€“Response time
โ€“Release cycle
โ€“Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    B
    quality
    D
    maintenance
    Exposes Zoho CRM v6 REST API as structured tools for LLM agents via MCP, enabling CRUD operations, search, COQL queries, and more.
    11
    3
  • A
    license
    -
    quality
    D
    maintenance
    Enables AI assistants to interact with Zoho CRM data through secure OAuth authentication, supporting comprehensive CRM operations including record management, search, bulk operations, and lead conversion.
    1
    MIT

View all related MCP servers

Related MCP Connectors

  • WHOOP recovery, strain, sleep and workouts in Claude via official WHOOP OAuth. Free, open source.

  • Zoho CRM MCP Pack โ€” wraps the Zoho CRM API v6

  • Connect Claude to Fathom meeting recordings, transcripts, and summaries

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/NitinSharma077-echo/zoho-crm-MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server