HubSpot MCP Server
Productivitystdiohttp-streamingv1.1.0
Official HubSpot MCP server connecting AI tools to the HubSpot CRM. Enables agents to read and manage contacts, companies, deals, and tickets, search the CRM, and create engagements such as notes and tasks. Honors HubSpot scopes and rate limits via OAuth.
Connect
Add this configuration to .claude/mcp.json
Transport:
{
"mcpServers": {
"hubspot": {
"command": "npx",
"args": [
"-y",
"@hubspot/mcp-server"
],
"env": {
"HUBSPOT_ACCESS_TOKEN": "<YOUR_HUBSPOT_ACCESS_TOKEN>"
}
}
}
}Tools (3)
search_crm
Search CRM objects (contacts, companies, deals, tickets) by query and filters.
{
"type": "object",
"required": [
"object_type",
"query"
],
"properties": {
"query": {
"type": "string",
"description": "Search text"
},
"object_type": {
"type": "string",
"description": "CRM object type (contacts, companies, deals, tickets)"
}
}
}create_contact
Create a new contact with the given properties.
{
"type": "object",
"required": [
"email"
],
"properties": {
"email": {
"type": "string",
"description": "Contact email address"
},
"lastname": {
"type": "string",
"description": "Last name"
},
"firstname": {
"type": "string",
"description": "First name"
},
"properties": {
"type": "object",
"description": "Additional contact properties"
}
}
}update_deal
Update properties or stage on an existing deal.
{
"type": "object",
"required": [
"deal_id"
],
"properties": {
"stage": {
"type": "string",
"description": "Pipeline stage to move the deal to"
},
"amount": {
"type": "number",
"description": "Deal amount"
},
"deal_id": {
"type": "string",
"description": "Deal record ID"
}
}
}Resources
This server does not expose any resources.
Prompts
This server does not expose any prompts.
Server Information
- Author
- HubSpot (@HubSpot)
- License
- MIT
- Version
- 1.1.0
- Stars
- 690
- Last Updated
- June 19, 2026