# Does HubSpot have an MCP server?

**Yes — Official.** HubSpot maintains an official MCP server.

## Facts

- Verdict: Official (Yes)
- Access: Remote server — Hosted by the vendor — no install, connect over HTTP with OAuth or a token.
- Endpoint: `https://mcp.hubspot.com`
- Package: [`@hubspot/mcp-server`](https://www.npmjs.com/package/@hubspot/mcp-server) on npm
- Category: [Marketing](https://mcpyet.com/category/marketing/)
- Verified against vendor docs: 2026-08-10
- GitHub data refreshed: 2026-08-11 (re-checked every 6 hours)

## The receipts

- **Vendor-hosted (remote):** `https://mcp.hubspot.com` — a remote server run by HubSpot itself, nothing to install. Documented at <https://developers.hubspot.com/mcp>.
- **Official package:** [`@hubspot/mcp-server`](https://www.npmjs.com/package/@hubspot/mcp-server) on npm. The package page carries the exact launch arguments and required credentials.

## How to connect it

Hosted by the vendor — no install, connect over HTTP with OAuth or a token.

### Claude Code

```sh
claude mcp add --transport http hubspot https://mcp.hubspot.com
```

Add `--scope user` to make it available in every project.

### Claude Desktop

1. Open **Settings → Connectors**
2. Click **Add custom connector**
3. Paste `https://mcp.hubspot.com`
4. Finish the sign-in prompt, then enable it in the chat's tools menu

### Cursor

Add to `.cursor/mcp.json` in your project, or `~/.cursor/mcp.json` for every project:

```json
{
  "mcpServers": {
    "hubspot": {
      "url": "https://mcp.hubspot.com"
    }
  }
}
```

### VS Code

Add to `.vscode/mcp.json`, then pick the server from Copilot's agent-mode tools menu:

```json
{
  "servers": {
    "hubspot": {
      "type": "http",
      "url": "https://mcp.hubspot.com"
    }
  }
}
```

### ChatGPT

1. Enable **Developer mode** under Settings → Apps & Connectors → Advanced
2. Choose **Create** and paste `https://mcp.hubspot.com`
3. Complete sign-in, then enable the connector in a new chat

## How we know

Official remote CRM MCP server at mcp.hubspot.com (OAuth/PKCE) documented at developers.hubspot.com/mcp; local Developer MCP server GA since 2026-02-19; @hubspot/mcp-server on npm. Seed said COMMUNITY-ONLY.

- GitHub data refreshed 2026-08-11, then every 6 hours.
- Vendor docs verified on 2026-08-10.
- Corrections: hello@mcpyet.com.

## Also in Marketing

- [Metricool](https://mcpyet.com/mcp/metricool.md) — Official (Yes)
- [ManyChat](https://mcpyet.com/mcp/manychat.md) — Community only (Sort of)
- [Google Ads](https://mcpyet.com/mcp/google-ads.md) — Official (Yes)
- [Instantly](https://mcpyet.com/mcp/instantly.md) — Official (Yes)
- [AIOProductOS Inc.](https://mcpyet.com/mcp/aioproductos.md) — Official (Yes)
- [SEOcrawl AI](https://mcpyet.com/mcp/seocrawl.md) — Official (Yes)

---

Source: https://mcpyet.com/mcp/hubspot/ — data refreshed 2026-08-11
