# Does Zoho have an MCP server?

**Yes — Official.** Zoho maintains an official MCP server.

> Zoho MCP is a platform: it generates per-user server endpoints across CRM, Mail, Desk, Cliq and 500+ integrations rather than one public URL.

## Facts

- Verdict: Official (Yes)
- Access: Built into the product — Ships inside the vendor's own app or CLI rather than as a standalone download.
- Endpoint: `Zoho MCP platform — per-user generated endpoints`
- Repository: [zoho/analytics-mcp-server](https://github.com/zoho/analytics-mcp-server) — ★ 9, last push 2026-08-04, MIT
- Maintainer: Zoho
- Language: Python
- Category: [Workplace & Productivity](https://mcpyet.com/category/workplace-productivity/)
- Verified against vendor docs: 2026-08-10
- GitHub data refreshed: 2026-08-11 (re-checked every 6 hours)

## The receipts

- **In-product:** Zoho MCP platform — per-user generated endpoints — ships inside Zoho's own product rather than as a standalone server. Documented at <https://www.zoho.com/mcp/>.
- **Official repository:** [zoho/analytics-mcp-server](https://github.com/zoho/analytics-mcp-server) — ★ 9, pushed 2026-08-04, MIT (active)

## How to connect it

Ships inside the vendor's own app or CLI rather than as a standalone download.

### Claude Code

```sh
claude mcp add zoho -- npx -y <package-from-readme>
```

Swap in the exact package and flags from the repo README — most servers need an API key passed as an environment variable. Add `--scope user` to make it available in every project.

### Claude Desktop

Open **Settings → Developer → Edit Config** and add the server to `claude_desktop_config.json`, then restart Claude Desktop:

```json
{
  "mcpServers": {
    "zoho": {
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ],
      "env": {
        "API_KEY": "…"
      }
    }
  }
}
```

### Cursor

Add to `.cursor/mcp.json` in your project, or `~/.cursor/mcp.json` for every project:

```json
{
  "mcpServers": {
    "zoho": {
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ],
      "env": {
        "API_KEY": "…"
      }
    }
  }
}
```

### VS Code

Add to `.vscode/mcp.json`, then pick the server from Copilot's agent-mode tools menu:

```json
{
  "servers": {
    "zoho": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ]
    }
  }
}
```

### ChatGPT

ChatGPT connects to **remote servers only**, and this one runs on your machine. Either expose it through an MCP gateway that gives it a public URL, or use a client with native local support (Claude or Cursor).

## How we know

Official Zoho MCP platform at zoho.com/mcp plus the zoho/analytics-mcp-server repo in Zoho's GitHub org.

- GitHub data refreshed 2026-08-11, then every 6 hours.
- Vendor docs verified on 2026-08-10.
- Corrections: hello@mcpyet.com.

## Also in Workplace & Productivity

- [Atlassian](https://mcpyet.com/mcp/atlassian.md) — Official (Yes)
- [Google Drive](https://mcpyet.com/mcp/google-drive.md) — Official (Yes)
- [Confluence](https://mcpyet.com/mcp/confluence.md) — Official (Yes)
- [ServiceNow](https://mcpyet.com/mcp/servicenow.md) — Official (Yes)
- [Excalidraw](https://mcpyet.com/mcp/excalidraw.md) — Official (Yes)
- [Google Sheets](https://mcpyet.com/mcp/google-sheets.md) — Official (Yes)

---

Source: https://mcpyet.com/mcp/zoho/ — data refreshed 2026-08-11
