hs_get_contact

Pack: hubspot · Endpoint: https://gateway.pipeworx.io/hubspot/mcp

Fetch a contact’s full profile by ID. Returns name, email, phone, company, and all custom properties.

Parameters

NameTypeRequiredDescription
idstringyesHubSpot contact ID

Example call

Arguments

{
  "id": "12345"
}

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_contact","arguments":{"id":"12345"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('hs_get_contact', {
  "id": "12345"
});

Response shape

FieldTypeDescription
idstringContact ID
propertiesobjectContact properties (name, email, phone, company, custom fields)
createdAtstringCreation timestamp
updatedAtstringLast update timestamp
archivedbooleanWhether contact is archived
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Contact ID"
    },
    "properties": {
      "type": "object",
      "description": "Contact properties (name, email, phone, company, custom fields)"
    },
    "createdAt": {
      "type": "string",
      "description": "Creation timestamp"
    },
    "updatedAt": {
      "type": "string",
      "description": "Last update timestamp"
    },
    "archived": {
      "type": "boolean",
      "description": "Whether contact 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