Manage the Pipedrive sales CRM: list and search deals, persons, and organizations, and create deals via the v1 API.
105+ deploysclaude mcp add pipedrive --url https://datafaucet.dev/api/mcp/t/pipedrive
Run this command in your terminal · most users connect in under 60s
GET endpoints
pipedrive_get_current_user
Get the authenticated user and company. Returns data with id, name, email, and company_id.
https://api.pipedrive.com/v1/users/me?api_token={api_token}
pipedrive_list_deals
List open deals. Returns data[] with id, title, value, currency, status, stage_id, and person/org.
https://api.pipedrive.com/v1/deals?status=open&limit=50&api_token={api_token}
pipedrive_search_deals
Search deals by term. Returns items[] each with a matching deal's id, title, value, and status.
https://api.pipedrive.com/v1/deals/search?term={term}&api_token={api_token}
pipedrive_list_persons
List contact persons. Returns data[] with id, name, email, phone, and org_id.
https://api.pipedrive.com/v1/persons?limit=50&api_token={api_token}
pipedrive_list_organizations
List organizations (companies). Returns data[] with id, name, and owner.
https://api.pipedrive.com/v1/organizations?limit=50&api_token={api_token}
pipedrive_get_deal
Get a single deal by id. Returns title, value, currency, status, stage, person, org, and activity summary.
https://api.pipedrive.com/v1/deals/{deal_id}?api_token={api_token}
POST endpoints
pipedrive_create_deal
Create a deal. Requires title; value and currency (e.g. USD) optional. Returns the created deal's id.
https://api.pipedrive.com/v1/deals?api_token={api_token}
Run this in your terminal:
claude mcp add pipedrive https://datafaucet.dev/api/mcp/t/pipedrive
Connect Pipedrive to your AI agent in under 60 seconds. No account required.
{notion_token}) with your real credentialsNeed API keys? Try our free sandbox templates first to see MCP in action with zero setup.
Replace these placeholders with your real values before deploying:
{api_token}API settings page{currency}Your value{deal_id}Resource identifier{term}Your value{title}Your value{value}Your valuePreview:
GET https://api.pipedrive.com/v1/users/me?api_token={api_token}claude mcp add pipedrive --url https://datafaucet.dev/api/mcp/t/pipedriveWhat your AI agent sees
I have access to 7 tools from Pipedrive: pipedrive_get_current_user, pipedrive_list_deals, pipedrive_search_deals, and 4 more.
“Get the authenticated user and company. Returns data with id, name, email, and company_id.”
Calling pipedrive_get_current_user... Done. Here are the results.
Try these prompts
“List my open deals and their total value”
Copy“Search deals for 'enterprise' and show their stages”
Copy“Create a deal 'Acme renewal' worth 12000 USD”
CopyClick any prompt to copy, then paste into your AI client.