KosmoKrator

sales

Capsule CRM MCP Integration for LangChain

Connect Capsule CRM to LangChain through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.

7 functions 6 read 1 write Bearer token auth

Connect Capsule CRM to LangChain

Bridge LangChain agents to local KosmoKrator integration tools through MCP or headless CLI calls.

Use the MCP gateway when the agent should discover tools, or wrap kosmo integrations:call for fixed chains. The gateway is local, scoped to this integration, and starts with --write=deny so LangChain can inspect read-capable tools without receiving write access by default.

Capsule CRM MCP Config for LangChain

Keep the gateway scoped to the integration and operation class needed by the chain.

{
  "mcpServers": {
    "kosmokrator-capsule": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=capsule",
        "--write=deny"
      ]
    }
  }
}

Run the Gateway Manually

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

Why Use KosmoKrator Here

Scoped tools

Expose only Capsule CRM instead of a broad multi-service tool list.

Local credentials

Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.

Write policy

Start read-only, then opt into ask or allow for trusted workspaces.

Capsule CRM Tools Visible to LangChain

LangChain sees stable MCP tool names generated from the Capsule CRM integration catalog.

MCP toolSource functionTypeDescription
integration__capsule__capsule_list_contacts capsule.capsule_list_contacts Read List contacts (people and organisations) from Capsule CRM. Returns paginated results with contact details.
integration__capsule__capsule_get_contact capsule.capsule_get_contact Read Retrieve a single contact (person or organisation) from Capsule CRM by ID.
integration__capsule__capsule_create_contact capsule.capsule_create_contact Write Create a new contact (person or organisation) in Capsule CRM. Provide at least a first name and last name for a person contact.
integration__capsule__capsule_list_opportunities capsule.capsule_list_opportunities Read List sales opportunities from Capsule CRM. Optionally filter by status (OPEN, WON, LOST, CLOSED). Returns paginated results.
integration__capsule__capsule_get_opportunity capsule.capsule_get_opportunity Read Retrieve a single sales opportunity from Capsule CRM by ID.
integration__capsule__capsule_list_tasks capsule.capsule_list_tasks Read List tasks from Capsule CRM. Optionally filter by status (OPEN, COMPLETED). Returns paginated results.
integration__capsule__capsule_get_current_user capsule.capsule_get_current_user Read Get the currently authenticated Capsule CRM user. Use this to verify credentials or identify the connected account.

Related Capsule CRM Pages