MCP server for Zoho CRM API integration
Valid MCP server (3 strong, 1 medium validity signals). 3 known CVEs in dependencies (0 critical, 3 high severity) Imported from the Official MCP Registry. 1 finding(s) downgraded by scanner intelligence.
14 files analyzed ยท 4 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: ZOHO_CRM_API_KEY
Environment variable: ZOHO_CRM_API_URL
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-asklokesh-zoho-crm-mcp-server": {
"env": {
"ZOHO_CRM_API_KEY": "your-zoho-crm-api-key-here",
"ZOHO_CRM_API_URL": "your-zoho-crm-api-url-here"
},
"args": [
"zoho-crm-mcp-server"
],
"command": "uvx"
}
}
}From the project's GitHub README.
A Model Context Protocol (MCP) server for integrating Zoho CRM with GenAI applications.
This MCP server provides seamless integration with Zoho CRM, enabling AI assistants and applications to interact with your CRM data through a standardized interface.
The server exposes the following MCP tools:
pip install zoho-crm-mcp-server
git clone https://github.com/asklokesh/zoho-crm-mcp-server.git
cd zoho-crm-mcp-server
pip install -e .
pip install -e ".[dev]"
ZohoCRM.modules.ALLZohoCRM.settings.ALLCopy the example configuration:
cp .env.example .env
Edit .env with your credentials:
ZOHO_CLIENT_ID=your_client_id_here
ZOHO_CLIENT_SECRET=your_client_secret_here
ZOHO_REFRESH_TOKEN=your_refresh_token_here
# Optional configurations
ZOHO_API_DOMAIN=https://www.zohoapis.com
RATE_LIMIT_REQUESTS=100
RATE_LIMIT_PERIOD=60
MAX_RETRIES=3
LOG_LEVEL=INFO
zoho-crm-mcp
from zoho_crm_mcp import ZohoCRMMCPServer
import asyncio
async def main():
server = ZohoCRMMCPServer()
await server.run()
if __name__ == "__main__":
asyncio.run(main())
from zoho_crm_mcp import ZohoCRMClient, Config
import asyncio
async def main():
config = Config()
client = ZohoCRMClient(config)
await client.initialize()
# Get leads
leads = await client.get_leads(page=1, per_page=50)
print(f"Found {len(leads['data'])} leads")
# Create a new lead
new_lead = await client.create_lead({
"Last_Name": "Doe",
"First_Name": "John",
"Email": "john.doe@example.com",
"Company": "Acme Corp"
})
# Search for records
results = await client.search_records(
"Leads",
"(Email:equals:john.doe@example.com)"
)
await client.close()
if __name__ == "__main__":
asyncio.run(main())
pytest tests/ -v --cov=zoho_crm_mcp
ruff check src/ tests/
ruff format src/ tests/
python -m build
This project includes GitHub Actions workflows for:
zoho-crm-mcp-server/
โโโ src/zoho_crm_mcp/
โ โโโ __init__.py # Package initialization
โ โโโ server.py # MCP server implementation
โ โโโ zoho_client.py # Zoho CRM API client
โ โโโ config.py # Configuration management
โโโ tests/ # Comprehensive test suite
โโโ .github/workflows/ # CI/CD pipelines
โโโ pyproject.toml # Project configuration
The server includes comprehensive error handling:
The server uses Python's built-in logging module. Configure log level via environment variable:
export LOG_LEVEL=DEBUG # Options: DEBUG, INFO, WARNING, ERROR, CRITICAL
Contributions are welcome! Please feel free to submit a Pull Request.
git checkout -b feature/AmazingFeature)git commit -m 'Add some AmazingFeature')git push origin feature/AmazingFeature)Issue: ModuleNotFoundError: No module named 'mcp'
Solution: Install the MCP SDK: pip install mcp
Issue: Token refresh fails Solution: Verify your refresh token is valid and has the required scopes
Issue: Rate limit errors
Solution: Adjust RATE_LIMIT_REQUESTS and RATE_LIMIT_PERIOD in your .env file
MIT License - see LICENSE file for details
For issues, questions, or contributions, please visit:
Made with โค๏ธ for the MCP community
Be the first to review this server!
by Toleno ยท Developer Tools
Toleno Network MCP Server โ Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace ยท Developer Tools
Create, build, and publish Python MCP servers to PyPI โ conversationally.
by Microsoft ยท Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption