Home/Servers/HubSpot MCP Server

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"
        }
      }
    }
  }
}
โ† Back to all servers