Daeda MCP syncs your HubSpot CRM to a local encrypted database, enabling AI assistants to query your contacts, companies, and deals instantly.
Querying HubSpot through the API is slow and rate-limited. Daeda solves this by:
- - Contacts, companies, deals, and all associations
- - Your data is encrypted at rest using your HubSpot token
- - AI assistants can run SQL queries against your local database
- - Once synced, no internet required for queries
Go to your HubSpot account > > >
Create a new private app
Under "Scopes", enable these permissions:
crm.export (required for bulk data export)crm.objects.contacts.readcrm.objects.companies.readcrm.objects.deals.read
Create the app and copy your access token (starts with pat-)
No installation needed! Just add Daeda to your AI assistant's MCP configuration - npx handles everything automatically.
Choose your AI assistant and add the following to your config file:
(claude_desktop_config.json):
{
"mcpServers": {
"daeda": {
"command": "npx",
"args": ["-y", "daeda-mcp"],
"env": {
"HUBSPOT_ACCESS_TOKEN": "pat-na1-xxxxxxxx"
}
}
}
}
(.claude/mcp.json):
{
"mcpServers": {
"daeda": {
"command": "npx",
"args": ["-y", "daeda-mcp"],
"env": {
"HUBSPOT_ACCESS_TOKEN": "pat-na1-xxxxxxxx"
}
}
}
}
(~/.cursor/mcp.json):
{
"mcpServers": {
"daeda": {
"command": "npx",
"args": ["-y", "daeda-mcp"],
"env": {
"HUBSPOT_ACCESS_TOKEN": "pat-na1-xxxxxxxx"
}
}
}
}
Other supported tools: Windsurf, VS Code (Copilot MCP), Cline, Roo Code, Zed, JetBrains IDEs, Amazon Q Developer, Continue.dev , Goose, Raycast, OpenCode, Trae, LibreChat. - Daeda requests bulk exports from HubSpot's Export API
- While exports process, ~1,000 recent deals are fetched via Search API for immediate use
- Export CSVs are downloaded and streamed into an encrypted SQLite database
- AI assistants can now query your full CRM instantly
The , giving you immediate access to your 1,000 most recent deals and their associated contacts and companies.
The runs in the background:
Progress is shown via the db_status tool.
Once synced, try asking your AI assistant:
- "Show me all deals closing this month over $50k"
- "Find contacts at companies in the healthcare industry"
- "Which deals have no associated contacts?"
- "List all contacts with a @gmail.com email"
- "What's the total pipeline value by deal stage?"