hs_get_company

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

Fetch a company’s full profile by ID. Returns name, domain, industry, revenue, and all custom properties.

Parameters

NameTypeRequiredDescription
idstringyesHubSpot company ID

Example call

Arguments

{
  "id": "67890"
}

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

TypeScript (@pipeworx/sdk)

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

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

Response shape

FieldTypeDescription
idstringCompany ID
propertiesobjectCompany properties (name, domain, industry, revenue, custom fields)
createdAtstringCreation timestamp
updatedAtstringLast update timestamp
archivedbooleanWhether company is archived
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Company ID"
    },
    "properties": {
      "type": "object",
      "description": "Company properties (name, domain, industry, revenue, custom fields)"
    },
    "createdAt": {
      "type": "string",
      "description": "Creation timestamp"
    },
    "updatedAt": {
      "type": "string",
      "description": "Last update timestamp"
    },
    "archived": {
      "type": "boolean",
      "description": "Whether company 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