KosmoKrator

crm

Copper CRM MCP Gateway for AI Agents

Expose Copper CRM tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.

13 functions 8 read 5 write API key auth

Copper CRM MCP Gateway

Expose Copper CRM to MCP clients with `kosmokrator mcp:serve --integration=copper`.

If the client has never used KosmoKrator before, install it first, then register this integration as a stdio MCP server. The gateway exposes only the selected integration in the example below.

curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash
kosmokrator mcp:gateway:install --integration=copper --write=deny --json
{
  "mcpServers": {
    "kosmokrator-copper": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=copper",
        "--write=deny"
      ]
    }
  }
}

Serve Manually

kosmokrator mcp:serve --integration=copper --write=deny

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names:

MCP Tool Names (13 tools)
MCP toolSource functionType
integration__copper__copper_list_contacts copper.copper_list_contacts Read read
integration__copper__copper_get_contact copper.copper_get_contact Read read
integration__copper__copper_create_contact copper.copper_create_contact Write write
integration__copper__copper_update_contact copper.copper_update_contact Write write
integration__copper__copper_delete_contact copper.copper_delete_contact Write write
integration__copper__copper_list_companies copper.copper_list_companies Read read
integration__copper__copper_get_company copper.copper_get_company Read read
integration__copper__copper_create_company copper.copper_create_company Write write
integration__copper__copper_list_opportunities copper.copper_list_opportunities Read read
integration__copper__copper_get_opportunity copper.copper_get_opportunity Read read
integration__copper__copper_create_opportunity copper.copper_create_opportunity Write write
integration__copper__copper_list_pipelines copper.copper_list_pipelines Read read
integration__copper__copper_get_current_user copper.copper_get_current_user Read read

Write Access

Start with --write=deny for read-only MCP clients. Use --write=ask or --write=allow only when the client and workspace are trusted.