by peakmojo
A Model Context Protocol (MCP) server that enables AI assistants to interact with HubSpot CRM data, providing built-in vector storage and caching mechanisms help overcome HubSpot API limitations while improving response times.
# Add to your Claude Code skills
git clone https://github.com/peakmojo/mcp-hubspotLast scanned: 5/30/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-30T16:26:56.456Z",
"npmAuditRan": true,
"pipAuditRan": true
}mcp-hubspot is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by peakmojo. A Model Context Protocol (MCP) server that enables AI assistants to interact with HubSpot CRM data, providing built-in vector storage and caching mechanisms help overcome HubSpot API limitations while improving response times. It has 120 GitHub stars.
Yes. mcp-hubspot passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/peakmojo/mcp-hubspot" and add it to your Claude Code skills directory (see the Installation section above).
mcp-hubspot is primarily written in Python. It is open-source under peakmojo on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh mcp-hubspot against similar tools.
No comments yet. Be the first to share your thoughts!
A Model Context Protocol (MCP) server that enables AI assistants to interact with HubSpot CRM data. This server bridges AI models with your HubSpot account, providing direct access to contacts, companies, and engagement data. Built-in vector storage and caching mechanisms help overcome HubSpot API limitations while improving response times.
Our implementation prioritizes the most frequently used, high-value HubSpot operations with robust error handling and API stability. Each component is optimized for AI-friendly interactions, ensuring reliable performance even during complex, multi-step CRM workflows.
Create HubSpot contacts and companies from this LinkedIn profile:
[Paste LinkedIn profile text]
What's happening lately with my pipeline?
The server offers tools for HubSpot management and data retrieval:
| Tool | Purpose |
|---|---|
hubspot_create_contact |
Create contacts with duplicate prevention |
hubspot_create_company |
Create companies with duplicate prevention |
hubspot_get_company_activity |
Retrieve activity for specific companies |
hubspot_get_active_companies |
Retrieve most recently active companies |
hubspot_get_active_contacts |
Retrieve most recently active contacts |
hubspot_get_recent_conversations |
Retrieve recent conversation threads with messages |
hubspot_search_data |
Semantic search across previously retrieved HubSpot data |
You'll need a HubSpot access token with these scopes:
# Install via Smithery (recommended)
npx -y @smithery/cli@latest install mcp-hubspot --client claude
# Or pull Docker image directly
docker run -e HUBSPOT_ACCESS_TOKEN=your_token buryhuang/mcp-hubspot:latest
For manual configuration in Claude desktop:
{
"mcpServers": {
"hubspot": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "HUBSPOT_ACCESS_TOKEN=your_token",
"-v", "/path/to/storage:/storage", # Optional persistent storage
"buryhuang/mcp-hubspot:latest"
]
}
}
}
To build the Docker image locally:
git clone https://github.com/buryhuang/mcp-hubspot.git
cd mcp-hubspot
docker build -t mcp-hubspot .
For multi-platform builds:
docker buildx create --use
docker buildx build --platform linux/amd64,linux/arm64 -t buryhuang/mcp-hubspot:latest --push .
pip install -e .
MIT License