home / mcp / hubspot mcp server
custom mcp server for hubspot
Configuration
View docs{
"mcpServers": {
"ajaystream-hubspot-mcp-custom": {
"command": "npx",
"args": [
"-y",
"@hubspot/mcp-server"
],
"env": {
"PRIVATE_APP_ACCESS_TOKEN": "<your-private-app-access-token>"
}
}
}
}HubSpot MCP Server exposes HubSpot actions and data through a Model Context Protocol (MCP) interface, enabling AI clients to interact with HubSpot data via a consistent, robot-friendly API. This makes it easier to build automated workflows, generate insights, and perform CRM operations from AI agents while keeping authentication and permissions under your control.
You can use the HubSpot MCP Server with MCP-enabled clients such as Claude Desktop or Cursor. Each client can start the MCP server locally and point it to HubSpot via a private app access token. Once configured, you can ask your AI agent to retrieve CRM data, create or update records, manage associations, and handle engagements through natural prompts.
Prerequisites: you need Node.js and npm installed on your machine.
1) Install Node.js and npm from the official installer for your operating system.
2) Create a private app in HubSpot and copy the generated access token. Use read-only scopes to start, then adjust permissions as needed.
Authenticates the current HubSpot private app access token, providing user information, hub details, authorized scopes, and account information.
Retrieves a paginated list of CRM records for a specified object type.
Performs filtered searches across CRM records using complex criteria and property-based filtering.
Creates multiple CRM records of the same object type in a single API call.
Updates multiple existing CRM records with new property values in a single API call.
Retrieves multiple CRM records by their IDs in a single batch operation.
Retrieves available custom object schemas with their objectTypeId and definitions.
Retrieves the complete catalog of properties defined for any CRM object type.
Retrieves detailed information about a specific property definition.
Creates new custom properties for CRM object types.
Updates settings for existing custom properties.
Establishes multiple relationships between CRM records across different object types.
Retrieves existing relationships between a specific record and other associated records.
Retrieves valid association types and labels between specific object types.
Creates engagements (Notes or Tasks) associated with contacts, companies, deals, or tickets.
Retrieves engagement details by ID.
Updates an existing engagement with new information.
Retrieves a paginated list of workflows.
Retrieves detailed information about a specific workflow, including actions, enrollment criteria, and scheduling.
Generates a feedback link for reporting tool issues or providing feedback.
Generates HubSpot UI URLs to directly access records in the HubSpot interface.