[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-composio-kommo-automation":3,"mdc--395jit-key":51,"related-repo-composio-kommo-automation":1253,"related-org-composio-kommo-automation":1338},{"slug":4,"name":5,"fn":6,"description":7,"org":8,"tags":13,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":46,"sourceUrl":49,"mdContent":50},"kommo-automation","Kommo Automation","automate Kommo CRM operations","Automate Kommo CRM operations -- manage leads, pipelines, pipeline stages, tasks, and custom fields -- using natural language through the Composio MCP integration.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},"composio","Composio","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fcomposio.png","ComposioHQ",[14,16,19,22],{"name":10,"slug":9,"type":15},"tag",{"name":17,"slug":18,"type":15},"Automation","automation",{"name":20,"slug":21,"type":15},"CRM","crm",{"name":23,"slug":24,"type":15},"Sales","sales",67499,"https:\u002F\u002Fgithub.com\u002FComposioHQ\u002Fawesome-claude-skills","2026-07-15T05:44:35.638371",null,7603,[31,32,33,18,34,35,36,9,37,38,39,40,41,42,43,44,45],"agent-skills","ai-agents","antigravity","claude","claude-code","codex","cursor","developer-tools","gemini-cli","mcp","openai-codex","rube","saas","skill","workflow-automation",{"repoUrl":26,"stars":25,"forks":29,"topics":47,"description":48},[31,32,33,18,34,35,36,9,37,38,39,40,41,42,43,44,45],"A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows","https:\u002F\u002Fgithub.com\u002FComposioHQ\u002Fawesome-claude-skills\u002Ftree\u002FHEAD\u002Fcomposio-skills\u002Fkommo-automation","---\nname: Kommo Automation\ndescription: \"Automate Kommo CRM operations -- manage leads, pipelines, pipeline stages, tasks, and custom fields -- using natural language through the Composio MCP integration.\"\ncategory: crm\nrequires:\n  mcp:\n    - rube\n---\n\n# Kommo Automation\n\nManage your Kommo CRM sales pipeline -- list and filter leads, navigate pipeline stages, create and update deals, assign tasks, and work with custom fields -- all through natural language commands.\n\n**Toolkit docs:** [composio.dev\u002Ftoolkits\u002Fkommo](https:\u002F\u002Fcomposio.dev\u002Ftoolkits\u002Fkommo)\n\n---\n\n## Setup\n\n1. Add the Composio MCP server to your client configuration:\n   ```\n   https:\u002F\u002Frube.app\u002Fmcp\n   ```\n2. Connect your Kommo account when prompted (OAuth authentication).\n3. Start issuing natural language commands to manage your CRM.\n\n---\n\n## Core Workflows\n\n### 1. Navigate Pipelines and Stages\nList all lead pipelines, then drill into specific pipeline stages to understand your sales funnel structure.\n\n**Tools:** `KOMMO_LIST_LEADS_PIPELINES`, `KOMMO_LIST_PIPELINE_STAGES`\n\n**Example prompt:**\n> \"Show all my Kommo pipelines and the stages in my main sales pipeline\"\n\n**Key parameters for List Pipelines:** None required.\n\n**Key parameters for List Stages:**\n- `pipeline_id` (required) -- The pipeline ID to list stages for\n- `with_description` -- Include stage descriptions in the response (boolean)\n\n---\n\n### 2. List and Filter Leads\nRetrieve leads with powerful filtering by pipeline, status, date ranges, responsible users, price, and more.\n\n**Tool:** `KOMMO_LIST_LEADS`\n\n**Example prompt:**\n> \"Show all leads in pipeline 12345 created this week, sorted by newest first\"\n\n**Key parameters:**\n- `query` -- Free-text search across all filled fields\n- `filter_pipeline_ids` -- Filter by pipeline IDs (array of integers)\n- `filter_status` -- Filter by status within a pipeline: `{\"pipeline_id\": 123, \"status_id\": 456}`\n- `filter_responsible_user_ids` -- Filter by assigned user IDs\n- `filter_names` -- Filter by lead names\n- `filter_price` -- Filter by deal value\n- `filter_created_at` -- Date range: `{\"from\": \u003Cunix_timestamp>, \"to\": \u003Cunix_timestamp>}`\n- `filter_updated_at` -- Date range for last update\n- `filter_closed_at` -- Date range for closure\n- `order_by_created_at` -- Sort: \"asc\" or \"desc\"\n- `order_by_updated_at` -- Sort by update date\n- `limit` -- Max 250 per page\n- `page` -- Page number for pagination\n- `with_params` -- Additional data: \"contacts\", \"loss_reason\", \"catalog_elements\", \"source_id\"\n\n---\n\n### 3. Create New Leads\nAdd new deals to your Kommo pipeline with custom fields, tags, and pipeline placement.\n\n**Tool:** `KOMMO_CREATE_LEAD`\n\n**Example prompt:**\n> \"Create a new lead called 'Acme Corp Deal' worth $50,000 in pipeline 12345\"\n\n**Key parameters:**\n- `name` (required) -- Name of the lead\u002Fdeal\n- `price` -- Deal value (integer)\n- `pipeline_id` -- Pipeline to add the lead to\n- `status_id` -- Stage within the pipeline (defaults to first stage of main pipeline)\n- `responsible_user_id` -- Assigned user ID\n- `custom_fields_values` -- Array of custom field value objects\n- `tags_to_add` -- Array of tags (by name or ID)\n- `created_by` -- User ID of creator (0 for robot)\n- `loss_reason_id` -- Reason for loss (if applicable)\n\n---\n\n### 4. Update Existing Leads\nModify lead properties including name, price, pipeline stage, responsible user, tags, and custom fields.\n\n**Tool:** `KOMMO_UPDATE_LEAD`\n\n**Example prompt:**\n> \"Move lead 789 to stage 456 in pipeline 123 and update the price to $75,000\"\n\n**Key parameters:**\n- Lead ID (required)\n- Any combination of: `name`, `price`, `pipeline_id`, `status_id`, `responsible_user_id`, `tags_to_add`, `tags_to_delete`, `custom_fields_values`\n\n---\n\n### 5. Create Tasks\nAssign follow-up tasks linked to leads, contacts, or companies.\n\n**Tool:** `KOMMO_CREATE_TASK`\n\n**Example prompt:**\n> \"Create a follow-up call task for lead 789 due tomorrow assigned to user 42\"\n\n**Key parameters:**\n- Task text\u002Fdescription\n- Entity type and ID (lead, contact, company)\n- Responsible user ID\n- Due date (Unix timestamp)\n- Task type\n\n---\n\n### 6. Discover Custom Fields\nList all custom fields for leads, contacts, or companies to understand your CRM schema.\n\n**Tool:** `KOMMO_LIST_CUSTOM_FIELDS`\n\n**Example prompt:**\n> \"What custom fields are available for leads in Kommo?\"\n\n**Key parameters:**\n- Entity type (leads, contacts, companies)\n\n---\n\n## Known Pitfalls\n\n- **Date filters use Unix timestamps**: All date range filters (`filter_created_at`, `filter_updated_at`, `filter_closed_at`) require Unix timestamp format in `{\"from\": \u003Ctimestamp>, \"to\": \u003Ctimestamp>}` structure, not ISO8601 strings.\n- **Pipeline and stage IDs are required**: To filter leads by status, you need both `pipeline_id` and `status_id`. Always call `KOMMO_LIST_LEADS_PIPELINES` and `KOMMO_LIST_PIPELINE_STAGES` first to discover valid IDs.\n- **Max 250 leads per page**: The `limit` parameter caps at 250. For large datasets, implement pagination using the `page` parameter.\n- **Custom field values format**: Custom fields use a specific nested object format. Use `KOMMO_LIST_CUSTOM_FIELDS` to discover field IDs and expected value formats before setting values.\n- **Status filter requires both IDs**: The `filter_status` parameter requires both `pipeline_id` and `status_id` as a combined object -- you cannot filter by status alone.\n- **Created_by 0 means robot**: When setting `created_by` or `updated_by` to 0, the action is attributed to a robot\u002Fautomation, not a human user.\n\n---\n\n## Quick Reference\n\n| Action | Tool Slug | Required Params |\n|---|---|---|\n| List pipelines | `KOMMO_LIST_LEADS_PIPELINES` | None |\n| List pipeline stages | `KOMMO_LIST_PIPELINE_STAGES` | `pipeline_id` |\n| List leads | `KOMMO_LIST_LEADS` | None (optional filters) |\n| Create lead | `KOMMO_CREATE_LEAD` | `name` |\n| Update lead | `KOMMO_UPDATE_LEAD` | Lead ID |\n| Create task | `KOMMO_CREATE_TASK` | Task details |\n| List custom fields | `KOMMO_LIST_CUSTOM_FIELDS` | Entity type |\n\n---\n\n*Powered by [Composio](https:\u002F\u002Fcomposio.dev)*\n",{"data":52,"body":55},{"name":5,"description":7,"category":21,"requires":53},{"mcp":54},[42],{"type":56,"children":57},"root",[58,65,71,91,95,102,135,138,144,151,156,179,187,196,206,214,240,243,249,254,269,276,284,292,461,464,470,475,489,496,504,511,612,615,621,626,640,647,655,662,723,726,732,737,751,758,766,773,801,804,810,815,829,836,844,851,859,862,868,1040,1043,1049,1235,1238],{"type":59,"tag":60,"props":61,"children":62},"element","h1",{"id":4},[63],{"type":64,"value":5},"text",{"type":59,"tag":66,"props":67,"children":68},"p",{},[69],{"type":64,"value":70},"Manage your Kommo CRM sales pipeline -- list and filter leads, navigate pipeline stages, create and update deals, assign tasks, and work with custom fields -- all through natural language commands.",{"type":59,"tag":66,"props":72,"children":73},{},[74,80,82],{"type":59,"tag":75,"props":76,"children":77},"strong",{},[78],{"type":64,"value":79},"Toolkit docs:",{"type":64,"value":81}," ",{"type":59,"tag":83,"props":84,"children":88},"a",{"href":85,"rel":86},"https:\u002F\u002Fcomposio.dev\u002Ftoolkits\u002Fkommo",[87],"nofollow",[89],{"type":64,"value":90},"composio.dev\u002Ftoolkits\u002Fkommo",{"type":59,"tag":92,"props":93,"children":94},"hr",{},[],{"type":59,"tag":96,"props":97,"children":99},"h2",{"id":98},"setup",[100],{"type":64,"value":101},"Setup",{"type":59,"tag":103,"props":104,"children":105},"ol",{},[106,125,130],{"type":59,"tag":107,"props":108,"children":109},"li",{},[110,112],{"type":64,"value":111},"Add the Composio MCP server to your client configuration:\n",{"type":59,"tag":113,"props":114,"children":118},"pre",{"className":115,"code":117,"language":64},[116],"language-text","https:\u002F\u002Frube.app\u002Fmcp\n",[119],{"type":59,"tag":120,"props":121,"children":123},"code",{"__ignoreMap":122},"",[124],{"type":64,"value":117},{"type":59,"tag":107,"props":126,"children":127},{},[128],{"type":64,"value":129},"Connect your Kommo account when prompted (OAuth authentication).",{"type":59,"tag":107,"props":131,"children":132},{},[133],{"type":64,"value":134},"Start issuing natural language commands to manage your CRM.",{"type":59,"tag":92,"props":136,"children":137},{},[],{"type":59,"tag":96,"props":139,"children":141},{"id":140},"core-workflows",[142],{"type":64,"value":143},"Core Workflows",{"type":59,"tag":145,"props":146,"children":148},"h3",{"id":147},"_1-navigate-pipelines-and-stages",[149],{"type":64,"value":150},"1. Navigate Pipelines and Stages",{"type":59,"tag":66,"props":152,"children":153},{},[154],{"type":64,"value":155},"List all lead pipelines, then drill into specific pipeline stages to understand your sales funnel structure.",{"type":59,"tag":66,"props":157,"children":158},{},[159,164,165,171,173],{"type":59,"tag":75,"props":160,"children":161},{},[162],{"type":64,"value":163},"Tools:",{"type":64,"value":81},{"type":59,"tag":120,"props":166,"children":168},{"className":167},[],[169],{"type":64,"value":170},"KOMMO_LIST_LEADS_PIPELINES",{"type":64,"value":172},", ",{"type":59,"tag":120,"props":174,"children":176},{"className":175},[],[177],{"type":64,"value":178},"KOMMO_LIST_PIPELINE_STAGES",{"type":59,"tag":66,"props":180,"children":181},{},[182],{"type":59,"tag":75,"props":183,"children":184},{},[185],{"type":64,"value":186},"Example prompt:",{"type":59,"tag":188,"props":189,"children":190},"blockquote",{},[191],{"type":59,"tag":66,"props":192,"children":193},{},[194],{"type":64,"value":195},"\"Show all my Kommo pipelines and the stages in my main sales pipeline\"",{"type":59,"tag":66,"props":197,"children":198},{},[199,204],{"type":59,"tag":75,"props":200,"children":201},{},[202],{"type":64,"value":203},"Key parameters for List Pipelines:",{"type":64,"value":205}," None required.",{"type":59,"tag":66,"props":207,"children":208},{},[209],{"type":59,"tag":75,"props":210,"children":211},{},[212],{"type":64,"value":213},"Key parameters for List Stages:",{"type":59,"tag":215,"props":216,"children":217},"ul",{},[218,229],{"type":59,"tag":107,"props":219,"children":220},{},[221,227],{"type":59,"tag":120,"props":222,"children":224},{"className":223},[],[225],{"type":64,"value":226},"pipeline_id",{"type":64,"value":228}," (required) -- The pipeline ID to list stages for",{"type":59,"tag":107,"props":230,"children":231},{},[232,238],{"type":59,"tag":120,"props":233,"children":235},{"className":234},[],[236],{"type":64,"value":237},"with_description",{"type":64,"value":239}," -- Include stage descriptions in the response (boolean)",{"type":59,"tag":92,"props":241,"children":242},{},[],{"type":59,"tag":145,"props":244,"children":246},{"id":245},"_2-list-and-filter-leads",[247],{"type":64,"value":248},"2. List and Filter Leads",{"type":59,"tag":66,"props":250,"children":251},{},[252],{"type":64,"value":253},"Retrieve leads with powerful filtering by pipeline, status, date ranges, responsible users, price, and more.",{"type":59,"tag":66,"props":255,"children":256},{},[257,262,263],{"type":59,"tag":75,"props":258,"children":259},{},[260],{"type":64,"value":261},"Tool:",{"type":64,"value":81},{"type":59,"tag":120,"props":264,"children":266},{"className":265},[],[267],{"type":64,"value":268},"KOMMO_LIST_LEADS",{"type":59,"tag":66,"props":270,"children":271},{},[272],{"type":59,"tag":75,"props":273,"children":274},{},[275],{"type":64,"value":186},{"type":59,"tag":188,"props":277,"children":278},{},[279],{"type":59,"tag":66,"props":280,"children":281},{},[282],{"type":64,"value":283},"\"Show all leads in pipeline 12345 created this week, sorted by newest first\"",{"type":59,"tag":66,"props":285,"children":286},{},[287],{"type":59,"tag":75,"props":288,"children":289},{},[290],{"type":64,"value":291},"Key parameters:",{"type":59,"tag":215,"props":293,"children":294},{},[295,306,317,334,345,356,367,384,395,406,417,428,439,450],{"type":59,"tag":107,"props":296,"children":297},{},[298,304],{"type":59,"tag":120,"props":299,"children":301},{"className":300},[],[302],{"type":64,"value":303},"query",{"type":64,"value":305}," -- Free-text search across all filled fields",{"type":59,"tag":107,"props":307,"children":308},{},[309,315],{"type":59,"tag":120,"props":310,"children":312},{"className":311},[],[313],{"type":64,"value":314},"filter_pipeline_ids",{"type":64,"value":316}," -- Filter by pipeline IDs (array of integers)",{"type":59,"tag":107,"props":318,"children":319},{},[320,326,328],{"type":59,"tag":120,"props":321,"children":323},{"className":322},[],[324],{"type":64,"value":325},"filter_status",{"type":64,"value":327}," -- Filter by status within a pipeline: ",{"type":59,"tag":120,"props":329,"children":331},{"className":330},[],[332],{"type":64,"value":333},"{\"pipeline_id\": 123, \"status_id\": 456}",{"type":59,"tag":107,"props":335,"children":336},{},[337,343],{"type":59,"tag":120,"props":338,"children":340},{"className":339},[],[341],{"type":64,"value":342},"filter_responsible_user_ids",{"type":64,"value":344}," -- Filter by assigned user IDs",{"type":59,"tag":107,"props":346,"children":347},{},[348,354],{"type":59,"tag":120,"props":349,"children":351},{"className":350},[],[352],{"type":64,"value":353},"filter_names",{"type":64,"value":355}," -- Filter by lead names",{"type":59,"tag":107,"props":357,"children":358},{},[359,365],{"type":59,"tag":120,"props":360,"children":362},{"className":361},[],[363],{"type":64,"value":364},"filter_price",{"type":64,"value":366}," -- Filter by deal value",{"type":59,"tag":107,"props":368,"children":369},{},[370,376,378],{"type":59,"tag":120,"props":371,"children":373},{"className":372},[],[374],{"type":64,"value":375},"filter_created_at",{"type":64,"value":377}," -- Date range: ",{"type":59,"tag":120,"props":379,"children":381},{"className":380},[],[382],{"type":64,"value":383},"{\"from\": \u003Cunix_timestamp>, \"to\": \u003Cunix_timestamp>}",{"type":59,"tag":107,"props":385,"children":386},{},[387,393],{"type":59,"tag":120,"props":388,"children":390},{"className":389},[],[391],{"type":64,"value":392},"filter_updated_at",{"type":64,"value":394}," -- Date range for last update",{"type":59,"tag":107,"props":396,"children":397},{},[398,404],{"type":59,"tag":120,"props":399,"children":401},{"className":400},[],[402],{"type":64,"value":403},"filter_closed_at",{"type":64,"value":405}," -- Date range for closure",{"type":59,"tag":107,"props":407,"children":408},{},[409,415],{"type":59,"tag":120,"props":410,"children":412},{"className":411},[],[413],{"type":64,"value":414},"order_by_created_at",{"type":64,"value":416}," -- Sort: \"asc\" or \"desc\"",{"type":59,"tag":107,"props":418,"children":419},{},[420,426],{"type":59,"tag":120,"props":421,"children":423},{"className":422},[],[424],{"type":64,"value":425},"order_by_updated_at",{"type":64,"value":427}," -- Sort by update date",{"type":59,"tag":107,"props":429,"children":430},{},[431,437],{"type":59,"tag":120,"props":432,"children":434},{"className":433},[],[435],{"type":64,"value":436},"limit",{"type":64,"value":438}," -- Max 250 per page",{"type":59,"tag":107,"props":440,"children":441},{},[442,448],{"type":59,"tag":120,"props":443,"children":445},{"className":444},[],[446],{"type":64,"value":447},"page",{"type":64,"value":449}," -- Page number for pagination",{"type":59,"tag":107,"props":451,"children":452},{},[453,459],{"type":59,"tag":120,"props":454,"children":456},{"className":455},[],[457],{"type":64,"value":458},"with_params",{"type":64,"value":460}," -- Additional data: \"contacts\", \"loss_reason\", \"catalog_elements\", \"source_id\"",{"type":59,"tag":92,"props":462,"children":463},{},[],{"type":59,"tag":145,"props":465,"children":467},{"id":466},"_3-create-new-leads",[468],{"type":64,"value":469},"3. Create New Leads",{"type":59,"tag":66,"props":471,"children":472},{},[473],{"type":64,"value":474},"Add new deals to your Kommo pipeline with custom fields, tags, and pipeline placement.",{"type":59,"tag":66,"props":476,"children":477},{},[478,482,483],{"type":59,"tag":75,"props":479,"children":480},{},[481],{"type":64,"value":261},{"type":64,"value":81},{"type":59,"tag":120,"props":484,"children":486},{"className":485},[],[487],{"type":64,"value":488},"KOMMO_CREATE_LEAD",{"type":59,"tag":66,"props":490,"children":491},{},[492],{"type":59,"tag":75,"props":493,"children":494},{},[495],{"type":64,"value":186},{"type":59,"tag":188,"props":497,"children":498},{},[499],{"type":59,"tag":66,"props":500,"children":501},{},[502],{"type":64,"value":503},"\"Create a new lead called 'Acme Corp Deal' worth $50,000 in pipeline 12345\"",{"type":59,"tag":66,"props":505,"children":506},{},[507],{"type":59,"tag":75,"props":508,"children":509},{},[510],{"type":64,"value":291},{"type":59,"tag":215,"props":512,"children":513},{},[514,525,536,546,557,568,579,590,601],{"type":59,"tag":107,"props":515,"children":516},{},[517,523],{"type":59,"tag":120,"props":518,"children":520},{"className":519},[],[521],{"type":64,"value":522},"name",{"type":64,"value":524}," (required) -- Name of the lead\u002Fdeal",{"type":59,"tag":107,"props":526,"children":527},{},[528,534],{"type":59,"tag":120,"props":529,"children":531},{"className":530},[],[532],{"type":64,"value":533},"price",{"type":64,"value":535}," -- Deal value (integer)",{"type":59,"tag":107,"props":537,"children":538},{},[539,544],{"type":59,"tag":120,"props":540,"children":542},{"className":541},[],[543],{"type":64,"value":226},{"type":64,"value":545}," -- Pipeline to add the lead to",{"type":59,"tag":107,"props":547,"children":548},{},[549,555],{"type":59,"tag":120,"props":550,"children":552},{"className":551},[],[553],{"type":64,"value":554},"status_id",{"type":64,"value":556}," -- Stage within the pipeline (defaults to first stage of main pipeline)",{"type":59,"tag":107,"props":558,"children":559},{},[560,566],{"type":59,"tag":120,"props":561,"children":563},{"className":562},[],[564],{"type":64,"value":565},"responsible_user_id",{"type":64,"value":567}," -- Assigned user ID",{"type":59,"tag":107,"props":569,"children":570},{},[571,577],{"type":59,"tag":120,"props":572,"children":574},{"className":573},[],[575],{"type":64,"value":576},"custom_fields_values",{"type":64,"value":578}," -- Array of custom field value objects",{"type":59,"tag":107,"props":580,"children":581},{},[582,588],{"type":59,"tag":120,"props":583,"children":585},{"className":584},[],[586],{"type":64,"value":587},"tags_to_add",{"type":64,"value":589}," -- Array of tags (by name or ID)",{"type":59,"tag":107,"props":591,"children":592},{},[593,599],{"type":59,"tag":120,"props":594,"children":596},{"className":595},[],[597],{"type":64,"value":598},"created_by",{"type":64,"value":600}," -- User ID of creator (0 for robot)",{"type":59,"tag":107,"props":602,"children":603},{},[604,610],{"type":59,"tag":120,"props":605,"children":607},{"className":606},[],[608],{"type":64,"value":609},"loss_reason_id",{"type":64,"value":611}," -- Reason for loss (if applicable)",{"type":59,"tag":92,"props":613,"children":614},{},[],{"type":59,"tag":145,"props":616,"children":618},{"id":617},"_4-update-existing-leads",[619],{"type":64,"value":620},"4. Update Existing Leads",{"type":59,"tag":66,"props":622,"children":623},{},[624],{"type":64,"value":625},"Modify lead properties including name, price, pipeline stage, responsible user, tags, and custom fields.",{"type":59,"tag":66,"props":627,"children":628},{},[629,633,634],{"type":59,"tag":75,"props":630,"children":631},{},[632],{"type":64,"value":261},{"type":64,"value":81},{"type":59,"tag":120,"props":635,"children":637},{"className":636},[],[638],{"type":64,"value":639},"KOMMO_UPDATE_LEAD",{"type":59,"tag":66,"props":641,"children":642},{},[643],{"type":59,"tag":75,"props":644,"children":645},{},[646],{"type":64,"value":186},{"type":59,"tag":188,"props":648,"children":649},{},[650],{"type":59,"tag":66,"props":651,"children":652},{},[653],{"type":64,"value":654},"\"Move lead 789 to stage 456 in pipeline 123 and update the price to $75,000\"",{"type":59,"tag":66,"props":656,"children":657},{},[658],{"type":59,"tag":75,"props":659,"children":660},{},[661],{"type":64,"value":291},{"type":59,"tag":215,"props":663,"children":664},{},[665,670],{"type":59,"tag":107,"props":666,"children":667},{},[668],{"type":64,"value":669},"Lead ID (required)",{"type":59,"tag":107,"props":671,"children":672},{},[673,675,680,681,686,687,692,693,698,699,704,705,710,711,717,718],{"type":64,"value":674},"Any combination of: ",{"type":59,"tag":120,"props":676,"children":678},{"className":677},[],[679],{"type":64,"value":522},{"type":64,"value":172},{"type":59,"tag":120,"props":682,"children":684},{"className":683},[],[685],{"type":64,"value":533},{"type":64,"value":172},{"type":59,"tag":120,"props":688,"children":690},{"className":689},[],[691],{"type":64,"value":226},{"type":64,"value":172},{"type":59,"tag":120,"props":694,"children":696},{"className":695},[],[697],{"type":64,"value":554},{"type":64,"value":172},{"type":59,"tag":120,"props":700,"children":702},{"className":701},[],[703],{"type":64,"value":565},{"type":64,"value":172},{"type":59,"tag":120,"props":706,"children":708},{"className":707},[],[709],{"type":64,"value":587},{"type":64,"value":172},{"type":59,"tag":120,"props":712,"children":714},{"className":713},[],[715],{"type":64,"value":716},"tags_to_delete",{"type":64,"value":172},{"type":59,"tag":120,"props":719,"children":721},{"className":720},[],[722],{"type":64,"value":576},{"type":59,"tag":92,"props":724,"children":725},{},[],{"type":59,"tag":145,"props":727,"children":729},{"id":728},"_5-create-tasks",[730],{"type":64,"value":731},"5. Create Tasks",{"type":59,"tag":66,"props":733,"children":734},{},[735],{"type":64,"value":736},"Assign follow-up tasks linked to leads, contacts, or companies.",{"type":59,"tag":66,"props":738,"children":739},{},[740,744,745],{"type":59,"tag":75,"props":741,"children":742},{},[743],{"type":64,"value":261},{"type":64,"value":81},{"type":59,"tag":120,"props":746,"children":748},{"className":747},[],[749],{"type":64,"value":750},"KOMMO_CREATE_TASK",{"type":59,"tag":66,"props":752,"children":753},{},[754],{"type":59,"tag":75,"props":755,"children":756},{},[757],{"type":64,"value":186},{"type":59,"tag":188,"props":759,"children":760},{},[761],{"type":59,"tag":66,"props":762,"children":763},{},[764],{"type":64,"value":765},"\"Create a follow-up call task for lead 789 due tomorrow assigned to user 42\"",{"type":59,"tag":66,"props":767,"children":768},{},[769],{"type":59,"tag":75,"props":770,"children":771},{},[772],{"type":64,"value":291},{"type":59,"tag":215,"props":774,"children":775},{},[776,781,786,791,796],{"type":59,"tag":107,"props":777,"children":778},{},[779],{"type":64,"value":780},"Task text\u002Fdescription",{"type":59,"tag":107,"props":782,"children":783},{},[784],{"type":64,"value":785},"Entity type and ID (lead, contact, company)",{"type":59,"tag":107,"props":787,"children":788},{},[789],{"type":64,"value":790},"Responsible user ID",{"type":59,"tag":107,"props":792,"children":793},{},[794],{"type":64,"value":795},"Due date (Unix timestamp)",{"type":59,"tag":107,"props":797,"children":798},{},[799],{"type":64,"value":800},"Task type",{"type":59,"tag":92,"props":802,"children":803},{},[],{"type":59,"tag":145,"props":805,"children":807},{"id":806},"_6-discover-custom-fields",[808],{"type":64,"value":809},"6. Discover Custom Fields",{"type":59,"tag":66,"props":811,"children":812},{},[813],{"type":64,"value":814},"List all custom fields for leads, contacts, or companies to understand your CRM schema.",{"type":59,"tag":66,"props":816,"children":817},{},[818,822,823],{"type":59,"tag":75,"props":819,"children":820},{},[821],{"type":64,"value":261},{"type":64,"value":81},{"type":59,"tag":120,"props":824,"children":826},{"className":825},[],[827],{"type":64,"value":828},"KOMMO_LIST_CUSTOM_FIELDS",{"type":59,"tag":66,"props":830,"children":831},{},[832],{"type":59,"tag":75,"props":833,"children":834},{},[835],{"type":64,"value":186},{"type":59,"tag":188,"props":837,"children":838},{},[839],{"type":59,"tag":66,"props":840,"children":841},{},[842],{"type":64,"value":843},"\"What custom fields are available for leads in Kommo?\"",{"type":59,"tag":66,"props":845,"children":846},{},[847],{"type":59,"tag":75,"props":848,"children":849},{},[850],{"type":64,"value":291},{"type":59,"tag":215,"props":852,"children":853},{},[854],{"type":59,"tag":107,"props":855,"children":856},{},[857],{"type":64,"value":858},"Entity type (leads, contacts, companies)",{"type":59,"tag":92,"props":860,"children":861},{},[],{"type":59,"tag":96,"props":863,"children":865},{"id":864},"known-pitfalls",[866],{"type":64,"value":867},"Known Pitfalls",{"type":59,"tag":215,"props":869,"children":870},{},[871,908,945,969,986,1015],{"type":59,"tag":107,"props":872,"children":873},{},[874,879,881,886,887,892,893,898,900,906],{"type":59,"tag":75,"props":875,"children":876},{},[877],{"type":64,"value":878},"Date filters use Unix timestamps",{"type":64,"value":880},": All date range filters (",{"type":59,"tag":120,"props":882,"children":884},{"className":883},[],[885],{"type":64,"value":375},{"type":64,"value":172},{"type":59,"tag":120,"props":888,"children":890},{"className":889},[],[891],{"type":64,"value":392},{"type":64,"value":172},{"type":59,"tag":120,"props":894,"children":896},{"className":895},[],[897],{"type":64,"value":403},{"type":64,"value":899},") require Unix timestamp format in ",{"type":59,"tag":120,"props":901,"children":903},{"className":902},[],[904],{"type":64,"value":905},"{\"from\": \u003Ctimestamp>, \"to\": \u003Ctimestamp>}",{"type":64,"value":907}," structure, not ISO8601 strings.",{"type":59,"tag":107,"props":909,"children":910},{},[911,916,918,923,925,930,932,937,938,943],{"type":59,"tag":75,"props":912,"children":913},{},[914],{"type":64,"value":915},"Pipeline and stage IDs are required",{"type":64,"value":917},": To filter leads by status, you need both ",{"type":59,"tag":120,"props":919,"children":921},{"className":920},[],[922],{"type":64,"value":226},{"type":64,"value":924}," and ",{"type":59,"tag":120,"props":926,"children":928},{"className":927},[],[929],{"type":64,"value":554},{"type":64,"value":931},". Always call ",{"type":59,"tag":120,"props":933,"children":935},{"className":934},[],[936],{"type":64,"value":170},{"type":64,"value":924},{"type":59,"tag":120,"props":939,"children":941},{"className":940},[],[942],{"type":64,"value":178},{"type":64,"value":944}," first to discover valid IDs.",{"type":59,"tag":107,"props":946,"children":947},{},[948,953,955,960,962,967],{"type":59,"tag":75,"props":949,"children":950},{},[951],{"type":64,"value":952},"Max 250 leads per page",{"type":64,"value":954},": The ",{"type":59,"tag":120,"props":956,"children":958},{"className":957},[],[959],{"type":64,"value":436},{"type":64,"value":961}," parameter caps at 250. For large datasets, implement pagination using the ",{"type":59,"tag":120,"props":963,"children":965},{"className":964},[],[966],{"type":64,"value":447},{"type":64,"value":968}," parameter.",{"type":59,"tag":107,"props":970,"children":971},{},[972,977,979,984],{"type":59,"tag":75,"props":973,"children":974},{},[975],{"type":64,"value":976},"Custom field values format",{"type":64,"value":978},": Custom fields use a specific nested object format. Use ",{"type":59,"tag":120,"props":980,"children":982},{"className":981},[],[983],{"type":64,"value":828},{"type":64,"value":985}," to discover field IDs and expected value formats before setting values.",{"type":59,"tag":107,"props":987,"children":988},{},[989,994,995,1000,1002,1007,1008,1013],{"type":59,"tag":75,"props":990,"children":991},{},[992],{"type":64,"value":993},"Status filter requires both IDs",{"type":64,"value":954},{"type":59,"tag":120,"props":996,"children":998},{"className":997},[],[999],{"type":64,"value":325},{"type":64,"value":1001}," parameter requires both ",{"type":59,"tag":120,"props":1003,"children":1005},{"className":1004},[],[1006],{"type":64,"value":226},{"type":64,"value":924},{"type":59,"tag":120,"props":1009,"children":1011},{"className":1010},[],[1012],{"type":64,"value":554},{"type":64,"value":1014}," as a combined object -- you cannot filter by status alone.",{"type":59,"tag":107,"props":1016,"children":1017},{},[1018,1023,1025,1030,1032,1038],{"type":59,"tag":75,"props":1019,"children":1020},{},[1021],{"type":64,"value":1022},"Created_by 0 means robot",{"type":64,"value":1024},": When setting ",{"type":59,"tag":120,"props":1026,"children":1028},{"className":1027},[],[1029],{"type":64,"value":598},{"type":64,"value":1031}," or ",{"type":59,"tag":120,"props":1033,"children":1035},{"className":1034},[],[1036],{"type":64,"value":1037},"updated_by",{"type":64,"value":1039}," to 0, the action is attributed to a robot\u002Fautomation, not a human user.",{"type":59,"tag":92,"props":1041,"children":1042},{},[],{"type":59,"tag":96,"props":1044,"children":1046},{"id":1045},"quick-reference",[1047],{"type":64,"value":1048},"Quick Reference",{"type":59,"tag":1050,"props":1051,"children":1052},"table",{},[1053,1077],{"type":59,"tag":1054,"props":1055,"children":1056},"thead",{},[1057],{"type":59,"tag":1058,"props":1059,"children":1060},"tr",{},[1061,1067,1072],{"type":59,"tag":1062,"props":1063,"children":1064},"th",{},[1065],{"type":64,"value":1066},"Action",{"type":59,"tag":1062,"props":1068,"children":1069},{},[1070],{"type":64,"value":1071},"Tool Slug",{"type":59,"tag":1062,"props":1073,"children":1074},{},[1075],{"type":64,"value":1076},"Required Params",{"type":59,"tag":1078,"props":1079,"children":1080},"tbody",{},[1081,1103,1127,1148,1172,1193,1214],{"type":59,"tag":1058,"props":1082,"children":1083},{},[1084,1090,1098],{"type":59,"tag":1085,"props":1086,"children":1087},"td",{},[1088],{"type":64,"value":1089},"List pipelines",{"type":59,"tag":1085,"props":1091,"children":1092},{},[1093],{"type":59,"tag":120,"props":1094,"children":1096},{"className":1095},[],[1097],{"type":64,"value":170},{"type":59,"tag":1085,"props":1099,"children":1100},{},[1101],{"type":64,"value":1102},"None",{"type":59,"tag":1058,"props":1104,"children":1105},{},[1106,1111,1119],{"type":59,"tag":1085,"props":1107,"children":1108},{},[1109],{"type":64,"value":1110},"List pipeline stages",{"type":59,"tag":1085,"props":1112,"children":1113},{},[1114],{"type":59,"tag":120,"props":1115,"children":1117},{"className":1116},[],[1118],{"type":64,"value":178},{"type":59,"tag":1085,"props":1120,"children":1121},{},[1122],{"type":59,"tag":120,"props":1123,"children":1125},{"className":1124},[],[1126],{"type":64,"value":226},{"type":59,"tag":1058,"props":1128,"children":1129},{},[1130,1135,1143],{"type":59,"tag":1085,"props":1131,"children":1132},{},[1133],{"type":64,"value":1134},"List leads",{"type":59,"tag":1085,"props":1136,"children":1137},{},[1138],{"type":59,"tag":120,"props":1139,"children":1141},{"className":1140},[],[1142],{"type":64,"value":268},{"type":59,"tag":1085,"props":1144,"children":1145},{},[1146],{"type":64,"value":1147},"None (optional filters)",{"type":59,"tag":1058,"props":1149,"children":1150},{},[1151,1156,1164],{"type":59,"tag":1085,"props":1152,"children":1153},{},[1154],{"type":64,"value":1155},"Create lead",{"type":59,"tag":1085,"props":1157,"children":1158},{},[1159],{"type":59,"tag":120,"props":1160,"children":1162},{"className":1161},[],[1163],{"type":64,"value":488},{"type":59,"tag":1085,"props":1165,"children":1166},{},[1167],{"type":59,"tag":120,"props":1168,"children":1170},{"className":1169},[],[1171],{"type":64,"value":522},{"type":59,"tag":1058,"props":1173,"children":1174},{},[1175,1180,1188],{"type":59,"tag":1085,"props":1176,"children":1177},{},[1178],{"type":64,"value":1179},"Update lead",{"type":59,"tag":1085,"props":1181,"children":1182},{},[1183],{"type":59,"tag":120,"props":1184,"children":1186},{"className":1185},[],[1187],{"type":64,"value":639},{"type":59,"tag":1085,"props":1189,"children":1190},{},[1191],{"type":64,"value":1192},"Lead ID",{"type":59,"tag":1058,"props":1194,"children":1195},{},[1196,1201,1209],{"type":59,"tag":1085,"props":1197,"children":1198},{},[1199],{"type":64,"value":1200},"Create task",{"type":59,"tag":1085,"props":1202,"children":1203},{},[1204],{"type":59,"tag":120,"props":1205,"children":1207},{"className":1206},[],[1208],{"type":64,"value":750},{"type":59,"tag":1085,"props":1210,"children":1211},{},[1212],{"type":64,"value":1213},"Task details",{"type":59,"tag":1058,"props":1215,"children":1216},{},[1217,1222,1230],{"type":59,"tag":1085,"props":1218,"children":1219},{},[1220],{"type":64,"value":1221},"List custom fields",{"type":59,"tag":1085,"props":1223,"children":1224},{},[1225],{"type":59,"tag":120,"props":1226,"children":1228},{"className":1227},[],[1229],{"type":64,"value":828},{"type":59,"tag":1085,"props":1231,"children":1232},{},[1233],{"type":64,"value":1234},"Entity type",{"type":59,"tag":92,"props":1236,"children":1237},{},[],{"type":59,"tag":66,"props":1239,"children":1240},{},[1241],{"type":59,"tag":1242,"props":1243,"children":1244},"em",{},[1245,1247],{"type":64,"value":1246},"Powered by ",{"type":59,"tag":83,"props":1248,"children":1251},{"href":1249,"rel":1250},"https:\u002F\u002Fcomposio.dev",[87],[1252],{"type":64,"value":10},{"items":1254,"total":1337},[1255,1270,1286,1295,1305,1317,1326],{"slug":1256,"name":1257,"fn":1258,"description":1259,"org":1260,"tags":1261,"stars":25,"repoUrl":26,"updatedAt":1269},"21risk-automation","-21risk-automation","automate 21risk compliance and safety tasks","Automate 21risk tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1262,1263,1264,1266],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":1265,"slug":40,"type":15},"MCP",{"name":1267,"slug":1268,"type":15},"Risk Assessment","risk-assessment","2026-07-15T05:54:18.790529",{"slug":1271,"name":1272,"fn":1273,"description":1274,"org":1275,"tags":1276,"stars":25,"repoUrl":26,"updatedAt":1285},"2chat-automation","-2chat-automation","automate 2chat messaging tasks","Automate 2chat tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1277,1278,1281,1282],{"name":17,"slug":18,"type":15},{"name":1279,"slug":1280,"type":15},"Communications","communications",{"name":1265,"slug":40,"type":15},{"name":1283,"slug":1284,"type":15},"Messaging","messaging","2026-07-15T05:51:27.190332",{"slug":1287,"name":1287,"fn":1288,"description":1289,"org":1290,"tags":1291,"stars":25,"repoUrl":26,"updatedAt":1294},"ably-automation","automate Ably tasks with Composio","Automate Ably tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1292,1293],{"name":17,"slug":18,"type":15},{"name":1265,"slug":40,"type":15},"2026-07-12T08:09:55.453088",{"slug":1296,"name":1296,"fn":1297,"description":1298,"org":1299,"tags":1300,"stars":25,"repoUrl":26,"updatedAt":1304},"abstract-automation","automate Abstract tasks via Composio","Automate Abstract tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1301,1302,1303],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":1265,"slug":40,"type":15},"2026-07-15T05:45:16.470309",{"slug":1306,"name":1306,"fn":1307,"description":1308,"org":1309,"tags":1310,"stars":25,"repoUrl":26,"updatedAt":1316},"abuselpdb-automation","automate Abuselpdb tasks via Composio","Automate Abuselpdb tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1311,1312,1313],{"name":17,"slug":18,"type":15},{"name":1265,"slug":40,"type":15},{"name":1314,"slug":1315,"type":15},"Security","security","2026-07-15T05:56:20.013366",{"slug":1318,"name":1318,"fn":1319,"description":1320,"org":1321,"tags":1322,"stars":25,"repoUrl":26,"updatedAt":1325},"abyssale-automation","automate Abyssale tasks via Composio","Automate Abyssale tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1323,1324],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},"2026-07-15T05:54:50.762889",{"slug":1327,"name":1327,"fn":1328,"description":1329,"org":1330,"tags":1331,"stars":25,"repoUrl":26,"updatedAt":1336},"accelo-automation","automate Accelo tasks via Composio","Automate Accelo tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1332,1333,1334,1335],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":20,"slug":21,"type":15},{"name":1265,"slug":40,"type":15},"2026-07-15T05:48:43.429136",860,{"items":1339,"total":1443},[1340,1347,1354,1359,1365,1371,1376,1383,1397,1410,1423,1433],{"slug":1256,"name":1257,"fn":1258,"description":1259,"org":1341,"tags":1342,"stars":25,"repoUrl":26,"updatedAt":1269},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1343,1344,1345,1346],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":1265,"slug":40,"type":15},{"name":1267,"slug":1268,"type":15},{"slug":1271,"name":1272,"fn":1273,"description":1274,"org":1348,"tags":1349,"stars":25,"repoUrl":26,"updatedAt":1285},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1350,1351,1352,1353],{"name":17,"slug":18,"type":15},{"name":1279,"slug":1280,"type":15},{"name":1265,"slug":40,"type":15},{"name":1283,"slug":1284,"type":15},{"slug":1287,"name":1287,"fn":1288,"description":1289,"org":1355,"tags":1356,"stars":25,"repoUrl":26,"updatedAt":1294},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1357,1358],{"name":17,"slug":18,"type":15},{"name":1265,"slug":40,"type":15},{"slug":1296,"name":1296,"fn":1297,"description":1298,"org":1360,"tags":1361,"stars":25,"repoUrl":26,"updatedAt":1304},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1362,1363,1364],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":1265,"slug":40,"type":15},{"slug":1306,"name":1306,"fn":1307,"description":1308,"org":1366,"tags":1367,"stars":25,"repoUrl":26,"updatedAt":1316},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1368,1369,1370],{"name":17,"slug":18,"type":15},{"name":1265,"slug":40,"type":15},{"name":1314,"slug":1315,"type":15},{"slug":1318,"name":1318,"fn":1319,"description":1320,"org":1372,"tags":1373,"stars":25,"repoUrl":26,"updatedAt":1325},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1374,1375],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"slug":1327,"name":1327,"fn":1328,"description":1329,"org":1377,"tags":1378,"stars":25,"repoUrl":26,"updatedAt":1336},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1379,1380,1381,1382],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":20,"slug":21,"type":15},{"name":1265,"slug":40,"type":15},{"slug":1384,"name":1384,"fn":1385,"description":1386,"org":1387,"tags":1388,"stars":25,"repoUrl":26,"updatedAt":1396},"accredible-certificates-automation","automate Accredible certificate management","Automate Accredible Certificates tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1389,1390,1393],{"name":17,"slug":18,"type":15},{"name":1391,"slug":1392,"type":15},"Documents","documents",{"name":1394,"slug":1395,"type":15},"E-Signature","e-signature","2026-07-15T05:55:33.159639",{"slug":1398,"name":1398,"fn":1399,"description":1400,"org":1401,"tags":1402,"stars":25,"repoUrl":26,"updatedAt":1409},"acculynx-automation","automate Acculynx construction management tasks","Automate Acculynx tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1403,1404,1405,1406],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":1265,"slug":40,"type":15},{"name":1407,"slug":1408,"type":15},"Operations","operations","2026-07-15T05:58:48.059284",{"slug":1411,"name":1411,"fn":1412,"description":1413,"org":1414,"tags":1415,"stars":25,"repoUrl":26,"updatedAt":1422},"active-campaign-automation","automate ActiveCampaign marketing and CRM tasks","Automate ActiveCampaign tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1416,1417,1418,1419],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":20,"slug":21,"type":15},{"name":1420,"slug":1421,"type":15},"Email Marketing","email-marketing","2026-07-15T05:49:44.281711",{"slug":1424,"name":1424,"fn":1425,"description":1426,"org":1427,"tags":1428,"stars":25,"repoUrl":26,"updatedAt":1432},"addresszen-automation","automate Addresszen address validation","Automate Addresszen tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1429,1430,1431],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":1265,"slug":40,"type":15},"2026-07-15T05:47:51.742515",{"slug":1434,"name":1434,"fn":1435,"description":1436,"org":1437,"tags":1438,"stars":25,"repoUrl":26,"updatedAt":1442},"adobe-automation","automate Adobe tasks via Composio","Automate Adobe tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1439,1440,1441],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":1265,"slug":40,"type":15},"2026-07-15T05:45:05.303254",863]