productivitydeveloper-tools

HubSpot

by shinzo-labs

Seamlessly manage your HubSpot CRM system: query, create, and update records through natural language with full HubSpot

Integrates with HubSpot CRM API for managing companies, contacts, deals, and other CRM objects through natural language, enabling sales teams to query, create, and update records without leaving their assistant interface.

github stars

30

Complete HubSpot CRM API coverageBatch operations supportAdvanced association management

best for

  • / Sales teams managing CRM data
  • / Customer service reps accessing contact information
  • / Marketing teams querying lead data
  • / CRM administrators updating records

capabilities

  • / Query HubSpot companies, contacts, and deals
  • / Create new CRM records
  • / Update existing CRM objects
  • / Manage associations between CRM entities
  • / Perform batch operations on CRM data
  • / Search and filter CRM records

what it does

Connects to HubSpot CRM API to manage companies, contacts, deals, and other CRM objects through natural language commands. Lets sales teams query and update CRM data without switching applications.

about

HubSpot is a community-built MCP server published by shinzo-labs that provides AI assistants with tools and capabilities via the Model Context Protocol. Seamlessly manage your HubSpot CRM system: query, create, and update records through natural language with full HubSpot It is categorized under productivity, developer tools.

how to install

You can install HubSpot in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.

license

MIT

HubSpot is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.

readme

HubSpot MCP Server

NPM Version Stars Forks Smithery Calls NPM Downloads

A [Model Context Protocol (MCP)](https://modelcontextprotocol.io/introduction) server implementation for the [HubSpot](https://hubspot.com/) API, providing a standardized interface for accessing and managing CRM data.

## Features - Complete coverage of the HubSpot CRM API - Support for all standard CRM objects (companies, contacts, deals, etc.) - Advanced association management with CRM Associations v4 - Company-specific endpoints with property validation - Batch operations for efficient data management - Advanced search and filtering capabilities - Type-safe parameter validation with [Zod](https://zod.dev/) ## Prerequisites If you don't have an API key, follow the steps [here](https://developers.hubspot.com/docs/guides/api/overview) to obtain an access token. OAuth support is planned as a future enhancement. ## Client Configuration There are several options to configure your MCP client with the server. For hosted/remote server setup, use Smithery's CLI with a [Smithery API Key](https://smithery.ai/docs/registry#registry-api). For local installation, use `npx` or build from source. Each of these options is explained below. ### Smithery Remote Server (Recommended) To add a remote server to your MCP client `config.json`, run the following command from [Smithery CLI](https://github.com/smithery-ai/cli?tab=readme-ov-file#smithery-cli--): ```bash npx -y @smithery/cli install @shinzo-labs/hubspot-mcp ``` Enter your `HUBSPOT_ACCESS_TOKEN` when prompted. ### Smithery SDK If you are developing your own agent application, you can use the boilerplate code [here](https://smithery.ai/server/@shinzo-labs/hubspot-mcp/api). ### NPX Local Install To install the server locally with `npx`, add the following to your MCP client `config.json`: ```javascript { "mcpServers": { "hubspot": { "command": "npx", "args": [ "@shinzolabs/hubspot-mcp" ], "env": { "HUBSPOT_ACCESS_TOKEN": "your-access-token-here" } } } } ``` ### Build from Source 1. Download the repo: ```bash git clone https://github.com/shinzo-labs/hubspot-mcp.git ``` 2. Install packages (inside cloned repo): ```bash pnpm i ``` 3. Add the following to your MCP client `config.json`: ```javascript { "mcpServers": { "hubspot": { "command": "node", "args": [ "/path/to/hubspot-mcp/index.js" ], "env": { "HUBSPOT_ACCESS_TOKEN": "your-access-token-here" } } } } ``` ## Config Variables | Variable | Description | Required? | Default | |------------------------|-------------------------------------------|-----------|---------| | `HUBSPOT_ACCESS_TOKEN` | Access Token for Hubspot Application | Yes | | | `PORT ` | Port for Streamable HTTP transport method | No | `3000` | | `TELEMETRY_ENABLED` | Enable telemetry | No | `true` | ## Supported Tools ### Core CRM Objects - `crm_list_objects`: List CRM objects with optional filtering and pagination - `crm_get_object`: Get a single CRM object by ID - `crm_create_object`: Create a new CRM object - `crm_update_object`: Update an existing CRM object - `crm_archive_object`: Archive (delete) a CRM object - `crm_search_objects`: Search CRM objects using advanced filters - `crm_batch_create_objects`: Create multiple objects in a single request - `crm_batch_read_objects`: Read multipl objects in a single request - `crm_batch_update_objects`: Update multiple objects in a single request - `crm_batch_archive_objects`: Archive (delete) multiple objects in a single request ### Companies - `crm_create_company`: Create a new company with validated properties - `crm_update_company`: Update an existing company - `crm_get_company`: Get a single company by ID - `crm_search_companies`: Search companies with specific filters - `crm_batch_create_companies`: Create multiple companies in a single request - `crm_batch_update_companies`: Update multiple companies in a single request - `crm_get_company_properties`: Get all available company properties - `crm_create_company_property`: Create a new company property ### Contacts - `crm_create_contact`: Create a new contact with validated properties - `crm_update_contact`: Update an existing contact's information - `crm_get_contact`: Get a single contact by ID - `crm_search_contacts`: Search contacts with specific filters - `crm_batch_create_contacts`: Create multiple contacts in a single request - `crm_batch_update_contacts`: Update multiple contacts in a single request - `crm_get_contact_properties`: Get all available contact properties - `crm_create_contact_property`: Create a new contact property ### Leads - `crm_create_lead`: Create a new lead with validated properties - `crm_update_lead`: Update an existing lead's information - `crm_get_lead`: Get a single lead by ID - `crm_search_leads`: Search leads with specific filters - `crm_batch_create_leads`: Create multiple leads in a single request - `crm_batch_update_leads`: Update multiple leads in a single request - `crm_get_lead_properties`: Get all available lead properties - `crm_create_lead_property`: Create a new lead property ### Engagement Management - `engagement_details_get`: Get details of a specific engagement - `engagement_details_create`: Create a new engagement - `engagement_details_update`: Update an existing engagement - `engagement_details_archive`: Archive (delete) an engagement - `engagement_details_list`: List all engagements with filtering - `engagement_details_get_associated`: Get associated engagements ### Calls - `calls_create`: Create a new call record - `calls_get`: Get call details - `calls_update`: Update a call record - `calls_archive`: Archive a call - `calls_list`: List all calls - `calls_search`: Search calls - `calls_batch_create`: Create multiple calls - `calls_batch_read`: Read multiple calls - `calls_batch_update`: Update multiple calls - `calls_batch_archive`: Archive multiple calls ### Emails - `emails_create`: Create a new email record - `emails_get`: Get email details - `emails_update`: Update an email - `emails_archive`: Archive an email - `emails_list`: List all emails - `emails_search`: Search emails - `emails_batch_create`: Create multiple emails - `emails_batch_read`: Read multiple emails - `emails_batch_update`: Update multiple emails - `emails_batch_archive`: Archive multiple emails ### Meetings - `meetings_create`: Create a new meeting - `meetings_get`: Get meeting details - `meetings_update`: Update a meeting - `meetings_archive`: Archive (delete) a meeting - `meetings_list`: List all meetings - `meetings_search`: Search meetings - `meetings_batch_create`: Create multiple meetings - `meetings_batch_update`: Update multiple meetings - `meetings_batch_archive`: Archive multiple meetings ### Notes - `notes_create`: Create a new note - `notes_get`: Get note details - `notes_update`: Update a note - `notes_archive`: Archive a note - `notes_list`: List all notes - `notes_search`: Search notes - `notes_batch_create`: Create multiple notes - `notes_batch_read`: Read multiple notes - `notes_batch_update`: Update multiple notes - `notes_batch_archive`: Archive multiple notes ### Tasks - `tasks_create`: Create a new task - `tasks_get`: Get task details - `tasks_update`: Update a task - `tasks_archive`: Archive a task - `tasks_list`: List all tasks - `tasks_search`: Search tasks - `tasks_batch_create`: Create multiple tasks - `tasks_batch_read`: Read multiple tasks - `tasks_batch_update`: Update multiple tasks - `tasks_batch_archive`: Archive multiple tasks ### Associations and Relationships - `crm_list_association_types`: List available association types - `crm_get_associations`: Get all associations between objects - `crm_create_association`: Create an association - `crm_archive_association`: Archive (delete) an association - `crm_batch_create_associations`: Create multiple associations - `crm_batch_archive_associations`: Archive (delete) multiple associations ### Communication Preferences - `communications_get_preferences`: Get contact preferences - `communications_update_preferences`: Update contact preferences - `communications_unsubscribe_contact`: Global unsubscribe - `communications_subscribe_contact`: Global subscribe - `communications_get_subscription_definitions`: Get subscription definitions - `communications_get_subscription_status`: Get status for multiple contacts - `communications_update_subscription_status`: Update status for multiple contacts ### Products - `products_create`: Create a product with the given properties and return a copy of the object, including the ID. ---

FAQ

What is the HubSpot MCP server?
HubSpot is a Model Context Protocol (MCP) server profile on explainx.ai. MCP lets AI hosts (e.g. Claude Desktop, Cursor) call tools and resources through a standard interface; this page summarizes categories, install hints, and community ratings.
How do MCP servers relate to agent skills?
Skills are reusable instruction packages (often SKILL.md); MCP servers expose live capabilities. Teams frequently combine both—skills for workflows, MCP for APIs and data. See explainx.ai/skills and explainx.ai/mcp-servers for parallel directories.
How are reviews shown for HubSpot?
This profile displays 10 aggregated ratings (sample rows for discoverability plus signed-in user reviews). Average score is about 4.5 out of 5—verify behavior in your own environment before production use.
MCP server reviews

Ratings

4.510 reviews
  • Shikha Mishra· Oct 10, 2024

    HubSpot is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.

  • Piyush G· Sep 9, 2024

    We evaluated HubSpot against two servers with overlapping tools; this profile had the clearer scope statement.

  • Chaitanya Patil· Aug 8, 2024

    Useful MCP listing: HubSpot is the kind of server we cite when onboarding engineers to host + tool permissions.

  • Sakshi Patil· Jul 7, 2024

    HubSpot reduced integration guesswork — categories and install configs on the listing matched the upstream repo.

  • Ganesh Mohane· Jun 6, 2024

    I recommend HubSpot for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.

  • Oshnikdeep· May 5, 2024

    Strong directory entry: HubSpot surfaces stars and publisher context so we could sanity-check maintenance before adopting.

  • Dhruvi Jain· Apr 4, 2024

    HubSpot has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.

  • Rahul Santra· Mar 3, 2024

    According to our notes, HubSpot benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.

  • Pratham Ware· Feb 2, 2024

    We wired HubSpot into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.

  • Yash Thakker· Jan 1, 2024

    HubSpot is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.