Awesome-claude-skills Kommo Automation
Automate Kommo CRM operations -- manage leads, pipelines, pipeline stages, tasks, and custom fields -- using natural language through the Composio MCP integration.
git clone https://github.com/ComposioHQ/awesome-claude-skills
T=$(mktemp -d) && git clone --depth=1 https://github.com/ComposioHQ/awesome-claude-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/composio-skills/kommo-automation" ~/.claude/skills/composiohq-awesome-claude-skills-kommo-automation && rm -rf "$T"
composio-skills/kommo-automation/SKILL.mdKommo Automation
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.
Toolkit docs: composio.dev/toolkits/kommo
Setup
- Add the Composio MCP server to your client configuration:
https://rube.app/mcp - Connect your Kommo account when prompted (OAuth authentication).
- Start issuing natural language commands to manage your CRM.
Core Workflows
1. Navigate Pipelines and Stages
List all lead pipelines, then drill into specific pipeline stages to understand your sales funnel structure.
Tools:
KOMMO_LIST_LEADS_PIPELINES, KOMMO_LIST_PIPELINE_STAGES
Example prompt:
"Show all my Kommo pipelines and the stages in my main sales pipeline"
Key parameters for List Pipelines: None required.
Key parameters for List Stages:
(required) -- The pipeline ID to list stages forpipeline_id
-- Include stage descriptions in the response (boolean)with_description
2. List and Filter Leads
Retrieve leads with powerful filtering by pipeline, status, date ranges, responsible users, price, and more.
Tool:
KOMMO_LIST_LEADS
Example prompt:
"Show all leads in pipeline 12345 created this week, sorted by newest first"
Key parameters:
-- Free-text search across all filled fieldsquery
-- Filter by pipeline IDs (array of integers)filter_pipeline_ids
-- Filter by status within a pipeline:filter_status{"pipeline_id": 123, "status_id": 456}
-- Filter by assigned user IDsfilter_responsible_user_ids
-- Filter by lead namesfilter_names
-- Filter by deal valuefilter_price
-- Date range:filter_created_at{"from": <unix_timestamp>, "to": <unix_timestamp>}
-- Date range for last updatefilter_updated_at
-- Date range for closurefilter_closed_at
-- Sort: "asc" or "desc"order_by_created_at
-- Sort by update dateorder_by_updated_at
-- Max 250 per pagelimit
-- Page number for paginationpage
-- Additional data: "contacts", "loss_reason", "catalog_elements", "source_id"with_params
3. Create New Leads
Add new deals to your Kommo pipeline with custom fields, tags, and pipeline placement.
Tool:
KOMMO_CREATE_LEAD
Example prompt:
"Create a new lead called 'Acme Corp Deal' worth $50,000 in pipeline 12345"
Key parameters:
(required) -- Name of the lead/dealname
-- Deal value (integer)price
-- Pipeline to add the lead topipeline_id
-- Stage within the pipeline (defaults to first stage of main pipeline)status_id
-- Assigned user IDresponsible_user_id
-- Array of custom field value objectscustom_fields_values
-- Array of tags (by name or ID)tags_to_add
-- User ID of creator (0 for robot)created_by
-- Reason for loss (if applicable)loss_reason_id
4. Update Existing Leads
Modify lead properties including name, price, pipeline stage, responsible user, tags, and custom fields.
Tool:
KOMMO_UPDATE_LEAD
Example prompt:
"Move lead 789 to stage 456 in pipeline 123 and update the price to $75,000"
Key parameters:
- Lead ID (required)
- Any combination of:
,name
,price
,pipeline_id
,status_id
,responsible_user_id
,tags_to_add
,tags_to_deletecustom_fields_values
5. Create Tasks
Assign follow-up tasks linked to leads, contacts, or companies.
Tool:
KOMMO_CREATE_TASK
Example prompt:
"Create a follow-up call task for lead 789 due tomorrow assigned to user 42"
Key parameters:
- Task text/description
- Entity type and ID (lead, contact, company)
- Responsible user ID
- Due date (Unix timestamp)
- Task type
6. Discover Custom Fields
List all custom fields for leads, contacts, or companies to understand your CRM schema.
Tool:
KOMMO_LIST_CUSTOM_FIELDS
Example prompt:
"What custom fields are available for leads in Kommo?"
Key parameters:
- Entity type (leads, contacts, companies)
Known Pitfalls
- Date filters use Unix timestamps: All date range filters (
,filter_created_at
,filter_updated_at
) require Unix timestamp format infilter_closed_at
structure, not ISO8601 strings.{"from": <timestamp>, "to": <timestamp>} - Pipeline and stage IDs are required: To filter leads by status, you need both
andpipeline_id
. Always callstatus_id
andKOMMO_LIST_LEADS_PIPELINES
first to discover valid IDs.KOMMO_LIST_PIPELINE_STAGES - Max 250 leads per page: The
parameter caps at 250. For large datasets, implement pagination using thelimit
parameter.page - Custom field values format: Custom fields use a specific nested object format. Use
to discover field IDs and expected value formats before setting values.KOMMO_LIST_CUSTOM_FIELDS - Status filter requires both IDs: The
parameter requires bothfilter_status
andpipeline_id
as a combined object -- you cannot filter by status alone.status_id - Created_by 0 means robot: When setting
orcreated_by
to 0, the action is attributed to a robot/automation, not a human user.updated_by
Quick Reference
| Action | Tool Slug | Required Params |
|---|---|---|
| List pipelines | | None |
| List pipeline stages | | |
| List leads | | None (optional filters) |
| Create lead | | |
| Update lead | | Lead ID |
| Create task | | Task details |
| List custom fields | | Entity type |
Powered by Composio