HubSpot CRM MCP Server
Provides tools for managing HubSpot CRM objects including contacts, companies, deals, pipelines, and associations, enabling AI assistants to perform CRUD operations and search within HubSpot.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@HubSpot CRM MCP ServerCreate a new contact named Jane Smith with email jane@example.com"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
HubSpot CRM MCP Server
A Model Context Protocol (MCP) server that provides AI assistants with full access to HubSpot CRM. Manage contacts, companies, deals, pipelines, and associations directly from Claude, Cursor, or any MCP-compatible client.
Features
Contact Management - Create, read, update, search, and list contacts
Company Management - Create, read, and search companies
Deal Management - Create, read, update, and list deals with pipeline tracking
Pipeline Access - Retrieve deal pipelines and stage configurations
Object Associations - Link contacts to companies, deals to contacts, etc.
Built-in Rate Limiting - Automatic throttling (100 req/10s) with 429 retry
Cursor-based Pagination - Efficient data retrieval for large datasets
Related MCP server: HubSpot MCP Server
Available Tools (14)
Tool | Description |
| Create a new contact |
| Get contact by ID or email |
| Update contact properties |
| Search contacts with filters |
| List contacts with pagination |
| Create a new company |
| Get company by ID |
| Search companies by name/domain |
| Create a new deal |
| Get deal by ID |
| Update deal properties |
| List deals with pagination |
| Get all deal pipelines and stages |
| Associate CRM objects together |
Quick Start
npx @cloud9-labs/mcp-hubspotPrerequisites
Node.js >= 20.0.0
HubSpot account with a Private App access token
Required HubSpot Scopes
Your Private App needs these scopes:
crm.objects.contacts.read/crm.objects.contacts.writecrm.objects.companies.read/crm.objects.companies.writecrm.objects.deals.read/crm.objects.deals.write
Installation
Via npm (Recommended)
npm install @cloud9-labs/mcp-hubspotFrom Source
git clone https://github.com/cloud9-labs/mcp-hubspot.git
cd mcp-hubspot
npm install
npm run buildConfiguration
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"hubspot": {
"command": "npx",
"args": ["-y", "@cloud9-labs/mcp-hubspot"],
"env": {
"HUBSPOT_ACCESS_TOKEN": "your-access-token-here"
}
}
}
}Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"hubspot": {
"command": "npx",
"args": ["-y", "@cloud9-labs/mcp-hubspot"],
"env": {
"HUBSPOT_ACCESS_TOKEN": "your-access-token-here"
}
}
}
}Usage Examples
Once connected, you can ask your AI assistant:
"Create a contact for John Smith at john@example.com"
"Search for all contacts at Acme Corp"
"Create a deal called 'Enterprise License' for $50,000"
"Show me all deal pipelines and their stages"
"Associate contact 123 with company 456"
"List the last 20 deals in our pipeline"
Search Filters
The hubspot_search_contacts tool supports advanced filtering:
Operators: EQ, NEQ, LT, LTE, GT, GTE, BETWEEN, IN, NOT_IN,
HAS_PROPERTY, NOT_HAS_PROPERTY, CONTAINS_TOKEN, NOT_CONTAINS_TOKENExample: Search contacts where lifecycle stage equals "lead":
{
"query": "",
"filters": [
{
"propertyName": "lifecyclestage",
"operator": "EQ",
"value": "lead"
}
]
}Building an AI Sales Automation System?
This MCP server is part of an open-source toolkit for AI-powered sales automation. We're building MCP servers that connect your entire sales stack — CRM, email, scheduling, lead scoring, and more.
Follow our progress and get updates:
X (Twitter): @cloud9_ai_labs
GitHub: cloud9-labs
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cloud9-labs/mcp-hubspot'
If you have feedback or need assistance with the MCP directory API, please join our Discord server