HubSpot MCP Server
by HubSpot ยท โญ 432 stars ยท updated 3 months ago
CRM and marketing automation with HubSpot. Create and update contacts, manage deals, track pipeline stages, and run marketing operations through your AI assistant.
73
Good
Quality Score Breakdown
maintenance74/100
community72/100
documentation74/100
compatibility72/100
Use Cases
- โmanage CRM contacts
- โupdate deal pipeline
- โtrack sales
- โmarketing automation
โก One-Click Install Configs
Copy the config below and paste it into your AI client's config file.
๐ค Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"hubspot": {
"command": "npx",
"args": [
"-y",
"@hubspot/mcp-server"
],
"env": {
"HUBSPOT_ACCESS_TOKEN": "YOUR_HUBSPOT_TOKEN"
}
}
}
}โก Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"hubspot": {
"command": "npx",
"args": [
"-y",
"@hubspot/mcp-server"
],
"env": {
"HUBSPOT_ACCESS_TOKEN": "YOUR_HUBSPOT_TOKEN"
}
}
}
}๐ VS Code
.vscode/mcp.json
{
"mcp": {
"servers": {
"hubspot": {
"command": "npx",
"args": [
"-y",
"@hubspot/mcp-server"
],
"env": {
"HUBSPOT_ACCESS_TOKEN": "YOUR_HUBSPOT_TOKEN"
}
}
}
}
}