Pipedrive MCP Server

Connect Claude, ChatGPT and Cursor to your Pipedrive CRM with no code

Pipedrive

Pipedrive MCP Server: Official CRM AI Connector (2026)

Pipedrive shipped an official MCP server in 2026 linking Claude and Cursor to CRM data via OAuth. Open source servers add 155 tools for deals and contacts free.

Pipedrive MCP Server connects AI agents directly to your Pipedrive CRM. The official version, launched June 30, 2026, uses OAuth and needs no setup, free on any paid plan. Open source alternatives like the 155-tool ckalima server run locally via an API token for teams that want full control over deals, contacts and pipeline automation.

Pipedrive MCP Server is the official Model Context Protocol connector Pipedrive launched on June 30, 2026 at mcp.pipedrive.ai. It uses OAuth 2.0, so agents like Claude, ChatGPT and Cursor read and write deals, contacts and pipelines with no API key or code. It is free on every Pipedrive plan, starting at $14 per seat monthly. Open source community servers add over 150 more tools.

Maker: Pipedrive · Protocol: MCP · Auth: oauth

Compatible agents: Claude Desktop, Claude Code, Claude for Cowork, ChatGPT / OpenAI Agents SDK, Cursor, Windsurf, any MCP-compatible client

Required runtime: None for the official hosted server (OAuth only), Node.js 18+ for community STDIO servers, Docker optional for containerized community deployments

About Pipedrive MCP Server

Pipedrive MCP Server is the connector that lets an AI agent read and act on your Pipedrive CRM data instead of a human copying it by hand. Pipedrive, the CRM company founded in Tallinn, Estonia in 2010 and now used by more than 100,000 companies in 179 countries, launched its own official Model Context Protocol server on June 30, 2026, at mcp.pipedrive.ai. Alongside it, a set of open source community servers built on the same Pipedrive REST API already existed, the largest exposing over 300 individual tools. The official server is a hosted remote MCP endpoint reachable over HTTP, not a program you install. An agent connects to https://mcp.pipedrive.ai/mcp, the user authorizes access through a standard OAuth 2.0 popup, and every action the agent takes afterward is logged in Pipedrive's own change log and respects that user's existing role and visibility permissions. There is no API key to copy or rotate. Community servers work differently: they run as a local Node.js or Python process launched with a single command, authenticate with a personal Pipedrive API token set as an environment variable, and expose their tools over STDIO to any MCP-compatible client. Both flavors are usable from Claude Desktop, Claude Code, Claude for Cowork, ChatGPT's Agents SDK, Cursor and Windsurf, since all of them speak the same MCP protocol. The best-documented open source option, ckalima's pipedrive-mcp-server, exposes 155 tools across deals, persons, organizations, activities, leads, notes, products and pipelines, is contract-tested against Pipedrive's own OpenAPI spec with more than 1,700 tests, and gates destructive actions like delete behind an explicit flag. This makes it a solid fit for sales teams that want an agent to draft follow-up notes, move deals through stages, or summarize a pipeline without a human clicking through Pipedrive's UI for each task. The official server is free with any Pipedrive plan, which runs from Essential at $14 per seat per month to Enterprise at $79 per seat per month. The MIT-licensed community servers cost nothing beyond a Pipedrive account and API token. Pipedrive's own API enforces a daily token budget (30,000 base tokens times a plan multiplier times seat count) and burst limits of 20 to 120 requests per 2 seconds depending on plan, so heavy agent use shares the same quota as human API consumers. The official connector is still labeled Beta as of its June 2026 launch and its exact tool list is not publicly documented, unlike the transparent, versioned schemas the community servers publish on GitHub. Pipedrive's API is also mid-migration from v1 to v2, with v1 endpoints scheduled to sunset July 31, 2026, so any server still relying purely on v1 will need an update soon after.

Key Features

Use Cases

Install

Official (recommended): add connector URL https://mcp.pipedrive.ai/mcp in your MCP client and authorize via OAuth. Open source alternative: npx -y @ckalima/pipedrive-mcp-server

Requirements

Actions

List Deals

Returns a paginated list of deals, optionally filtered by stage, owner or status.

npx -y @ckalima/pipedrive-mcp-server
# then call tool: pipedrive_list_deals { "status": "open", "limit": 25 }

Create Deal

Creates a new deal in a pipeline stage.

pipedrive_create_deal { "title": "Acme Corp - Annual Plan", "value": 12000, "currency": "USD", "person_id": 42 }

Update Deal

Updates fields on an existing deal, such as moving it to a new stage.

pipedrive_update_deal { "id": 501, "stage_id": 3, "value": 15000 }

Search Deals

Full-text search across deal titles and notes.

pipedrive_search_deals { "term": "Acme renewal" }

Delete Deal

Permanently deletes a deal. Disabled by default and requires an explicit confirmation string.

pipedrive_delete_deal { "id": 501, "confirm": "DELETE" }

List Persons

Returns a paginated list of contact records (people).

pipedrive_list_persons { "limit": 50 }

Create Person

Creates a new contact record.

pipedrive_create_person { "name": "Jane Lee", "email": "jane@acme.com", "org_id": 88 }

List Organizations

Returns companies/organizations stored in the CRM.

pipedrive_list_organizations { "limit": 25 }

Create Activity

Schedules a task, call or meeting linked to a deal or contact.

pipedrive_create_activity { "subject": "Follow-up call", "type": "call", "deal_id": 501, "due_date": "2026-07-10" }

Create Note

Adds a note to a deal, person or organization.

pipedrive_create_note { "content": "Customer wants a Q3 renewal quote.", "deal_id": 501 }

List Leads

Returns leads that have not yet been converted into deals.

pipedrive_list_leads { "limit": 25 }

Convert Lead to Deal

Promotes a qualified lead into an active deal in the pipeline.

pipedrive_convert_lead_to_deal { "lead_id": 217, "pipeline_id": 1 }

List Pipelines

Returns all sales pipelines and their stages configured in the account.

pipedrive_list_pipelines {}

Get Current User

Returns the identity and permissions of the account the agent is authenticated as.

pipedrive_get_current_user {}

How to Invoke

The official server exposes CRM actions as MCP tools over a hosted HTTP/SSE endpoint (mcp.pipedrive.ai/mcp) that any MCP client calls by tool name once OAuth is authorized. Open source servers (e.g. ckalima/pipedrive-mcp-server) run locally via npx and expose the same style of tools (pipedrive_list_deals, pipedrive_create_person, etc.) over STDIO.

Pricing

The official MCP server is included free with any Pipedrive CRM plan: Essential $14/seat/mo, Advanced, Professional, Power, up to Enterprise $79/seat/mo. Open source community servers (MIT license, e.g. ckalima/pipedrive-mcp-server, comma-compliance/pipedrive-mcp, @nubiia/mcp-pipedrive) are free to self-host and only require a Pipedrive account and API token.

Strengths

Weaknesses

Frequently Asked Questions

What is Pipedrive MCP Server and what does it do?

Pipedrive MCP Server is a Model Context Protocol connector that lets an AI agent read and update your Pipedrive CRM data directly. Pipedrive, the CRM founded in Tallinn, Estonia in 2010 and used by more than 100,000 companies, launched its own official version on June 30, 2026 at mcp.pipedrive.ai. It exposes CRM objects like deals, contacts, organizations, activities and leads as callable tools an agent can list, create, update, search and sometimes delete. Open source community servers built on the same Pipedrive REST API existed before the official launch and remain available, with the largest exposing over 300 tools. In practice this means you can ask Claude or ChatGPT to summarize your pipeline, log a call, or move a deal to a new stage without opening the Pipedrive interface yourself.

How do I install and set up Pipedrive MCP Server?

For the official server, no installation is required: in Claude, go to Customize, then Connectors, then Add custom connector, name it Pipedrive MCP BETA, and paste the connection URL https://mcp.pipedrive.ai/mcp, then authorize through the OAuth popup with your Pipedrive login. For open source servers such as ckalima/pipedrive-mcp-server, you need Node.js 18 or newer and run npx -y @ckalima/pipedrive-mcp-server after setting PIPEDRIVE_API_TOKEN and PIPEDRIVE_COMPANY_DOMAIN as environment variables. The API token comes from your Pipedrive account under Settings, then Personal preferences, then API. Both routes require an active paid Pipedrive plan, since the CRM itself is the data source. After setup, most MCP clients need a restart to detect the new tools.

Which agents and LLMs support Pipedrive MCP Server?

Because it speaks the open Model Context Protocol, Pipedrive MCP Server works with any MCP-compatible client. Confirmed support includes Claude Desktop, Claude Code and Claude for Cowork, OpenAI's ChatGPT and Agents SDK, Cursor, and Windsurf. Third-party platforms like Zapier, n8n, Pipedream and Activepieces also expose hosted Pipedrive MCP endpoints so agents built on those platforms can reach the same CRM data without running a local server. The official connector uses HTTP with OAuth, while open source community servers typically run over STDIO, so which one fits depends on whether your agent runs locally or in the cloud. Any agent framework that can register an MCP tool server, including custom LangChain or LlamaIndex agents, can integrate it as well.

How much does Pipedrive MCP Server cost?

The official MCP server has no separate fee: it is bundled free with any paid Pipedrive CRM plan, which ranges from Essential at $14 per seat per month up to Enterprise at $79 per seat per month, billed annually. There is no Pipedrive free tier, so you need at least the Essential plan to use the connector at all. Open source community servers like ckalima/pipedrive-mcp-server, comma-compliance/pipedrive-mcp and Nubiia's mcp-pipedrive are released under the MIT license and cost nothing to run beyond your existing Pipedrive subscription and an API token. A small number of niche community servers, such as one built on the CData connector or a non-commercial GarethWright build, carry their own separate license fees or usage restrictions. For most teams the real cost is simply the Pipedrive seat price, not the MCP layer itself.

Is Pipedrive MCP Server open source?

The official Pipedrive-maintained MCP server is proprietary and hosted; Pipedrive has not published its source code or its full tool schema. However, several community-built alternatives are fully open source under the MIT license, including ckalima/pipedrive-mcp-server with 155 tools and over 1,700 contract tests, comma-compliance/pipedrive-mcp with 88 tools, and Nubiia's mcp-pipedrive with over 300 tools. These are free to inspect, fork and self-host, and each publishes its full list of exposed tools and parameters on GitHub. A separate GarethWright community build is released under a non-commercial Creative Commons license, so it cannot be used in a paid product. Anyone who wants full transparency into exactly what an agent can call should choose one of the MIT-licensed open source servers over the official beta.

What are the best alternatives to Pipedrive MCP Server?

If your team already runs on HubSpot or Salesforce, those CRMs have their own emerging MCP connectors worth checking directly with the vendor, since data cannot move between CRMs through Pipedrive's server. For teams that want a hosted, no-code option similar to Pipedrive's official connector but through an automation platform, Zapier's MCP for Pipedrive and Pipedream's hosted Pipedrive MCP both work without any local install. For teams that want maximum tool coverage and full control, Nubiia's mcp-pipedrive (307 tools) or ckalima's pipedrive-mcp-server (155 tools, contract-tested) are the strongest open source picks. Pick the official server if you want zero setup and don't need heavy customization; pick an open source server if you need more tools, want to audit the code, or need to run fully offline behind a firewall.

Who is Pipedrive MCP Server best for?

It is best for sales teams and RevOps functions already using Pipedrive who want an AI agent to handle repetitive CRM tasks: logging notes, updating deal stages, scheduling follow-up activities, or summarizing a pipeline in plain language. Developers building custom internal agents also benefit from the open source servers' fully documented tool schemas and safe-write guardrails like dry-run mode. It is a poor fit for teams not already on a paid Pipedrive plan, since there is no free tier to test against, and for teams needing a fully audited, enterprise-certified integration, since the official connector is still in Beta and its internal tool list is not published. It's also not the right tool if you need cross-CRM data movement, since it only reads and writes within Pipedrive itself.

How does Pipedrive MCP Server compare to Salesforce MCP integrations in 2026?

Pipedrive's official MCP server ships as a first-party, OAuth-only hosted connector directly from the vendor, launched June 30, 2026, with no published tool count but full permission inheritance from the logged-in user. Salesforce, as of 2026, primarily relies on third-party and community MCP servers rather than a single first-party hosted endpoint, so Salesforce users more often authenticate with an API token or connected app rather than a simple OAuth popup. Pipedrive's rate limits are token-budget based (30,000 base tokens times plan multiplier times seats), while Salesforce's API governor limits are org-wide and often stricter for smaller editions. For a small or mid-market sales team wanting the fastest path from zero to a working AI-CRM connection, Pipedrive's official server is simpler to set up; Salesforce integrations currently demand more configuration but offer deeper enterprise governance controls.

View the official Pipedrive MCP Server skill page