Tools Reference
All tools are read-only. They retrieve data from HubSpot but never create, update, or delete anything.
Contacts
List, retrieve, and search CRM contacts.
| Tool | Parameters | Description |
|---|---|---|
list_contacts | limit?: number (default: 10, max: 100), properties?: string[], after?: string | Lists contacts with optional property selection and cursor-based pagination. Default properties: firstname, lastname, email, phone, company, lifecyclestage, hs_lead_status. |
get_contact | contact_id: string, properties?: string[], associations?: string[] | Retrieves full details for a specific contact including requested properties and optional associations (linked companies, deals, tickets). |
search_contacts | query: string, properties?: string[], limit?: number (default: 10, max: 100) | Searches contacts using free-text search across default searchable properties (name, email, phone, company). |
Example prompts:
- "List our 10 most recent contacts."
- "Find all contacts at Acme Corp."
- "Show me contact 12345 with their associated companies and deals."
- "Search for contacts with the email domain @example.com."
- "List contacts and include the
jobtitleandhs_lead_statusproperties."
Deals
Track pipeline deals and revenue.
| Tool | Parameters | Description |
|---|---|---|
list_deals | limit?: number (default: 10, max: 100), properties?: string[], after?: string | Lists deals with optional property selection and cursor-based pagination. Default properties: dealname, amount, dealstage, pipeline, closedate, hs_lastmodifieddate. |
get_deal | deal_id: string, properties?: string[], associations?: string[] | Retrieves full details for a specific deal including pipeline stage, amount, close date, and optional associations (linked contacts, companies). |
Example prompts:
- "What deals are currently in the pipeline?"
- "Show me deal 67890 with associated contacts and companies."
- "List the last 20 deals and their close dates."
- "What is the total value of deals in the negotiation stage?"
Companies
Browse and inspect company records.
| Tool | Parameters | Description |
|---|---|---|
list_companies | limit?: number (default: 10, max: 100), properties?: string[], after?: string | Lists companies with optional property selection and cursor-based pagination. Default properties: name, domain, industry, city, state, phone, numberofemployees. |
get_company | company_id: string, properties?: string[], associations?: string[] | Retrieves full details for a specific company including domain, industry, and optional associations (linked contacts, deals). |
Example prompts:
- "List all companies in the technology industry."
- "Show me company 11111 with their associated contacts."
- "How many employees does company 22222 have?"
- "List companies and include the
annualrevenueproperty."
Pagination
All list tools support cursor-based pagination through the after parameter. To paginate:
- Call the list tool without
afterto get the first page - Check for
paging.next.afterin the response - Pass that value as the
afterparameter in the next call
Example:
- "List the next page of contacts using cursor
abc123."
Custom Properties
All tools accept a properties parameter to request specific CRM properties. If omitted, sensible defaults are used. To discover available properties, check your HubSpot Property Settings.
Example:
- "List contacts with properties firstname, lastname, email, and jobtitle."