hubspot-mcp-server
Enables interaction with HubSpot CRM through MCP, providing tools to manage contacts, companies, deals, and search/associations via natural language.
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
- Go to HubSpot → Settings → Integrations → Private Apps
- Click Create a private app, then under Scopes add:
crm.objects.contacts.read+writecrm.objects.companies.read+writecrm.objects.deals.read+write
- 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
-
Push this repo to GitHub
-
Go to render.com → New → Web Service
-
Connect your GitHub repo
-
Render detects
render.yamlautomatically. Set these Environment Variables in the dashboard:Key Value HUBSPOT_ACCESS_TOKENYour HubSpot private app token MCP_API_KEYA strong random secret you generate (e.g. openssl rand -hex 32)TRANSPORThttp -
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
- Go to claude.ai → Settings → Integrations
- Click Add MCP Server
- Fill in:
- URL:
https://hubspot-mcp-server.onrender.com/mcp - Header name:
Authorization - Header value:
Bearer <your MCP_API_KEY>
- URL:
- 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
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases