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.
Conectar
Añade esta configuración a .claude/mcp.json
Transporte:
{
"mcpServers": {
"hubspot": {
"command": "npx",
"args": [
"-y",
"@hubspot/mcp-server"
],
"env": {
"HUBSPOT_ACCESS_TOKEN": "<YOUR_HUBSPOT_ACCESS_TOKEN>"
}
}
}
}Herramientas (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"
}
}
}Recursos
Este servidor no expone ningún recurso.
Prompts
Este servidor no expone ningún prompt.
Información del servidor
- Autor
- HubSpot (@HubSpot)
- Licencia
- MIT
- Versión
- 1.1.0
- Estrellas
- 690
- Última actualización
- 19 de junio de 2026