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.
Add this skill
npx mdskills install sickn33/zoho-crm-automationComprehensive Zoho CRM automation with clear workflows, parameter details, and pitfall documentation
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."4requires:5 mcp: [rube]6---78# Zoho CRM Automation via Rube MCP910Automate Zoho CRM operations through Composio's Zoho toolkit via Rube MCP.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 |207
Full transparency — inspect the skill content before installing.