MCP server/other

amoCRM MCP Server

MCP server for amoCRM (Kommo) API v4

★ 1cAIborg-ai/amocrm-mcp ↗by cAIborg-aiupdated
1

Add it to Claude Code

claude mcp add -e "AMO_SUBDOMAIN=${AMO_SUBDOMAIN}" -e "AMO_ACCESS_TOKEN=${AMO_ACCESS_TOKEN}" amocrm -- python -m amocrm_mcp
Required:AMO_SUBDOMAINAMO_ACCESS_TOKEN+ 3 optional
2

Make your agent remember this setup

amocrm's config, env vars, and the gotchas you hit — recalled in every future Claude Code, Cursor, and Codex session.

npx conare@latest

Free · one command · indexes the sessions already on disk. Set up in the browser instead →

What it does

  • 36 MCP tools covering leads, contacts, companies, tasks, and analytics
  • OAuth 2.0 token refresh with disk persistence
  • Automatic rate limiting with 429 backoff and jitter
  • HAL+JSON normalization for cleaner data output
  • Support for both stdio and SSE transports

Tools 5

leads_listList leads from the CRM
contacts_getRetrieve contact details
companies_createCreate a new company entry
tasks_createCreate a new task in the CRM
analytics_get_pipeline_analyticsRetrieve pipeline performance analytics

Environment Variables

AMO_SUBDOMAINrequiredYour amoCRM account subdomain
AMO_ACCESS_TOKENrequiredOAuth access token
AMO_CLIENT_IDOAuth client ID for automatic token refresh
AMO_CLIENT_SECRETOAuth client secret for automatic token refresh
AMO_REFRESH_TOKENOAuth refresh token for automatic token refresh

Try it

List all my active leads in the current pipeline.
Create a new contact for John Doe with the email [email protected].
Find the company details for 'Acme Corp' and list all associated tasks.
Get the pipeline analytics for the last 30 days.
Create a new task to follow up with the lead 'Project X' by tomorrow.
Original README from cAIborg-ai/amocrm-mcp

amoCRM MCP Server

MCP server for amoCRM (Kommo) API v4. Exposes 36 tools for leads, contacts, companies, tasks, notes, pipelines, associations, analytics, and more.

Built with FastMCP. Works with Claude Desktop, Cursor, and any MCP-compatible client.

Features

  • 36 MCP tools across 11 domains (leads, contacts, companies, tasks, notes, pipelines, associations, account, batch, unsorted, analytics)
  • OAuth 2.0 token refresh with disk persistence
  • Rate limiting — 7 req/s with automatic 429 backoff and jitter
  • HAL+JSON normalization — strips _links, flattens _embedded
  • Consistent response envelopes{data, pagination} or {error, status_code, detail}
  • stdio and SSE transports

Quick Start

1. Install

pip install -e .

2. Configure

Copy .env.example to .env and fill in your amoCRM credentials:

cp .env.example .env

You need at minimum:

  • AMO_SUBDOMAIN — your amoCRM account subdomain
  • AMO_ACCESS_TOKEN — OAuth access token

For automatic token refresh, also set:

  • AMO_CLIENT_ID, AMO_CLIENT_SECRET, AMO_REFRESH_TOKEN

3. Run

# stdio (default — for Claude Desktop, Cursor, etc.)
python -m amocrm_mcp

# SSE transport
AMO_TRANSPORT=sse AMO_PORT=8000 python -m amocrm_mcp

Claude Desktop config

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "amocrm": {
      "command": "python",
      "args": ["-m", "amocrm_mcp"],
      "env": {
        "AMO_SUBDOMAIN": "your-subdomain",
        "AMO_ACCESS_TOKEN": "your-token"
      }
    }
  }
}

Tools

Domain Tools Description
Leads leads_list, leads_get, leads_search, leads_create, leads_create_complex, leads_update Full lead lifecycle
Contacts contacts_get, contacts_search, contacts_create, contacts_update Contact management
Companies companies_get, companies_search, companies_create, companies_update Company management
Tasks tasks_list, tasks_get, tasks_create, tasks_update CRM task operations
Notes notes_list, notes_create Notes on entities
Pipelines pipelines_list, pipelines_get, pipelines_list_statuses Pipeline & status info
Associations associations_get_linked, associations_link_entities Entity relationships
Account account_get, account_list_users, account_list_custom_fields Account metadata
Batch batch_create_leads, batch_create_contacts, batch_update_leads Bulk operations
Analytics analytics_get_events, analytics_get_pipeline_analytics, +1 CRM analytics
Unsorted unsorted_list, unsorted_accept, unsorted_reject Unsorted inbox

Getting amoCRM Credentials

  1. Go to your amoCRM account → SettingsIntegrations
  2. Create a new integration (or use an existing one)
  3. Copy the access token, client ID, and client secret
  4. Your subdomain is the part before .amocrm.ru in your account URL

License

MIT

Frequently Asked Questions

What are the key features of amoCRM?

36 MCP tools covering leads, contacts, companies, tasks, and analytics. OAuth 2.0 token refresh with disk persistence. Automatic rate limiting with 429 backoff and jitter. HAL+JSON normalization for cleaner data output. Support for both stdio and SSE transports.

What can I use amoCRM for?

Automating lead management and follow-up tasks directly from Claude. Querying CRM analytics to generate performance reports. Bulk updating contact and company information via AI commands. Managing unsorted inbox items by accepting or rejecting leads.

How do I install amoCRM?

Install amoCRM by running: pip install -e .

What MCP clients work with amoCRM?

amoCRM works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Conare · memory for coding agents

Turn this server into reusable context

Keep amoCRM docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Set up free$npx conare@latest