HubSpot MCP Server

Productivitystdiohttp-streamingv1.1.0
代码仓库

Official HubSpot MCP server connecting AI tools to the HubSpot CRM. Enables agents to read and manage contacts, companies, deals, and tickets, search the CRM, and create engagements such as notes and tasks. Honors HubSpot scopes and rate limits via OAuth.

连接

将此配置添加到 .claude/mcp.json

传输方式:
{
  "mcpServers": {
    "hubspot": {
      "command": "npx",
      "args": [
        "-y",
        "@hubspot/mcp-server"
      ],
      "env": {
        "HUBSPOT_ACCESS_TOKEN": "<YOUR_HUBSPOT_ACCESS_TOKEN>"
      }
    }
  }
}

工具 (3)

search_crm

Search CRM objects (contacts, companies, deals, tickets) by query and filters.

{
  "type": "object",
  "required": [
    "object_type",
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Search text"
    },
    "object_type": {
      "type": "string",
      "description": "CRM object type (contacts, companies, deals, tickets)"
    }
  }
}

create_contact

Create a new contact with the given properties.

{
  "type": "object",
  "required": [
    "email"
  ],
  "properties": {
    "email": {
      "type": "string",
      "description": "Contact email address"
    },
    "lastname": {
      "type": "string",
      "description": "Last name"
    },
    "firstname": {
      "type": "string",
      "description": "First name"
    },
    "properties": {
      "type": "object",
      "description": "Additional contact properties"
    }
  }
}

update_deal

Update properties or stage on an existing deal.

{
  "type": "object",
  "required": [
    "deal_id"
  ],
  "properties": {
    "stage": {
      "type": "string",
      "description": "Pipeline stage to move the deal to"
    },
    "amount": {
      "type": "number",
      "description": "Deal amount"
    },
    "deal_id": {
      "type": "string",
      "description": "Deal record ID"
    }
  }
}

资源

此服务器未提供任何资源。

提示词

此服务器未提供任何提示词。

服务器信息

作者
HubSpot (@HubSpot)
代码仓库
https://github.com/HubSpot/hubspot-mcp-server
许可证
MIT
版本
1.1.0
星标
690
最后更新
2026年6月19日