zoho_create_record
Pack: zoho_crm · Endpoint: https://gateway.pipeworx.io/zoho_crm/mcp
Create a new record in a Zoho CRM module.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
module | string | yes | Module name (e.g., Leads, Contacts, Deals) |
data | object | yes | Record data as key-value pairs (e.g., { “Last_Name”: “Smith”, “Email”: “[email protected]” }) |
Example call
Arguments
{
"module": "Contacts",
"data": {
"Last_Name": "Johnson",
"Email": "[email protected]",
"Phone": "555-1234"
}
}
curl
curl -X POST https://gateway.pipeworx.io/zoho_crm/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"zoho_create_record","arguments":{"module":"Contacts","data":{"Last_Name":"Johnson","Email":"[email protected]","Phone":"555-1234"}}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('zoho_create_record', {
"module": "Contacts",
"data": {
"Last_Name": "Johnson",
"Email": "[email protected]",
"Phone": "555-1234"
}
});
Response shape
| Field | Type | Description |
|---|---|---|
error | string | Error code if connection not available |
message | string | Error message if connection not available |
data | array | Array containing the created record response |
Full JSON Schema
{
"type": "object",
"properties": {
"error": {
"type": "string",
"description": "Error code if connection not available"
},
"message": {
"type": "string",
"description": "Error message if connection not available"
},
"data": {
"type": "array",
"description": "Array containing the created record response",
"items": {
"type": "object",
"description": "Created record with ID and details"
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"zoho_crm": {
"url": "https://gateway.pipeworx.io/zoho_crm/mcp"
}
}
}
See Getting Started for client-specific install steps.