HubSpot MCP Server: AI-powered integration to manage contacts, companies, and engagements.
3.7K
HubSpot MCP Server is an open-source project enabling seamless integration with HubSpot CRM via the Model Context Protocol (MCP). This server allows AI models to interact dynamically with HubSpot contacts, companies, and engagements.
Explore the source code and contribute at GitHub.
Dynamic Resources:
hubspot://hubspot_contacts: Access HubSpot contacts.hubspot://hubspot_companies: Access HubSpot companies.hubspot://hubspot_recent_engagements: Access recent engagements from the last 3 days.Auto-Update: Resources sync in real-time with HubSpot changes.
To use this project with Claude Desktop, configure the Docker setup as follows:
{
"mcpServers": {
"hubspot": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"HUBSPOT_ACCESS_TOKEN=your_access_token_here",
"buryhuang/mcp-hubspot:latest"
]
}
}
}
You'll need a HubSpot access token:
crm.objects.contacts.readcrm.objects.companies.readYou can either pull the image or build it locally:
docker pull buryhuang/mcp-hubspot:latest
docker build -t mcp-hubspot .
docker run -e HUBSPOT_ACCESS_TOKEN=your_access_token_here buryhuang/mcp-hubspot:latest
To build and publish the Docker image for multiple platforms:
docker buildx create --use
docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t buryhuang/mcp-hubspot:latest --push
To set up a development environment:
pip install -e .
This project is licensed under the MIT License. Contributions are welcome!
Explore the source code and contribute at GitHub.
Content type
Image
Digest
sha256:3b6c91156…
Size
3.8 GB
Last updated
over 1 year ago
docker pull buryhuang/mcp-hubspot