Hubspot

live CRMSaaS

HubSpot MCP Pack

7 tools
0ms auth
free tier 50 calls/day

Tools

hs_list_contacts

List contacts from HubSpot CRM. Supports pagination via limit and after cursor.

No parameters required.

Try it
hs_get_contact

Get a single HubSpot contact by ID.

No parameters required.

Try it
hs_search_contacts

Search HubSpot contacts by query string. Matches against name, email, and other default searchable properties.

No parameters required.

Try it
hs_list_companies

List companies from HubSpot CRM. Supports pagination via limit and after cursor.

No parameters required.

Try it
hs_get_company

Get a single HubSpot company by ID.

No parameters required.

Try it
hs_list_deals

List deals from HubSpot CRM. Supports pagination via limit and after cursor.

No parameters required.

Try it
hs_get_deal

Get a single HubSpot deal by ID.

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/hubspot/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/hubspot/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"hs_list_contacts","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("hs_list_contacts", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("hubspot mcp pack");

Related packs

Other Pipeworx packs in the same categories (CRM, SaaS):