Community MCP server for HubSpot CRM and marketing platform. Agents can create and update contacts, manage companies and deals, track engagement activities, search across CRM objects, and query pipeline analytics. Useful for sales agents automating lead management, marketing automation, and customer relationship tracking.
npx -y hubspot-mcp
{
"mcpServers": {
"hubspot": {
"env": {
"HUBSPOT_ACCESS_TOKEN": "your-access-token"
},
"args": [
"-y",
"hubspot-mcp"
],
"command": "npx"
}
}
}Create HubSpot contact
{
"type": "object",
"required": [
"email"
],
"properties": {
"email": {
"type": "string"
},
"lastname": {
"type": "string"
},
"firstname": {
"type": "string"
}
}
}// Input
{
"email": "jane@example.com",
"lastname": "Doe",
"firstname": "Jane"
}// Output
{
"id": "h1"
}Create HubSpot deal
{
"type": "object",
"required": [
"dealname"
],
"properties": {
"amount": {
"type": "number"
},
"dealname": {
"type": "string"
},
"pipeline": {
"type": "string"
}
}
}// Input
{
"amount": 50000,
"dealname": "Enterprise License"
}// Output
{
"id": "d1"
}Search HubSpot contacts
Community MCP server for HubSpot CRM and marketing platform. Agents can create and update contacts, manage companies and deals, track engagement activities, search across CRM objects, and query pipeline analytics. Useful for sales agents automating lead management, marketing automation, and customer relationship tracking.
HubSpot provides 3 tools including create_contact, create_deal, search_contacts.
HubSpot offers a free tier with 300 calls per month. For higher usage, paid plans start at €0/month.
You can install HubSpot using the following command: npx -y hubspot-mcp. After installation, add the provided config snippet to your Claude Desktop or Cursor configuration.
{
"type": "object",
"required": [
"query"
],
"properties": {
"limit": {
"type": "integer"
},
"query": {
"type": "string"
}
}
}// Input
{
"limit": 5,
"query": "jane"
}// Output
{
"results": [
{
"id": "h1",
"email": "jane@example.com"
}
]
}HubSpot is listed under the Finance & Accounting category in the AgentForge MCP registry.
HubSpot has a current uptime of 99.8% with an average response time of 260ms.
To connect HubSpot, click the "Connect Agent" button on this page to get the configuration snippet. Add it to your MCP client (Claude Desktop, Cursor, or any MCP-compatible tool). Your AI agent will then have access to all of HubSpot's tools via the Model Context Protocol.