pipedrive_get_deal
Pack: pipedrive · Endpoint: https://gateway.pipeworx.io/pipedrive/mcp
Get complete details for a specific deal (by ID). Returns title, value, stage, probability, owner, associated contacts, and timeline.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | Pipedrive API token |
id | number | yes | Deal ID |
Example call
Arguments
{
"_apiKey": "your-pipedrive-api-key",
"id": 1
}
curl
curl -X POST https://gateway.pipeworx.io/pipedrive/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"pipedrive_get_deal","arguments":{"_apiKey":"your-pipedrive-api-key","id":1}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('pipedrive_get_deal', {
"_apiKey": "your-pipedrive-api-key",
"id": 1
});
Response shape
| Field | Type | Description |
|---|---|---|
success | boolean | Whether the request succeeded |
data | object | Deal details |
Full JSON Schema
{
"type": "object",
"properties": {
"success": {
"type": "boolean",
"description": "Whether the request succeeded"
},
"data": {
"type": "object",
"description": "Deal details",
"properties": {
"id": {
"type": "number",
"description": "Deal ID"
},
"title": {
"type": "string",
"description": "Deal title"
},
"value": {
"type": "number",
"description": "Deal value"
},
"stage_id": {
"type": "number",
"description": "Pipeline stage ID"
},
"status": {
"type": "string",
"description": "Deal status"
},
"probability": {
"type": "number",
"description": "Win probability percentage"
},
"owner_id": {
"type": "number",
"description": "Deal owner ID"
},
"person_id": {
"type": "number",
"description": "Associated contact ID"
},
"organization_id": {
"type": "number",
"description": "Associated organization ID"
},
"add_time": {
"type": "string",
"description": "Creation timestamp"
},
"update_time": {
"type": "string",
"description": "Last update timestamp"
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"pipedrive": {
"url": "https://gateway.pipeworx.io/pipedrive/mcp"
}
}
}
See Getting Started for client-specific install steps.