Pipedrive
live CRMDataPipedrive MCP Pack — wraps the Pipedrive REST API v1
5 tools
0ms auth
free tier 50 calls/day
Tools
pipedrive_list_deals List deals from Pipedrive CRM.
No parameters required.
Try it
Response
pipedrive_get_deal Get a single deal by ID from Pipedrive.
No parameters required.
Try it
Response
pipedrive_list_persons List persons (contacts) from Pipedrive.
No parameters required.
Try it
Response
pipedrive_get_person Get a single person (contact) by ID from Pipedrive.
No parameters required.
Try it
Response
pipedrive_search Search across deals, persons, organizations, products, or files in Pipedrive.
No parameters required.
Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/pipedrive/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' Call a tool
bash
curl -X POST https://gateway.pipeworx.io/pipedrive/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"pipedrive_list_deals","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("pipedrive_list_deals", {}); ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("pipedrive mcp pack — wraps the pipedrive rest api v1"); Related packs
Other Pipeworx packs in the same categories (CRM, Data):