eribichesu/hubspot-mcp-server
If you are the rightful owner of hubspot-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
A Model Context Protocol (MCP) server that integrates with HubSpot CRM, enabling AI assistants to manage HubSpot data efficiently.
HubSpot MCP Server
A Model Context Protocol (MCP) server that provides seamless integration with HubSpot CRM. This server enables AI assistants like Claude to interact with your HubSpot data, allowing for efficient management of contacts, companies, deals, and more.
๐ Features
- Contacts Management: Create, read, update, and search contacts in HubSpot
- Companies Management: Manage company records and information
- Deals Management: Track and update sales opportunities
- Email Integration: Send emails and track engagement (requires setup)
- Type-Safe: Built with TypeScript for better development experience
- Comprehensive Testing: Includes unit tests and integration examples
- Easy Setup: Simple configuration with environment variables
๐ Available Tools
Contacts
get_contacts
- Retrieve a list of contactsget_contact
- Get a specific contact by IDcreate_contact
- Create a new contactupdate_contact
- Update an existing contactsearch_contacts
- Search for contacts
Companies
get_companies
- Retrieve a list of companiesget_company
- Get a specific company by IDcreate_company
- Create a new companyupdate_company
- Update an existing company
Deals
get_deals
- Retrieve a list of dealsget_deal
- Get a specific deal by IDcreate_deal
- Create a new dealupdate_deal
- Update an existing deal
Emails
send_email
- Send emails through HubSpot (requires Marketing Email API)get_email_events
- Get email engagement data (requires Events API)
๐ ๏ธ Prerequisites
- Node.js 18+ and npm
- HubSpot account with API access
- HubSpot API key or OAuth credentials
๐ฆ Installation
-
Clone the repository:
git clone https://github.com/yourusername/hubspot-mcp-server.git cd hubspot-mcp-server
-
Install dependencies:
npm install
-
Configure environment variables:
cp .env.example .env
Edit
.env
with your HubSpot credentials:HUBSPOT_API_KEY=your_hubspot_api_key_here # OR use OAuth (if you prefer) HUBSPOT_CLIENT_ID=your_client_id HUBSPOT_CLIENT_SECRET=your_client_secret HUBSPOT_ACCESS_TOKEN=your_access_token
-
Build the project:
npm run build
๐ง Getting HubSpot API Credentials
Option 1: API Key (Recommended for testing)
- Go to HubSpot Settings โ Integrations โ API key
- Generate a new API key
- Add it to your
.env
file asHUBSPOT_API_KEY
Option 2: OAuth App (Recommended for production)
- Go to HubSpot Developer Account โ Apps
- Create a new app
- Note your Client ID and Client Secret
- Configure OAuth redirect URI
- Add credentials to your
.env
file
๐ Usage
With Claude Desktop
-
Configure Claude Desktop by adding to your MCP settings:
{ "mcpServers": { "hubspot": { "command": "node", "args": ["dist/index.js"], "cwd": "/path/to/hubspot-mcp-server", "env": { "HUBSPOT_API_KEY": "your_api_key_here" } } } }
-
Restart Claude Desktop
-
Start using HubSpot tools in Claude:
- "Show me my recent contacts"
- "Create a new contact for John Doe with email john@example.com"
- "Search for companies in the technology industry"
Direct Usage
You can also run the server directly:
npm start
Or for development with auto-reload:
npm run dev
๐งช Testing
Run the test suite:
npm test
Run tests in watch mode:
npm run test:watch
Run a manual test of the server:
npm run dev
# In another terminal:
node tests/test-server.js
๐ Examples
Creating a Contact
// Using the MCP tool
{
"tool": "create_contact",
"arguments": {
"email": "jane.doe@example.com",
"firstname": "Jane",
"lastname": "Doe",
"phone": "+1-555-123-4567",
"company": "Example Corp",
"lifecyclestage": "lead"
}
}
Searching for Companies
// This would be handled automatically by Claude when you ask:
// "Find all companies in the software industry"
{
"tool": "get_companies",
"arguments": {
"limit": 20,
"properties": ["name", "domain", "industry", "city", "state"]
}
}
๐๏ธ Development
Project Structure
src/
โโโ index.ts # Main MCP server
โโโ services/
โ โโโ hubspot.ts # HubSpot API wrapper
โโโ tools/
โ โโโ base.ts # Base tool class
โ โโโ contacts.ts # Contact management tools
โ โโโ companies.ts # Company management tools
โ โโโ deals.ts # Deal management tools
โ โโโ emails.ts # Email tools
โโโ types/
โโโ index.ts # Type definitions
tests/
โโโ setup.ts # Test configuration
โโโ hubspot.service.test.ts
โโโ contacts.tool.test.ts
โโโ test-server.ts # Manual testing script
Adding New Tools
- Create a new tool class extending
BaseTool
- Implement
getTools()
andexecuteTool()
methods - Register the tool in
src/index.ts
- Add tests for the new tool
Code Style
This project uses TypeScript with strict mode enabled. Make sure to:
- Use proper type annotations
- Follow existing naming conventions
- Add JSDoc comments for public methods
- Write tests for new functionality
๐ Security Considerations
- API Keys: Never commit API keys to version control
- Environment Variables: Use
.env
files for local development - Production: Use proper secret management in production
- Rate Limiting: Be aware of HubSpot API rate limits
- Permissions: Only request necessary HubSpot scopes
๐ Resources
- HubSpot API Documentation
- Model Context Protocol Specification
- Claude Desktop MCP Setup
- HubSpot API Node.js Client
๐ค Contributing
- Fork the repository
- Create a feature branch:
git checkout -b feature/amazing-feature
- Commit your changes:
git commit -m 'Add amazing feature'
- Push to the branch:
git push origin feature/amazing-feature
- Open a Pull Request
๐ License
This project is licensed under the MIT License - see the file for details.
๐ Troubleshooting
Common Issues
"API key not found" error:
- Ensure your
.env
file is properly configured - Check that the API key is valid and has necessary permissions
"Module not found" errors:
- Run
npm install
to ensure all dependencies are installed - Run
npm run build
to compile TypeScript
Rate limiting errors:
- HubSpot has API rate limits. Implement proper retry logic for production use
- Consider using exponential backoff for failed requests
Connection timeouts:
- Check your internet connection
- Verify HubSpot service status
For more help, please open an issue.
๐ Deployment
Production Considerations
- Environment Variables: Use a proper secrets management system
- Logging: Configure appropriate log levels
- Monitoring: Set up health checks and monitoring
- Scaling: Consider rate limiting and caching for high-volume usage
Docker Support (Coming Soon)
Docker support will be added in a future release for easier deployment.
Built with โค๏ธ for the HubSpot and AI community