@iamsamuelfraga/mcp-hubspot
A comprehensive MCP server providing Claude with enterprise-grade access to HubSpot CRM, including contacts, deals, quotes, workflows, and automation through 37 tools.
README
@iamsamuelfraga/mcp-hubspot
The most complete HubSpot MCP server for Claude.
A Model Context Protocol (MCP) server that gives Claude comprehensive, enterprise-grade access to HubSpot CRM — covering contacts, deals, quotes, workflows, automation callbacks, and more, all through 37 battle-tested tools.
Features
- 37 Tools Across 6 Domains — complete coverage of the HubSpot CRM API surface
- Workflow Automation v4 BETA — create, update, monitor, and delete automation workflows
- Contact Enrollment — enroll and unenroll any CRM object in a workflow
- CRM Object CRUD — full create/read/update/archive for contacts, companies, deals, tickets, quotes, line_items, notes, calls, emails, meetings, and tasks
- Batch Operations — up to 100 objects per call for efficient bulk reads and writes
- Smart Search — filter groups, multiple operators, multi-field sorting, and cursor pagination
- Deal & Quote Assembly — merge duplicate deals, assemble quotes from existing deals
- Association Management — link any two CRM objects with typed association labels
- Custom Properties — discover, read, and create property definitions for any object type
- Rate Limiting + Retry Logic — automatic backoff to protect your HubSpot API quota
- MCP Resources — three static reference resources (scope guide, object type catalog, conventions)
- MCP Prompts — five guided workflows to orchestrate multi-step CRM operations
- Toolset Filtering — enable only the domains you need via
HUBSPOT_TOOLSETS - Full TypeScript — strict types, Zod validation, and comprehensive TSDoc
Tool Categories
| Domain | Tools | Description |
|---|---|---|
| CRM | 11 | Generic CRUD and batch for all object types (contacts, companies, deals, tickets, quotes, line_items, and engagement types) |
| Sales | 2 | Deal merging and quote assembly |
| Associations | 5 | Create, archive, list, and batch-create object associations |
| Properties | 3 | List, get, and create custom property definitions |
| Workflows v4 BETA | 9 | Create, update, delete, and monitor automation workflows |
| Automation | 2 | Complete delayed workflow callbacks (single and batch) |
| Enrollment | 5 | Enroll/unenroll objects in workflows; v3 legacy reads |
Installation
Global install
npm install -g @iamsamuelfraga/mcp-hubspot
Via npx (no install needed)
npx @iamsamuelfraga/mcp-hubspot
Configuration
Prerequisites
You need a HubSpot Private App to obtain an access token:
- Log in to HubSpot and go to Settings → Integrations → Private Apps
- Click Create a Private App
- Give it a name and select the required scopes (see table below)
- Click Create app and copy the generated access token (
pat-na1-...)
Claude Desktop Setup
Add the server to your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Linux: ~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"hubspot": {
"command": "npx",
"args": ["-y", "@iamsamuelfraga/mcp-hubspot"],
"env": {
"HUBSPOT_ACCESS_TOKEN": "pat-na1-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
}
}
}
}
Environment Variables
| Variable | Required | Default | Description |
|---|---|---|---|
HUBSPOT_ACCESS_TOKEN |
Yes | — | HubSpot Private App access token (pat-na1-...) |
HUBSPOT_TOOLSETS |
No | all | Comma-separated domains to enable: sales,engagements,associations,properties,workflows,automation |
LOG_LEVEL |
No | info |
Logging level: debug, info, warn, error |
Required Scopes
Grant only the scopes your use-case needs:
| Toolset | Required Scopes |
|---|---|
sales |
crm.objects.contacts.read, crm.objects.contacts.write, crm.objects.deals.read, crm.objects.deals.write, crm.objects.quotes.read, crm.objects.quotes.write |
engagements |
crm.objects.contacts.read, crm.objects.contacts.write, crm.objects.engagements.read, crm.objects.engagements.write |
associations |
crm.objects.contacts.read, crm.objects.contacts.write |
properties |
crm.schemas.deals.read, crm.schemas.contacts.read |
workflows |
automation (requires BETA access approval from HubSpot) |
automation |
automation |
Advanced Configuration Examples
Enable only sales and properties toolsets:
{
"mcpServers": {
"hubspot": {
"command": "npx",
"args": ["-y", "@iamsamuelfraga/mcp-hubspot"],
"env": {
"HUBSPOT_ACCESS_TOKEN": "pat-na1-...",
"HUBSPOT_TOOLSETS": "sales,properties"
}
}
}
}
Enable debug logging for troubleshooting:
{
"env": {
"HUBSPOT_ACCESS_TOKEN": "pat-na1-...",
"LOG_LEVEL": "debug"
}
}
Usage Examples
Create a deal and attach products
"Create a deal named 'Acme Corp - Enterprise Plan' closing on March 31st, add a line item for the Enterprise annual plan at $24,000, and associate it with the contact john.doe@acme.com."
Claude will:
- Search for the contact by email using
hubspot_crm_search - Create the deal with
hubspot_crm_create(objectType: deals) - Create the line item with
hubspot_crm_create(objectType: lineItems) - Link them with
hubspot_associations_create - Associate the contact with
hubspot_associations_create
Find all deals closing this month above $10k
"Search for all open deals with a close date in the current month and amount greater than $10,000. Sort by amount descending."
Claude will:
- Use
hubspot_crm_searchwith filterGroups combiningclosedateBETWEEN andamountGT operators - Set sorts to
[{ propertyName: "amount", direction: "DESCENDING" }] - Paginate through results using the
aftercursor if there are more than one page
Enroll a contact who just filled a form in the onboarding workflow
"The contact with ID 98765 just submitted the trial sign-up form. Enroll them in the onboarding workflow."
Claude will:
- Use
hubspot_workflows_listto find the onboarding workflow (filtering by objectTypeId for contacts) - Verify the contact exists with
hubspot_crm_get - Enroll with
hubspot_enrollment_enroll - Confirm enrollment with
hubspot_enrollment_get_enrollments
Workflows v4 BETA
The workflows toolset uses HubSpot's Workflows v4 API, which is currently in BETA:
- Breaking changes may occur without notice
- Access requires explicit approval from HubSpot — contact HubSpot support if you receive 403 errors
- The following tools are included in the
workflowstoolset:hubspot_workflows_list,hubspot_workflows_get,hubspot_workflows_create,hubspot_workflows_update,hubspot_workflows_delete,hubspot_workflows_batch_read,hubspot_workflows_email_campaigns,hubspot_workflows_performance,hubspot_workflows_id_mappings
For stable, read-only access to existing workflows, use the legacy v3 tools included in the automation toolset:
hubspot_workflows_v3_list— list all workflowshubspot_workflows_v3_get— get a specific workflow by ID
Known Limitations
- Search latency: Records created or updated via the API may take 1–5 minutes to appear in
hubspot_crm_searchresults due to HubSpot's indexing pipeline - Batch cap: All
hubspot_crm_batch_*tools enforce a hard limit of 100 objects per call; split larger sets across multiple calls - Workflows v4 API: Subject to breaking changes while in BETA; HubSpot support approval required for access
- Quote assembly:
hubspot_quotes_assemblerequires the deal to have at least one associated line item; the call will fail otherwise
MCP Resources
Three static reference resources are available to LLM clients:
| URI | Name | Description |
|---|---|---|
hubspot://scopes-guide |
HubSpot Private App Scopes Guide | Required OAuth scopes per toolset/domain |
hubspot://crm-object-types |
CRM Object Types Catalog | Supported objectType values and key properties |
hubspot://conventions |
HubSpot MCP Usage Conventions | Rate limits, batch caps, search latency, pagination |
MCP Prompts
Five guided workflow prompts help orchestrate multi-step operations:
| Prompt | Description |
|---|---|
create-deal-with-line-items |
Create a Deal and attach Line Items from HubSpot Products |
assemble-quote |
Assemble a HubSpot Quote from an existing Deal |
log-engagement-and-associate |
Log a CRM engagement (call, email, or meeting) and associate it with contacts/deals |
enroll-contact-in-workflow |
Enroll a contact (or other object) in a HubSpot Workflow |
search-crm-records |
Search CRM records with filters, sort, and pagination |
Contributing
See CONTRIBUTING.md for development setup, code style guidelines, testing requirements, and how to add new tools.
Security
See SECURITY.md for the vulnerability reporting policy and security best practices.
License
MIT — Copyright (c) 2025 Samuel Fraga
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。