Skip to content
VS Code

amocrm mcp for VS Code

io.github.theyahia/amocrm-mcp

MCP server for amoCRM API — leads, contacts, pipelines. Auth: Bearer token.

client:VS Code transport:stdio runtime:npm

Install amocrm mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "amocrm-domain",
      "description": "AMOCRM_DOMAIN",
      "password": true
    }
  ],
  "servers": {
    "amocrm-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@theyahia/amocrm-mcp"
      ],
      "env": {
        "AMOCRM_DOMAIN": "${input:amocrm-domain}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

amocrm mcp in other clients