Zoho CRM MCP Server
Enables read-only interaction with Zoho CRM data through natural language queries, allowing users to search records, list modules, retrieve field information, and count records using secure OAuth authentication.
README
Zoho CRM Integration for Claude.ai
An integration that connects Claude.ai to Zoho CRM, enabling seamless interaction with your CRM data through natural language queries. Uses the Model Context Protocol (MCP). Uses Zoho Oauth for a secure connection.
This package is meant to be simple and easy to install. If you can install Docker Desktop, then this is a very simple integration to use!
Features
- Ready-Only: To keep your data clean, Claude will be Read-Only with respect to Zoho and cannot modify CRM records
- List Modules: Get all available CRM modules and their API names
- Field Information: Retrieve field details for any CRM module
- Search Records: Search across CRM records using natural language
- Get Records: Fetch a specific record from any module
- Count Records: Get a count of records in a module with a variety of filter options
- More in Development: more features coming 2025
Prerequisites
Before installing this MCP server, ensure you have the following installed on your system:
Required Software
- Docker or Docker Desktop
- Windows/Mac: Download and install Docker Desktop. This automatically installs the Docker Engine under the hood, and makes the Engine easy to use and monitor.
- Linux: Install Docker Engine following the official guide
- Verify installation:
docker --version
And that's it! The list of prerequisite software was kept as short as possible. The rest of the application will run inside of a Docker container. Now, you'll just need to setup Zoho Oauth credentials and configure Claude to connect to the MCP server.
Zoho CRM Setup
-
Admin Access for Zoho CRM Account
- Active Zoho CRM subscription
- Administrator access to create OAuth applications
-
Create Zoho OAuth ID and Secret
- Go to Zoho Developer Console
- Create a new "Server Application"
- Set redirect URI to:
http://localhost:3000/authRedirect - Note down your
Client IDandClient Secret
Quick Installation
Step 1: Pull the Docker Image
In the Docker Desktop app, visit the Docker Hub tab, and search whiteside1992daniel or whiteside1992daniel/zohocrm-mcpserver. Find the whiteside1992daniel/zohocrm-mcpserver image, be sure to select m3 for Apple Silicon or amd64 for Intel and then download the image with the blue "Pull" button.
Alternatively, you can download the image manually via the terminal:
AMD/Intel chips:
docker pull whiteside1992daniel/zohocrm-mcpserver:amd64
Apple Silicon/M-Series chips:
docker pull whiteside1992daniel/zohocrm-mcpserver:m3
Then visit the Images tab to verify you have downloaded the image.
Step 2: Configure Claude Desktop
Now you need to make a modification to your Claude config file to tell Claude how to connect to the MCP Server. This is relatively simple once you find the file.
-
Locate Claude Desktop Config File You can open Claude Desktop and go to Preferences -> Developer -> Edit Config. This should open the file
claude_desktop_config.js. -
Add MCP Server Configuration
Edit the
claude_desktop_config.jsonfile in a code or text editor and add the following configurations to enable the MCP server connection:{ "mcpServers": { "zohocrm-mcp-connector": { "command": "sh", "args": [ "-c", "docker run --rm -i --name zoho-mcp-server -p 3000:3000 -v zoho-mcp-data:/app/data -e ZOHO_CLIENT_ID -e ZOHO_CLIENT_SECRET -e SCOPES whiteside1992daniel/zohocrm-mcpserver:VERSION" ], "env": { "ZOHO_CLIENT_ID" : "YOURCLIENTID", "ZOHO_CLIENT_SECRET" : "YOURCLIENTSECRET", "SCOPES" : "ZohoCRM.settings.READ,ZohoCRM.modules.READ,ZohoSearch.securesearch.READ,ZohoCRM.settings.layouts.READ", "NODE_ENV": "production" } } } }This configuration is telling Claude to launch a docker container hosting the MCP server whenever the application starts.
Replace the placeholder values:
- ZOHO_CLIENT_ID :
YOURCLIENTID- Your actual Zoho Client ID - ZOHO_CLIENT_SECRET :
YOURCLIENTSECRET- Your actual Zoho Client Secret - whiteside1992daniel/zohocrm-mcpserver:
VERSION- Your version depending on your silicon [amd64 || m3]
- ZOHO_CLIENT_ID :
-
Restart Claude Desktop
- Close Claude Desktop completely
- Reopen Claude Desktop
- The MCP server will be automatically started when needed
- Try asking claude "is Zoho MCP is working?" or "help me authorize Zoho MCP Server"
Appendix - Available Tools
| Tool Name | Description | Parameters |
|---|---|---|
validate-zoho-oauth |
Check if Oauth Refresh Token exists | None |
setup-zoho-oauth |
Get Refresh Token | None |
list-zoho-modules |
List all CRM modules | None |
zoho-module-list-fields |
Get fields for a module | module_api_name |
simple-search-zoho-records |
Search records | module_api_name, search_string |
count-zoho-records |
Count Records with filters | 'module_api_name, filter_type, search_string` |
get-zoho-record |
Get record by ID | id, moduleApiName |
Usage Examples
In Claude Desktop
Show me all the modules in my Zoho CRM
What fields are available in the Contacts module?
Search for accounts containing "Microsoft"
Get the most recent Prospect located in Omaha, Nebraska
Appendix - Troubleshooting
Error Logging
Application logs can be found by going to Claude -> Preferences -> Developer. When there is an error there will be an option to open the error logs. Check the logs to see if the servers started and if Claude is able to communicate with them.
Common Issues
-
MCP Server Not Starting
# Check if Docker image exists docker images | grep zoho-mcp-server # Test the Docker image manually docker run --rm -it -p 3000:3000 \ -e ZOHO_CLIENT_ID=your_client_id \ -e ZOHO_CLIENT_SECRET=your_client_secret \ -e SCOPES=ZohoCRM.modules.ALL,ZohoCRM.settings.ALL \ zoho-mcp-server -
Authentication Fails
- Verify Client ID and Client Secret in the config file
- Ensure redirect URI matches:
http://localhost:3000/authRedirect - Check Zoho Developer Console settings
-
Port Already in Use
# Check what's using port 3000 lsof -i :3000 # Kill processes using the port if needed sudo kill -9 $(lsof -t -i:3000) -
Config File Issues
- Ensure the JSON syntax is valid
- Check that file path exists
- Verify environment variables are properly quoted
Debug Mode
-
Test Docker Image Manually
docker run --rm -it -p 3000:3000 \ -e ZOHO_CLIENT_ID=your_client_id \ -e ZOHO_CLIENT_SECRET=your_client_secret \ -e SCOPES=ZohoCRM.modules.ALL,ZohoCRM.settings.ALL \ zoho-mcp-server -
View Container Logs
# Find running container docker ps # View logs docker logs <container_id>
Appendix - Testing the Installation
-
Verify Docker Image
docker run --rm zoho-mcp-server node --version -
Test MCP Connection
- Open Claude Desktop
- Try the command: "List all Zoho CRM modules"
- If successful, you'll see module information
-
Test OAuth Flow
- Use the "authorize-zoho" tool
- Complete the authorization in your browser
- Try searching for records
Appendix - Commands
Manual Testing Node
Config for Claude.ai in manual dev mode
"zohocrm-mcp-connector": {
"command": "sh",
"args": [
"-c",
"node /Users/whiteside/Documents/GitHub/zohocrm-mcpserver/express.js & node /Users/whiteside/Documents/GitHub/zohocrm-mcpserver/index.js"
],
"env": {
"ZOHO_CLIENT_ID" : "1000.6ZAM3J05ETG46V9ZD1TNSJT7BTZ77A",
"ZOHO_CLIENT_SECRET" : "d09b76a006701550137cfa72240e804c21f2a69d96",
"SCOPES" : "ZohoCRM.settings.ALL,ZohoCRM.modules.ALL,ZohoSearch.securesearch.READ,ZohoCRM.settings.layouts.READ",
"NODE_ENV": "development"
}
}
License
This project is licensed under the ISC License.
Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Submit a pull request
Support
For issues and questions:
- Check the troubleshooting section above
- Review Zoho CRM API documentation
- Open an issue in the repository
- Email Daniel Whiteside
Note: This MCP server requires active network connectivity to communicate with Zoho CRM APIs. Ensure your firewall and network settings allow outbound HTTPS connections to Zoho APIs.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。