Zoho CRM Automation via Rube MCP
Automate Zoho CRM operations through Composio's Zoho toolkit via Rube MCP.
Toolkit docs: composio.dev/toolkits/zoho
Prerequisites
- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
- Active Zoho CRM connection via
RUBE_MANAGE_CONNECTIONS with toolkit zoho
- Always call
RUBE_SEARCH_TOOLS first to get current tool schemas
Setup
Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
- Verify Rube MCP is available by confirming
RUBE_SEARCH_TOOLS responds
- Call
RUBE_MANAGE_CONNECTIONS with toolkit zoho
- If connection is not ACTIVE, follow the returned auth link to complete Zoho OAuth
- Confirm connection status shows ACTIVE before running any workflows
Core Workflows
1. Search and Retrieve Records
When to use: User wants to find specific CRM records by criteria
Tool sequence:
ZOHO_LIST_MODULES - List available CRM modules [Prerequisite]
ZOHO_GET_MODULE_FIELDS - Get field definitions for a module [Optional]
ZOHO_SEARCH_ZOHO_RECORDS - Search records by criteria [Required]
ZOHO_GET_ZOHO_RECORDS - Get records from a module [Alternative]
Key parameters:
module: Module name (e.g., 'Leads', 'Contacts', 'Deals', 'Accounts')
criteria: Search criteria string (e.g., 'Email:equals:john@example.com')
fields: Comma-separated list of fields to return
per_page: Number of records per page
page: Page number for pagination
Pitfalls:
- Module names are case-sensitive (e.g., 'Leads' not 'leads')
- Search criteria uses specific syntax: 'Field:operator:value'
- Supported operators: equals, starts_with, contains, not_equal, greater_than, less_than
- Complex criteria use parentheses and AND/OR: '(Email:equals:john@example.com)AND(Last_Name:equals:Doe)'
- GET_ZOHO_RECORDS returns all records with optional filtering; SEARCH is for targeted lookups
2. Create Records
When to use: User wants to add new leads, contacts, deals, or other CRM records
Tool sequence:
ZOHO_GET_MODULE_FIELDS - Get required fields for the module [Prerequisite]
ZOHO_CREATE_ZOHO_RECORD - Create a new record [Required]
Key parameters:
module: Target module name (e.g., 'Leads', 'Contacts')
data: Record data object with field-value pairs
- Required fields vary by module (e.g., Last_Name for Contacts)
Pitfalls:
- Each module has mandatory fields; use GET_MODULE_FIELDS to identify them
- Field names use underscores (e.g., 'Last_Name', 'Email', 'Phone')
- Lookup fields require the related record ID, not the name
- Date fields must use 'yyyy-MM-dd' format
- Creating duplicates is allowed unless duplicate check rules are configured
3. Update Records
When to use: User wants to modify existing CRM records
Tool sequence:
ZOHO_SEARCH_ZOHO_RECORDS - Find the record to update [Prerequisite]
ZOHO_UPDATE_ZOHO_RECORD - Update the record [Required]
Key parameters:
module: Module name
record_id: ID of the record to update
data: Object with fields to update (only changed fields needed)
Pitfalls:
- record_id must be the Zoho record ID (numeric string)
- Only provide fields that need to change; other fields are preserved
- Read-only and system fields cannot be updated
- Lookup field updates require the related record ID
4. Convert Leads
When to use: User wants to convert a lead into a contact, account, and/or deal
Tool sequence:
ZOHO_SEARCH_ZOHO_RECORDS - Find the lead to convert [Prerequisite]
ZOHO_CONVERT_ZOHO_LEAD - Convert the lead [Required]
Key parameters:
lead_id: ID of the lead to convert
deal: Deal details if creating a deal during conversion
account: Account details for the conversion
contact: Contact details for the conversion
Pitfalls:
- Lead conversion is irreversible; the lead record is removed from the Leads module
- Conversion can create up to three records: Contact, Account, and Deal
- Existing account matching may occur based on company name
- Custom field mappings between Lead and Contact/Account/Deal modules affect the outcome
5. Manage Tags and Related Records
When to use: User wants to tag records or manage relationships between records
Tool sequence:
ZOHO_CREATE_ZOHO_TAG - Create a new tag [Optional]
ZOHO_UPDATE_RELATED_RECORDS - Update related/linked records [Optional]
Key parameters:
module: Module for the tag
tag_name: Name of the tag
record_id: Parent record ID (for related records)
related_module: Module of the related record
data: Related record data to update
Pitfalls:
- Tags are module-specific; a tag created for Leads is not available in Contacts
- Related records require both the parent record ID and the related module
- Tag names must be unique within a module
- Bulk tag operations may hit rate limits
Common Patterns
Module and Field Discovery
1. Call ZOHO_LIST_MODULES to get all available modules
2. Call ZOHO_GET_MODULE_FIELDS with module name
3. Identify required fields, field types, and picklist values
4. Use field API names (not display labels) in data objects
Search Criteria Syntax
Simple search:
criteria: '(Email:equals:john@example.com)'
Combined criteria:
criteria: '((Last_Name:equals:Doe)AND(Email:contains:example.com))'
Supported operators:
equals, not_equal
starts_with, contains
greater_than, less_than, greater_equal, less_equal
between (for dates/numbers)
Pagination
- Set
per_page (max 200) and page starting at 1
- Check response
info.more_records flag
- Increment page until more_records is false
- Total count available in response info
Known Pitfalls
Field Names:
- Use API names, not display labels (e.g., 'Last_Name' not 'Last Name')
- Custom fields have API names like 'Custom_Field1' or user-defined names
- Picklist values must match exactly (case-sensitive)
Rate Limits:
- API call limits depend on your Zoho CRM plan
- Free plan: 5000 API calls/day; Enterprise: 25000+/day
- Implement delays between bulk operations
- Monitor 429 responses and respect rate limit headers
Data Formats:
- Dates: 'yyyy-MM-dd' format
- DateTime: 'yyyy-MM-ddTHH:mm:ss+HH:mm' format
- Currency: Numeric values without formatting
- Phone: String values (no specific format enforced)
Module Access:
- Access depends on user role and profile permissions
- Some modules may be hidden or restricted in your CRM setup
- Custom modules have custom API names
Quick Reference
| Task |
Tool Slug |
Key Params |
| List modules |
ZOHO_LIST_MODULES |
(none) |
| Get module fields |
ZOHO_GET_MODULE_FIELDS |
module |
| Search records |
ZOHO_SEARCH_ZOHO_RECORDS |
module, criteria |
| Get records |
ZOHO_GET_ZOHO_RECORDS |
module, fields, per_page, page |
| Create record |
ZOHO_CREATE_ZOHO_RECORD |
module, data |
| Update record |
ZOHO_UPDATE_ZOHO_RECORD |
module, record_id, data |
| Convert lead |
ZOHO_CONVERT_ZOHO_LEAD |
lead_id, deal, account, contact |
| Create tag |
ZOHO_CREATE_ZOHO_TAG |
module, tag_name |
| Update related records |
ZOHO_UPDATE_RELATED_RECORDS |
module, record_id, related_module, data |
Powered by Composio
1---2name: zoho-crm-automation3description: Automate Zoho CRM tasks via Rube MCP (Composio): create/update records, search contacts, manage leads, and convert leads. Always search tools first for current schemas.4---56# Zoho CRM Automation via Rube MCP78Automate Zoho CRM operations through Composio's Zoho toolkit via Rube MCP.910**Toolkit docs**: [composio.dev/toolkits/zoho](https://composio.dev/toolkits/zoho)1112## Prerequisites1314- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)15- Active Zoho CRM connection via `RUBE_MANAGE_CONNECTIONS` with toolkit `zoho`16- Always call `RUBE_SEARCH_TOOLS` first to get current tool schemas1718## Setup1920**Get Rube MCP**: Add `https://rube.app/mcp` as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.2122231. Verify Rube MCP is available by confirming `RUBE_SEARCH_TOOLS` responds242. Call `RUBE_MANAGE_CONNECTIONS` with toolkit `zoho`253. If connection is not ACTIVE, follow the returned auth link to complete Zoho OAuth264. Confirm connection status shows ACTIVE before running any workflows2728## Core Workflows2930### 1. Search and Retrieve Records3132**When to use**: User wants to find specific CRM records by criteria3334**Tool sequence**:351. `ZOHO_LIST_MODULES` - List available CRM modules [Prerequisite]362. `ZOHO_GET_MODULE_FIELDS` - Get field definitions for a module [Optional]373. `ZOHO_SEARCH_ZOHO_RECORDS` - Search records by criteria [Required]384. `ZOHO_GET_ZOHO_RECORDS` - Get records from a module [Alternative]3940**Key parameters**:41- `module`: Module name (e.g., 'Leads', 'Contacts', 'Deals', 'Accounts')42- `criteria`: Search criteria string (e.g., 'Email:equals:john@example.com')43- `fields`: Comma-separated list of fields to return44- `per_page`: Number of records per page45- `page`: Page number for pagination4647**Pitfalls**:48- Module names are case-sensitive (e.g., 'Leads' not 'leads')49- Search criteria uses specific syntax: 'Field:operator:value'50- Supported operators: equals, starts_with, contains, not_equal, greater_than, less_than51- Complex criteria use parentheses and AND/OR: '(Email:equals:john@example.com)AND(Last_Name:equals:Doe)'52- GET_ZOHO_RECORDS returns all records with optional filtering; SEARCH is for targeted lookups5354### 2. Create Records5556**When to use**: User wants to add new leads, contacts, deals, or other CRM records5758**Tool sequence**:591. `ZOHO_GET_MODULE_FIELDS` - Get required fields for the module [Prerequisite]602. `ZOHO_CREATE_ZOHO_RECORD` - Create a new record [Required]6162**Key parameters**:63- `module`: Target module name (e.g., 'Leads', 'Contacts')64- `data`: Record data object with field-value pairs65- Required fields vary by module (e.g., Last_Name for Contacts)6667**Pitfalls**:68- Each module has mandatory fields; use GET_MODULE_FIELDS to identify them69- Field names use underscores (e.g., 'Last_Name', 'Email', 'Phone')70- Lookup fields require the related record ID, not the name71- Date fields must use 'yyyy-MM-dd' format72- Creating duplicates is allowed unless duplicate check rules are configured7374### 3. Update Records7576**When to use**: User wants to modify existing CRM records7778**Tool sequence**:791. `ZOHO_SEARCH_ZOHO_RECORDS` - Find the record to update [Prerequisite]802. `ZOHO_UPDATE_ZOHO_RECORD` - Update the record [Required]8182**Key parameters**:83- `module`: Module name84- `record_id`: ID of the record to update85- `data`: Object with fields to update (only changed fields needed)8687**Pitfalls**:88- record_id must be the Zoho record ID (numeric string)89- Only provide fields that need to change; other fields are preserved90- Read-only and system fields cannot be updated91- Lookup field updates require the related record ID9293### 4. Convert Leads9495**When to use**: User wants to convert a lead into a contact, account, and/or deal9697**Tool sequence**:981. `ZOHO_SEARCH_ZOHO_RECORDS` - Find the lead to convert [Prerequisite]992. `ZOHO_CONVERT_ZOHO_LEAD` - Convert the lead [Required]100101**Key parameters**:102- `lead_id`: ID of the lead to convert103- `deal`: Deal details if creating a deal during conversion104- `account`: Account details for the conversion105- `contact`: Contact details for the conversion106107**Pitfalls**:108- Lead conversion is irreversible; the lead record is removed from the Leads module109- Conversion can create up to three records: Contact, Account, and Deal110- Existing account matching may occur based on company name111- Custom field mappings between Lead and Contact/Account/Deal modules affect the outcome112113### 5. Manage Tags and Related Records114115**When to use**: User wants to tag records or manage relationships between records116117**Tool sequence**:1181. `ZOHO_CREATE_ZOHO_TAG` - Create a new tag [Optional]1192. `ZOHO_UPDATE_RELATED_RECORDS` - Update related/linked records [Optional]120121**Key parameters**:122- `module`: Module for the tag123- `tag_name`: Name of the tag124- `record_id`: Parent record ID (for related records)125- `related_module`: Module of the related record126- `data`: Related record data to update127128**Pitfalls**:129- Tags are module-specific; a tag created for Leads is not available in Contacts130- Related records require both the parent record ID and the related module131- Tag names must be unique within a module132- Bulk tag operations may hit rate limits133134## Common Patterns135136### Module and Field Discovery137138```1391. Call ZOHO_LIST_MODULES to get all available modules1402. Call ZOHO_GET_MODULE_FIELDS with module name1413. Identify required fields, field types, and picklist values1424. Use field API names (not display labels) in data objects143```144145### Search Criteria Syntax146147**Simple search**:148```149criteria: '(Email:equals:john@example.com)'150```151152**Combined criteria**:153```154criteria: '((Last_Name:equals:Doe)AND(Email:contains:example.com))'155```156157**Supported operators**:158- `equals`, `not_equal`159- `starts_with`, `contains`160- `greater_than`, `less_than`, `greater_equal`, `less_equal`161- `between` (for dates/numbers)162163### Pagination164165- Set `per_page` (max 200) and `page` starting at 1166- Check response `info.more_records` flag167- Increment page until more_records is false168- Total count available in response info169170## Known Pitfalls171172**Field Names**:173- Use API names, not display labels (e.g., 'Last_Name' not 'Last Name')174- Custom fields have API names like 'Custom_Field1' or user-defined names175- Picklist values must match exactly (case-sensitive)176177**Rate Limits**:178- API call limits depend on your Zoho CRM plan179- Free plan: 5000 API calls/day; Enterprise: 25000+/day180- Implement delays between bulk operations181- Monitor 429 responses and respect rate limit headers182183**Data Formats**:184- Dates: 'yyyy-MM-dd' format185- DateTime: 'yyyy-MM-ddTHH:mm:ss+HH:mm' format186- Currency: Numeric values without formatting187- Phone: String values (no specific format enforced)188189**Module Access**:190- Access depends on user role and profile permissions191- Some modules may be hidden or restricted in your CRM setup192- Custom modules have custom API names193194## Quick Reference195196| Task | Tool Slug | Key Params |197|------|-----------|------------|198| List modules | ZOHO_LIST_MODULES | (none) |199| Get module fields | ZOHO_GET_MODULE_FIELDS | module |200| Search records | ZOHO_SEARCH_ZOHO_RECORDS | module, criteria |201| Get records | ZOHO_GET_ZOHO_RECORDS | module, fields, per_page, page |202| Create record | ZOHO_CREATE_ZOHO_RECORD | module, data |203| Update record | ZOHO_UPDATE_ZOHO_RECORD | module, record_id, data |204| Convert lead | ZOHO_CONVERT_ZOHO_LEAD | lead_id, deal, account, contact |205| Create tag | ZOHO_CREATE_ZOHO_TAG | module, tag_name |206| Update related records | ZOHO_UPDATE_RELATED_RECORDS | module, record_id, related_module, data |207208---209*Powered by [Composio](https://composio.dev)*