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)
- Лицензия
- MIT
- Версия
- 1.1.0
- Звёзды
- 690
- Последнее обновление
- 19 июня 2026 г.