HubSpot MCP Server
Integrates with HubSpot CRM APIs via the Model Context Protocol, enabling management of contacts, companies, deals, tickets, notes, engagements, workflows, and more through natural language.
README
HubSpot MCP Server
A Model Context Protocol (MCP) server that provides seamless integration with HubSpot's CRM APIs. This server enables Claude Desktop and other MCP clients to manage HubSpot resources and execute CRM operations directly through natural language.
87+ comprehensive tools covering the complete HubSpot CRM workflow including Contacts, Companies, Deals, Tickets, Notes, Engagements (Calls, Emails, Meetings, Tasks), Workflows, Associations, Owners, Pipelines, and Properties management.
Usage
Use with any MCP-compatible client like Claude/Cursor/VS Code. Add the following configuration to your MCP settings:
{
"mcpServers": {
"hubspot": {
"command": "npx",
"args": ["-y", "hubspot-mcp-tools"],
"env": {
"HUBSPOT_ACCESS_TOKEN": "your_access_token_here"
}
}
}
}
Replace your_access_token_here with your HubSpot private app access token.
Available Tools
Contacts API (9 tools)
- hubspot_create_contact - Create a new contact in HubSpot
- hubspot_get_contact - Get a contact by ID from HubSpot
- hubspot_list_contacts - List contacts with pagination
- hubspot_search_contacts - Search contacts by email, name, or other properties with advanced filtering
- hubspot_update_contact - Update contact properties
- hubspot_delete_contact - Archive (soft delete) a contact
- hubspot_batch_create_contacts - Create multiple contacts at once (max 100)
- hubspot_batch_update_contacts - Update multiple contacts at once (max 100)
Companies API (9 tools)
- hubspot_create_company - Create a new company in HubSpot
- hubspot_get_company - Get a company by ID from HubSpot
- hubspot_list_companies - List companies with pagination
- hubspot_search_companies - Search companies by name, domain, or other properties with advanced filtering
- hubspot_update_company - Update company properties
- hubspot_delete_company - Archive (soft delete) a company
- hubspot_batch_create_companies - Create multiple companies at once (max 100)
- hubspot_batch_update_companies - Update multiple companies at once (max 100)
Deals API (9 tools)
- hubspot_create_deal - Create a new deal in HubSpot (use
hubspot_get_pipelinesfor available pipelines/stages) - hubspot_get_deal - Get a deal by ID from HubSpot
- hubspot_list_deals - List deals with pagination
- hubspot_search_deals - Search deals by name, stage, amount, or other properties with advanced filtering
- hubspot_update_deal - Update deal properties
- hubspot_delete_deal - Archive (soft delete) a deal
- hubspot_batch_create_deals - Create multiple deals at once (max 100)
- hubspot_batch_update_deals - Update multiple deals at once (max 100)
Tickets API (9 tools)
- hubspot_create_ticket - Create a new ticket in HubSpot (use
hubspot_get_pipelinesfor available pipelines/stages) - hubspot_get_ticket - Get a ticket by ID from HubSpot
- hubspot_list_tickets - List tickets with pagination
- hubspot_search_tickets - Search tickets by subject, status, or other properties with advanced filtering
- hubspot_update_ticket - Update ticket properties
- hubspot_delete_ticket - Archive (soft delete) a ticket
- hubspot_batch_create_tickets - Create multiple tickets at once (max 100)
- hubspot_batch_update_tickets - Update multiple tickets at once (max 100)
Notes API (7 tools)
- hubspot_create_note - Create a note and optionally associate with a HubSpot object
- hubspot_get_note - Get a specific note by its ID
- hubspot_get_object_notes - Get notes associated with a HubSpot object
- hubspot_list_notes - List all notes with pagination
- hubspot_update_note - Update note content or properties
- hubspot_delete_note - Archive (soft delete) a note
- hubspot_search_notes - Search notes by content or properties
Calls API (6 tools)
- hubspot_create_call - Log a call engagement with direction, status, duration, and optional CRM association
- hubspot_get_call - Get a specific call by its ID
- hubspot_list_calls - List all calls with pagination
- hubspot_update_call - Update call properties
- hubspot_delete_call - Archive (soft delete) a call
- hubspot_search_calls - Search calls by properties or full-text query
Emails API (6 tools)
- hubspot_create_email - Log an email engagement (sent, received, forwarded) with optional CRM association
- hubspot_get_email_engagement - Get a specific email engagement by its ID
- hubspot_list_email_engagements - List all email engagements with pagination
- hubspot_update_email_engagement - Update email engagement properties
- hubspot_delete_email_engagement - Archive (soft delete) an email engagement
- hubspot_search_email_engagements - Search email engagements
Meetings API (6 tools)
- hubspot_create_meeting - Log a meeting with title, agenda, start/end times, outcome, and optional CRM association
- hubspot_get_meeting - Get a specific meeting by its ID
- hubspot_list_meetings - List all meetings with pagination
- hubspot_update_meeting - Update meeting properties
- hubspot_delete_meeting - Archive (soft delete) a meeting
- hubspot_search_meetings - Search meetings by properties or full-text query
Tasks API (6 tools)
- hubspot_create_task - Create a task with subject, priority, type, due date, and optional CRM association
- hubspot_get_task - Get a specific task by its ID
- hubspot_list_tasks - List all tasks with pagination
- hubspot_update_task - Update task properties or mark as completed
- hubspot_delete_task - Archive (soft delete) a task
- hubspot_search_tasks - Search tasks by status, priority, or other properties
Workflows API (5 tools)
- hubspot_list_workflows - List all automation workflows in HubSpot
- hubspot_get_workflow - Get details of a specific workflow by ID
- hubspot_enroll_contact_in_workflow - Enroll a contact (by email) into a workflow
- hubspot_unenroll_contact_from_workflow - Unenroll a contact from a workflow
- hubspot_get_workflow_enrollments - Get contacts currently enrolled in a workflow
Associations API (5 tools)
- hubspot_get_association_types - Get all available association types between two object types
- hubspot_create_association - Create an association between two HubSpot objects
- hubspot_get_associations - Get all associations for a HubSpot object
- hubspot_delete_association - Remove an association between two objects
- hubspot_batch_create_associations - Create multiple associations at once
Owners API (2 tools)
- hubspot_list_owners - List all HubSpot owners (users) in the account
- hubspot_get_owner - Get detailed information about a specific owner
Pipelines API (4 tools)
- hubspot_get_pipelines - Get all pipelines for deals or tickets
- hubspot_get_pipeline - Get detailed pipeline information including stages
- hubspot_get_pipeline_stages - Get all stages for a specific pipeline
- hubspot_get_pipeline_stage - Get detailed information about a specific stage
Properties API (3 tools)
- hubspot_get_properties - Get all available properties for a HubSpot object type
- hubspot_get_property - Get detailed property information including options and validation
- hubspot_get_property_groups - Get all property groups for a HubSpot object type
Development
Local Setup
-
Prerequisite:
- Node.js v18+
- pnpm v9+
-
Clone the repository:
git clone https://github.com/adeel0x01/hubspot-mcp-tools.git
cd hubspot-mcp-tools
- Install dependencies:
pnpm install
- Build the project:
pnpm run build
Testing
pnpm run inspector # Opens MCP Inspector
Error Handling
The server provides detailed error messages for common issues:
- Missing API Key: Clear instructions on how to set the HUBSPOT_ACCESS_TOKEN
- HubSpot API Errors: Includes status code, message, and request details for debugging
- Validation Errors: Helpful messages for invalid parameters or missing required fields
All errors are logged to stderr (safe for stdio transport) and returned to the client in a structured format.
Important Notes
Security Considerations
- Never commit your
.envfile or expose your HubSpot access token - The access token is passed via environment variables for security
- Use HubSpot private apps with minimal required scopes
HubSpot Access Token
To use this server, you need a HubSpot private app access token with the following scopes:
Required Scopes:
crm.objects.contacts.readandcrm.objects.contacts.writecrm.objects.companies.readandcrm.objects.companies.writecrm.objects.deals.readandcrm.objects.deals.writetickets(read and write)crm.objects.owners.readcrm.schemas.contacts.readcrm.schemas.companies.readcrm.schemas.deals.readcrm.objects.notes.readandcrm.objects.notes.writecrm.objects.calls.readandcrm.objects.calls.writecrm.objects.emails.readandcrm.objects.emails.writecrm.objects.meetings.readandcrm.objects.meetings.writecrm.objects.tasks.readandcrm.objects.tasks.writeautomation(read and write, for workflow management)
Create a private app:
- Go to HubSpot Settings > Integrations > Private Apps
- Click "Create a private app"
- Add the required scopes listed above
- Generate the access token
- Copy the token and use it as
HUBSPOT_ACCESS_TOKEN
Private Apps Documentation: https://developers.hubspot.com/docs/api/private-apps
Rate Limits
This server respects HubSpot's API rate limits:
- Professional/Enterprise: 100 requests per 10 seconds
- Batch operations can process up to 100 records at once
Contributing
Contributions are welcome! Please feel free to submit issues or pull requests.
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.