Zoho CRM Automation via Rube MCP
Selective Reading Rule
Start with:
references/senior-master-standard.md
references/usage-routing.md
references/quality-checklist.md
Then load only the inherited docs, scripts, assets, or examples that match the user's actual task.
Automate Zoho CRM operations through Composio's Zoho toolkit via Rube MCP.
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 |
When to Use
This skill is applicable to execute the workflow or actions described in the overview.
Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
1---2name: zoho-crm-automation3description: ALWAYS use this when the request matches Zoho CRM Automation: Automate Zoho CRM tasks via Rube MCP (Composio): create/update records, search contacts, manage leads, and convert leads.4---56# Zoho CRM Automation via Rube MCP78## Selective Reading Rule910Start with:1112- `references/senior-master-standard.md`13- `references/usage-routing.md`14- `references/quality-checklist.md`1516Then load only the inherited docs, scripts, assets, or examples that match the user's actual task.1718Automate Zoho CRM operations through Composio's Zoho toolkit via Rube MCP.1920## Prerequisites2122- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)23- Active Zoho CRM connection via `RUBE_MANAGE_CONNECTIONS` with toolkit `zoho`24- Always call `RUBE_SEARCH_TOOLS` first to get current tool schemas2526## Setup2728**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.2930311. Verify Rube MCP is available by confirming `RUBE_SEARCH_TOOLS` responds322. Call `RUBE_MANAGE_CONNECTIONS` with toolkit `zoho`333. If connection is not ACTIVE, follow the returned auth link to complete Zoho OAuth344. Confirm connection status shows ACTIVE before running any workflows3536## Core Workflows3738### 1. Search and Retrieve Records3940**When to use**: User wants to find specific CRM records by criteria4142**Tool sequence**:431. `ZOHO_LIST_MODULES` - List available CRM modules [Prerequisite]442. `ZOHO_GET_MODULE_FIELDS` - Get field definitions for a module [Optional]453. `ZOHO_SEARCH_ZOHO_RECORDS` - Search records by criteria [Required]464. `ZOHO_GET_ZOHO_RECORDS` - Get records from a module [Alternative]4748**Key parameters**:49- `module`: Module name (e.g., 'Leads', 'Contacts', 'Deals', 'Accounts')50- `criteria`: Search criteria string (e.g., 'Email:equals:john@example.com')51- `fields`: Comma-separated list of fields to return52- `per_page`: Number of records per page53- `page`: Page number for pagination5455**Pitfalls**:56- Module names are case-sensitive (e.g., 'Leads' not 'leads')57- Search criteria uses specific syntax: 'Field:operator:value'58- Supported operators: equals, starts_with, contains, not_equal, greater_than, less_than59- Complex criteria use parentheses and AND/OR: '(Email:equals:john@example.com)AND(Last_Name:equals:Doe)'60- GET_ZOHO_RECORDS returns all records with optional filtering; SEARCH is for targeted lookups6162### 2. Create Records6364**When to use**: User wants to add new leads, contacts, deals, or other CRM records6566**Tool sequence**:671. `ZOHO_GET_MODULE_FIELDS` - Get required fields for the module [Prerequisite]682. `ZOHO_CREATE_ZOHO_RECORD` - Create a new record [Required]6970**Key parameters**:71- `module`: Target module name (e.g., 'Leads', 'Contacts')72- `data`: Record data object with field-value pairs73- Required fields vary by module (e.g., Last_Name for Contacts)7475**Pitfalls**:76- Each module has mandatory fields; use GET_MODULE_FIELDS to identify them77- Field names use underscores (e.g., 'Last_Name', 'Email', 'Phone')78- Lookup fields require the related record ID, not the name79- Date fields must use 'yyyy-MM-dd' format80- Creating duplicates is allowed unless duplicate check rules are configured8182### 3. Update Records8384**When to use**: User wants to modify existing CRM records8586**Tool sequence**:871. `ZOHO_SEARCH_ZOHO_RECORDS` - Find the record to update [Prerequisite]882. `ZOHO_UPDATE_ZOHO_RECORD` - Update the record [Required]8990**Key parameters**:91- `module`: Module name92- `record_id`: ID of the record to update93- `data`: Object with fields to update (only changed fields needed)9495**Pitfalls**:96- record_id must be the Zoho record ID (numeric string)97- Only provide fields that need to change; other fields are preserved98- Read-only and system fields cannot be updated99- Lookup field updates require the related record ID100101### 4. Convert Leads102103**When to use**: User wants to convert a lead into a contact, account, and/or deal104105**Tool sequence**:1061. `ZOHO_SEARCH_ZOHO_RECORDS` - Find the lead to convert [Prerequisite]1072. `ZOHO_CONVERT_ZOHO_LEAD` - Convert the lead [Required]108109**Key parameters**:110- `lead_id`: ID of the lead to convert111- `deal`: Deal details if creating a deal during conversion112- `account`: Account details for the conversion113- `contact`: Contact details for the conversion114115**Pitfalls**:116- Lead conversion is irreversible; the lead record is removed from the Leads module117- Conversion can create up to three records: Contact, Account, and Deal118- Existing account matching may occur based on company name119- Custom field mappings between Lead and Contact/Account/Deal modules affect the outcome120121### 5. Manage Tags and Related Records122123**When to use**: User wants to tag records or manage relationships between records124125**Tool sequence**:1261. `ZOHO_CREATE_ZOHO_TAG` - Create a new tag [Optional]1272. `ZOHO_UPDATE_RELATED_RECORDS` - Update related/linked records [Optional]128129**Key parameters**:130- `module`: Module for the tag131- `tag_name`: Name of the tag132- `record_id`: Parent record ID (for related records)133- `related_module`: Module of the related record134- `data`: Related record data to update135136**Pitfalls**:137- Tags are module-specific; a tag created for Leads is not available in Contacts138- Related records require both the parent record ID and the related module139- Tag names must be unique within a module140- Bulk tag operations may hit rate limits141142## Common Patterns143144### Module and Field Discovery145146```1471. Call ZOHO_LIST_MODULES to get all available modules1482. Call ZOHO_GET_MODULE_FIELDS with module name1493. Identify required fields, field types, and picklist values1504. Use field API names (not display labels) in data objects151```152153### Search Criteria Syntax154155**Simple search**:156```157criteria: '(Email:equals:john@example.com)'158```159160**Combined criteria**:161```162criteria: '((Last_Name:equals:Doe)AND(Email:contains:example.com))'163```164165**Supported operators**:166- `equals`, `not_equal`167- `starts_with`, `contains`168- `greater_than`, `less_than`, `greater_equal`, `less_equal`169- `between` (for dates/numbers)170171### Pagination172173- Set `per_page` (max 200) and `page` starting at 1174- Check response `info.more_records` flag175- Increment page until more_records is false176- Total count available in response info177178## Known Pitfalls179180**Field Names**:181- Use API names, not display labels (e.g., 'Last_Name' not 'Last Name')182- Custom fields have API names like 'Custom_Field1' or user-defined names183- Picklist values must match exactly (case-sensitive)184185**Rate Limits**:186- API call limits depend on your Zoho CRM plan187- Free plan: 5000 API calls/day; Enterprise: 25000+/day188- Implement delays between bulk operations189- Monitor 429 responses and respect rate limit headers190191**Data Formats**:192- Dates: 'yyyy-MM-dd' format193- DateTime: 'yyyy-MM-ddTHH:mm:ss+HH:mm' format194- Currency: Numeric values without formatting195- Phone: String values (no specific format enforced)196197**Module Access**:198- Access depends on user role and profile permissions199- Some modules may be hidden or restricted in your CRM setup200- Custom modules have custom API names201202## Quick Reference203204| Task | Tool Slug | Key Params |205|------|-----------|------------|206| List modules | ZOHO_LIST_MODULES | (none) |207| Get module fields | ZOHO_GET_MODULE_FIELDS | module |208| Search records | ZOHO_SEARCH_ZOHO_RECORDS | module, criteria |209| Get records | ZOHO_GET_ZOHO_RECORDS | module, fields, per_page, page |210| Create record | ZOHO_CREATE_ZOHO_RECORD | module, data |211| Update record | ZOHO_UPDATE_ZOHO_RECORD | module, record_id, data |212| Convert lead | ZOHO_CONVERT_ZOHO_LEAD | lead_id, deal, account, contact |213| Create tag | ZOHO_CREATE_ZOHO_TAG | module, tag_name |214| Update related records | ZOHO_UPDATE_RELATED_RECORDS | module, record_id, related_module, data |215216## When to Use217This skill is applicable to execute the workflow or actions described in the overview.218219## Limitations220- Use this skill only when the task clearly matches the scope described above.221- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.222- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.