HubSpot MCP Server provides a bridge between Claude and the HubSpot CRM platform, enabling AI assistants to access and manipulate contact and company data. Built with Python using the HubSpot API client, it offers tools for retrieving contacts and companies, creating new entries, and accessing company activity history. The implementation supports authentication via HubSpot access tokens, includes comprehensive error handling, and can be deployed via Docker, Vercel, or Replit. This server is particularly valuable for sales and marketing workflows that require CRM data access without leaving the conversation interface.
No reviews yet. Be the first to review!
Sign in to join the conversation
Retrieve contacts from HubSpot. No input required. Returns: Array of contact objects.
Create a new contact in HubSpot (checks for duplicates before creation). Input: firstname (string), lastname (string), email (string, optional), properties (dict, optional).
Retrieve companies from HubSpot. No input required. Returns: Array of company objects.
Create a new company in HubSpot (checks for duplicates before creation). Input: name (string), properties (dict, optional).
Get activity history for a specific company. Input: company_id (string). Returns: Array of activity objects.
Get HubSpot engagements from all companies and contacts from the last 3 days. No input required. Returns: Array of engagement objects with full metadata.