Skip to main content

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.

ToolParametersDescription
list_contactslimit?: number (default: 10, max: 100), properties?: string[], after?: stringLists contacts with optional property selection and cursor-based pagination. Default properties: firstname, lastname, email, phone, company, lifecyclestage, hs_lead_status.
get_contactcontact_id: string, properties?: string[], associations?: string[]Retrieves full details for a specific contact including requested properties and optional associations (linked companies, deals, tickets).
search_contactsquery: 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 jobtitle and hs_lead_status properties."

Deals

Track pipeline deals and revenue.

ToolParametersDescription
list_dealslimit?: number (default: 10, max: 100), properties?: string[], after?: stringLists deals with optional property selection and cursor-based pagination. Default properties: dealname, amount, dealstage, pipeline, closedate, hs_lastmodifieddate.
get_dealdeal_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.

ToolParametersDescription
list_companieslimit?: number (default: 10, max: 100), properties?: string[], after?: stringLists companies with optional property selection and cursor-based pagination. Default properties: name, domain, industry, city, state, phone, numberofemployees.
get_companycompany_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 annualrevenue property."

Pagination

All list tools support cursor-based pagination through the after parameter. To paginate:

  1. Call the list tool without after to get the first page
  2. Check for paging.next.after in the response
  3. Pass that value as the after parameter 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."