This MCP server integrates with HubSpot CRM to enable AI models to interact with HubSpot data and operations through a standardized interface. It also includes a shared space feature that allows teams to share conversation summaries in real-time.
You'll need a HubSpot access token. Obtain one by creating a private app in your HubSpot account. Keep your token secure.
To install buryhuang/mcp-hubspot for Claude Desktop automatically:
npx -y @smithery/cli install buryhuang/mcp-hubspot --client claude
Option 1: Pull from Docker Hub
docker pull buryhuang/mcp-hubspot:latest
Option 2: Build Locally
docker build -t mcp-hubspot .
Run the container with your access token:
docker run -e HUBSPOT_ACCESS_TOKEN=your_access_token_here buryhuang/mcp-hubspot:latest
Or pass the token as an argument:
docker run buryhuang/mcp-hubspot:latest --access-token your_access_token_here
npx -y @smithery/cli@latest install mcp-hubspot --client claude
Add the following to your Claude Desktop configuration:
{
"mcpServers": {
"hubspot": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"HUBSPOT_ACCESS_TOKEN=your_access_token_here",
"buryhuang/mcp-hubspot:latest"
]
}
}
}
Or using command-line argument:
{
"mcpServers": {
"hubspot": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"buryhuang/mcp-hubspot:latest",
"--access-token",
"your_access_token_here"
]
}
}
}
hubspot_create_company: Create a new company in HubSpot
hubspot_get_company_activity: Retrieve activity history for a specific company
hubspot_get_recent_engagements: Retrieve recent engagement activities
hubspot_get_recent_companies: Retrieve most recently active companies
hubspot_get_recent_contacts: Retrieve most recently active contacts
create_shared_summary: Create a new conversation summary in the shared space
get_shared_summaries: Retrieve all conversation summaries for a given company
You can create contacts by copying from a LinkedIn profile:
- Create HubSpot contacts and companies from following:
- John Doe
- Software Engineer at Tech Corp
- San Francisco Bay Area • 500+ connections
Experience:
- Tech Corp
- Software Engineer
- Jan 2020 - Present · 4 yrs
- San Francisco, California
- Previous Company Inc.
- Senior Developer
- 2018 - 2020 · 2 yrs
Education:
- University of California, Berkeley
- Computer Science, BS
- 2014 - 2018
- What's happening latestly with my pipeline?
After a meeting, you might see a prompt like: "Kya aap is conversation summary ko company ke shared space mein share karna chahenge? (Yes/No)"
On confirmation, the conversation summary is stored centrally and accessible to all authorized managers in your company.
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "hubspot" '{"command":"docker","args":["run","-i","--rm","-e","HUBSPOT_ACCESS_TOKEN=your_access_token_here","buryhuang/mcp-hubspot:latest"]}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"hubspot": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"HUBSPOT_ACCESS_TOKEN=your_access_token_here",
"buryhuang/mcp-hubspot:latest"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"hubspot": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"HUBSPOT_ACCESS_TOKEN=your_access_token_here",
"buryhuang/mcp-hubspot:latest"
]
}
}
}
3. Restart Claude Desktop for the changes to take effect