hs_get_deal
Pack: hubspot · Endpoint: https://gateway.pipeworx.io/hubspot/mcp
Fetch a deal’s full details by ID. Returns deal name, amount, stage, owner, and linked contacts and companies.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | HubSpot deal ID |
Example call
Arguments
{
"id": "54321"
}
curl
curl -X POST https://gateway.pipeworx.io/hubspot/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"hs_get_deal","arguments":{"id":"54321"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('hs_get_deal', {
"id": "54321"
});
Response shape
| Field | Type | Description |
|---|---|---|
id | string | Deal ID |
properties | object | Deal properties (name, amount, stage, owner, linked contacts/companies) |
createdAt | string | Creation timestamp |
updatedAt | string | Last update timestamp |
archived | boolean | Whether deal is archived |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Deal ID"
},
"properties": {
"type": "object",
"description": "Deal properties (name, amount, stage, owner, linked contacts/companies)"
},
"createdAt": {
"type": "string",
"description": "Creation timestamp"
},
"updatedAt": {
"type": "string",
"description": "Last update timestamp"
},
"archived": {
"type": "boolean",
"description": "Whether deal is archived"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"hubspot": {
"url": "https://gateway.pipeworx.io/hubspot/mcp"
}
}
}
See Getting Started for client-specific install steps.