Zoho Crm
live CRMDataZoho CRM MCP Pack — wraps the Zoho CRM API v6
5 tools
0ms auth
free tier 50 calls/day
Tools
zoho_list_records List records from a Zoho CRM module (e.g., Leads, Contacts, Deals).
No parameters required.
Try it
Response
zoho_get_record Get a single record by ID from a Zoho CRM module.
No parameters required.
Try it
Response
zoho_search_records Search records in a Zoho CRM module using criteria.
No parameters required.
Try it
Response
zoho_create_record Create a new record in a Zoho CRM module.
No parameters required.
Try it
Response
zoho_list_modules List all available modules in Zoho CRM.
No parameters required.
Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/zoho_crm/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' Call a tool
bash
curl -X POST https://gateway.pipeworx.io/zoho_crm/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"zoho_list_records","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("zoho_list_records", {}); ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("zoho crm mcp pack — wraps the zoho crm api v6"); Related packs
Other Pipeworx packs in the same categories (CRM, Data):