hubspot-mcp-server

hubspot-mcp-server

Enables interaction with HubSpot CRM through MCP, providing tools to manage contacts, companies, deals, and search/associations via natural language.

Category
Visit Server

README

hubspot-mcp-server

A Model Context Protocol (MCP) server for the HubSpot CRM API — works both locally via Claude Desktop (stdio) and remotely via claude.ai (HTTP + bearer token).


Tools

Domain Tools
Contacts hubspot_get_contact, hubspot_list_contacts, hubspot_create_contact, hubspot_update_contact, hubspot_delete_contact
Companies hubspot_get_company, hubspot_list_companies, hubspot_create_company, hubspot_update_company, hubspot_delete_company
Deals hubspot_get_deal, hubspot_list_deals, hubspot_create_deal, hubspot_update_deal, hubspot_delete_deal
Search & Assoc. hubspot_search, hubspot_associate_records, hubspot_list_associations

Setup

1. Create a HubSpot Private App

  1. Go to HubSpot → Settings → Integrations → Private Apps
  2. Click Create a private app, then under Scopes add:
    • crm.objects.contacts.read + write
    • crm.objects.companies.read + write
    • crm.objects.deals.read + write
  3. Copy the generated Access Token

2. Install & Build

npm install
npm run build

Option A — Claude Desktop (local, stdio)

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "hubspot": {
      "command": "node",
      "args": ["/absolute/path/to/hubspot-mcp-server/dist/index.js"],
      "env": {
        "HUBSPOT_ACCESS_TOKEN": "pat-your-token-here"
      }
    }
  }
}

Restart Claude Desktop — the tools will appear automatically.


Option B — claude.ai browser (remote, HTTP via Render)

Step 1 — Deploy to Render

  1. Push this repo to GitHub

  2. Go to render.comNew → Web Service

  3. Connect your GitHub repo

  4. Render detects render.yaml automatically. Set these Environment Variables in the dashboard:

    Key Value
    HUBSPOT_ACCESS_TOKEN Your HubSpot private app token
    MCP_API_KEY A strong random secret you generate (e.g. openssl rand -hex 32)
    TRANSPORT http
  5. Deploy. Your URL will be: https://hubspot-mcp-server.onrender.com

Free tier note: Render's free tier spins down after 15 minutes of inactivity. The first request after spin-down takes ~30 seconds. Upgrade to Starter ($7/mo) to keep it always-on.

Step 2 — Connect in claude.ai

  1. Go to claude.ai → Settings → Integrations
  2. Click Add MCP Server
  3. Fill in:
    • URL: https://hubspot-mcp-server.onrender.com/mcp
    • Header name: Authorization
    • Header value: Bearer <your MCP_API_KEY>
  4. Click Connect — the 15 HubSpot tools will appear in your next conversation

Environment Variables

Variable Required Description
HUBSPOT_ACCESS_TOKEN HubSpot private app token
MCP_API_KEY ✅ (HTTP mode) Bearer token that Claude.ai sends to authenticate
TRANSPORT No stdio (default) or http
PORT No HTTP port, default 3000 (Render sets this automatically)

Generate a secure MCP_API_KEY

openssl rand -hex 32

Copy the output into Render's environment variables and into the claude.ai header value field.


Local HTTP testing

HUBSPOT_ACCESS_TOKEN=pat-xxx MCP_API_KEY=mysecret TRANSPORT=http node dist/index.js

# Test auth
curl -X POST http://localhost:3000/mcp \
  -H "Authorization: Bearer mysecret" \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

# Health check (no auth)
curl http://localhost:3000/health

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured