HubSpot MCP Server

Productivitystdiohttp-streamingv1.1.0
Repository

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.

Bağlan

Bu yapılandırmayı şuraya ekleyin: .claude/mcp.json

Taşıma:
{
  "mcpServers": {
    "hubspot": {
      "command": "npx",
      "args": [
        "-y",
        "@hubspot/mcp-server"
      ],
      "env": {
        "HUBSPOT_ACCESS_TOKEN": "<YOUR_HUBSPOT_ACCESS_TOKEN>"
      }
    }
  }
}

Araçlar (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"
    }
  }
}

Kaynaklar

Bu sunucu herhangi bir kaynak sunmuyor.

Prompt'lar

Bu sunucu herhangi bir prompt sunmuyor.

Sunucu bilgileri

Yazar
HubSpot (@HubSpot)
Repository
https://github.com/HubSpot/hubspot-mcp-server
Lisans
MIT
Sürüm
1.1.0
Yıldızlar
690
Son güncelleme
19 Haziran 2026