zoho_list_modules
Pack: zoho_crm · Endpoint: https://gateway.pipeworx.io/zoho_crm/mcp
List all available modules in Zoho CRM.
Example call
Arguments
{}
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_list_modules","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('zoho_list_modules', {});
Response shape
| Field | Type | Description |
|---|---|---|
error | string | Error code if connection not available |
message | string | Error message if connection not available |
modules | array | List of available modules in Zoho CRM |
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"
},
"modules": {
"type": "array",
"description": "List of available modules in Zoho CRM",
"items": {
"type": "object",
"description": "Module information object"
}
}
}
}
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.