productivity
Pipedrive MCP Gateway for AI Agents
Expose Pipedrive tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.
7 functions 6 read 1 write API token auth
Pipedrive MCP Gateway
Expose Pipedrive to MCP clients with `kosmokrator mcp:serve --integration=pipedrive`.
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=pipedrive --write=deny --json {
"mcpServers": {
"kosmokrator-pipedrive": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=pipedrive",
"--write=deny"
]
}
}
} Serve Manually
kosmokrator mcp:serve --integration=pipedrive --write=deny MCP Tool Names
KosmoKrator exposes integration tools through the gateway with stable names:
| MCP tool | Source function | Type |
|---|---|---|
integration__pipedrive__pipedrive_create_deal | pipedrive.pipedrive_create_deal | Write write |
integration__pipedrive__pipedrive_get_current_user | pipedrive.pipedrive_get_current_user | Read read |
integration__pipedrive__pipedrive_get_deal | pipedrive.pipedrive_get_deal | Read read |
integration__pipedrive__pipedrive_get_person | pipedrive.pipedrive_get_person | Read read |
integration__pipedrive__pipedrive_list_deals | pipedrive.pipedrive_list_deals | Read read |
integration__pipedrive__pipedrive_list_organizations | pipedrive.pipedrive_list_organizations | Read read |
integration__pipedrive__pipedrive_list_persons | pipedrive.pipedrive_list_persons | 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.