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

NameTypeRequiredDescription
idstringyesHubSpot 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

FieldTypeDescription
idstringDeal ID
propertiesobjectDeal properties (name, amount, stage, owner, linked contacts/companies)
createdAtstringCreation timestamp
updatedAtstringLast update timestamp
archivedbooleanWhether 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.

Regenerated from source · build May 9, 2026