Install guide and config at curatedmcp.com
HubSpot MCP: Connect Your AI Agent Directly to HubSpot's CRM, Marketing, and Service Tools
The HubSpot MCP server is the official bridge between AI agents (Claude, Cursor, Windsurf) and HubSpot's CRM ecosystem. Instead of manually switching between your AI tool and HubSpot's UI, your agent can now read and write directly to contacts, deals, tickets, and campaigns. It's built for teams that want automation without leaving their development environment or AI chat.
What It Does
HubSpot MCP unlocks a set of capabilities that turn your AI agent into a CRM operator:
- Contact & company management — create, update, and query customer records programmatically
- Deal and pipeline automation — move deals through stages, update revenue forecasts, track sales metrics
- Support ticket handling — create tickets, manage workflows, escalate issues
- Marketing analytics — query email performance, campaign metrics, and list engagement
- Sales intelligence — access pipeline reports, revenue data, and task generation
Think of it as giving Claude or your Cursor agent read-write access to your entire customer data layer. You can ask your agent to "pull all deals closing this quarter and generate a summary," or "create a support ticket from this customer issue and assign it to the right team."
How to Install
Install via npm:
npx -y @hubspot/mcp
Then configure it in your Claude Desktop config file:
{
"mcpServers": {
"hubspot-mcp": {
"command": "npx -y @hubspot/mcp",
"env": {
"HUBSPOT_API_KEY": "your-hubspot-private-app-token"
}
}
}
}
You'll need a HubSpot private app token from your account settings. Full setup docs here.
Real-World Use Cases
- Sales workflow automation — Ask Claude to "find all deals stuck in negotiation for >30 days, then draft follow-up emails and create reminder tasks for each owner"
- Customer support triage — Have your agent auto-create tickets from Slack messages, categorize them by urgency, and route them to the right queue
- Marketing reporting — Generate weekly email performance summaries by querying campaign metrics, then post results to a Slack channel via a separate integration
Full install guides for Claude Desktop, Cursor, Windsurf, and more at CuratedMCP.
Top comments (0)