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.
Aucun avis encore. Soyez le premier à donner votre avis !
Connectez-vous pour rejoindre la conversation
Retrieve contacts from HubSpot. No input required. Returns an 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). Returns existing contact details if a match is found; creates a new contact only if no match is found.
Retrieve companies from HubSpot. No input required. Returns an array of company objects.
Create a new company in HubSpot (checks for duplicates before creation). Input: name (string), properties (dict, optional). Returns existing company details if a match is found; creates a new company only if no match is found.
Get activity history for a specific company. Input: company_id (string). Returns an array of activity objects.
Get HubSpot engagements from all companies and contacts from the last 3 days. No input required. Returns an array of engagement objects with full metadata.