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
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | HubSpot 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
| Field | Type | Description |
|---|---|---|
id | string | Contact ID |
properties | object | Contact properties (name, email, phone, company, custom fields) |
createdAt | string | Creation timestamp |
updatedAt | string | Last update timestamp |
archived | boolean | Whether 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.