AI_Calling Retell HubSpot MCP Server
Enables AI assistants to check tour availability, book tours via HubSpot Scheduler, and log call sessions to Supabase.
README
AI_Calling — Retell HubSpot MCP Server
Middle layer between Retell AI (Cara), HubSpot Scheduler/CRM, and Supabase for tour availability, booking, and call logging.
Retell call → Render MCP server → HubSpot Scheduler API + CRM → Supabase logging
Architecture
| MCP tool | Purpose |
|---|---|
get_tour_availability |
Check HubSpot availability for virtual or in-person tours |
book_tour |
Book a tour after guest confirms |
log_retell_session |
Save Retell session metadata to Supabase |
log_tour_preference |
Log tour interest without booking |
HTTP routes
| Route | Auth | Purpose |
|---|---|---|
GET /health |
No | Render health check |
POST /mcp |
Bearer | MCP Streamable HTTP endpoint for Retell |
POST /webhooks/retell |
Bearer | Retell post-call webhook → Supabase |
POST /cron/sync-call-data |
Bearer | HubSpot deals (ai_call_attempted=true) → Retell calls → Supabase |
Local setup
- Copy environment file:
cp .env.example .env - Fill in
.envwith your real values (never commit.env). - Run Supabase SQL from
supabase/schema.sqlin the Supabase SQL editor. - Install and start:
npm install npm run dev - Verify health:
curl http://localhost:3000/health
Environment variables
Use these exact names locally (.env) and in Render (Dashboard → Web Service → Environment).
| Variable | Description |
|---|---|
PORT |
Server port (3000 locally; Render sets automatically) |
NODE_ENV |
development or production |
MCP_SERVER_SECRET |
Random secret; Retell sends Authorization: Bearer <this> |
HUBSPOT_ACCESS_TOKEN |
HubSpot Private App Retell Connection token only |
HUBSPOT_API_BASE |
https://api.hubapi.com |
SUPABASE_URL |
Supabase project URL |
SUPABASE_SERVICE_ROLE_KEY |
Supabase service_role key (server-side only) |
DEFAULT_TIMEZONE |
Europe/Madrid |
HUBSPOT_IN_PERSON_MEETING_URL |
In-person meeting page URL |
HUBSPOT_VIRTUAL_MEETING_URL |
Virtual meeting page URL |
HUBSPOT_IN_PERSON_SLUG |
info-madrid |
HUBSPOT_VIRTUAL_SLUG |
info-madrid/virtual-tour-booking-carabanchel |
DEFAULT_TOUR_DURATION_MINUTES |
30 |
RETELL_API_KEY |
Retell API key (required for call sync) |
RETELL_API_BASE |
https://api.retellai.com |
HUBSPOT_AI_CALL_ATTEMPTED_PROPERTY |
ai_call_attempted |
HUBSPOT_RETELL_CALL_ID_PROPERTIES |
Comma-separated deal properties that store a Retell call id |
SYNC_ENABLED |
true to run incremental sync on an interval inside the web service |
SYNC_INTERVAL_MS |
3600000 (1 hour) when SYNC_ENABLED=true |
SYNC_INITIAL_DELAY_MS |
60000 — delay before the first incremental run after server start |
Where to get secrets
- HubSpot token: Settings → Integrations → Private Apps → Retell Connection → Access token
- Supabase service role: Supabase → Project Settings → API →
service_rolekey - MCP secret: Generate a long random string; use the same value in Retell MCP headers
Important: Do not use the Supabase publishable (anon) key for server-side inserts if RLS is enabled. Use the service role key in Render only — never expose it client-side or in Retell.
Important: Do not use the old Carabanchel_Direct_Booking_Integration HubSpot app. Use Retell Connection only.
HubSpot scopes required
The Retell Connection private app needs:
crm.objects.contacts.writecrm.objects.contacts.readcrm.objects.deals.writecrm.objects.deals.readcrm.schemas.deals.readcrm.objects.contacts.read(contact phone lookup during call sync)crm.schemas.contacts.readcrm.objects.owners.readautomationscheduler.meetings.meeting-link.readmeetings-write← required for booking; add before live booking tests
Render deployment
| Setting | Value |
|---|---|
| Build command | npm ci --include=dev && npm run build |
| Start command | npm start |
| Health check path | /health |
| Instance | Starter recommended (Free tier cold starts can exceed Retell's 20s MCP timeout) |
Do not use yarn or yarn start — this repo uses npm (package-lock.json). Using yarn alone skips the TypeScript build and can resolve incompatible dependency versions.
Recommended Render settings:
| Setting | Value |
|---|---|
| Build command | npm ci --include=dev && npm run build |
| Start command | npm start |
| Health check path | /health |
If Render still uses yarn for build, the app will start via tsx (commit 1a6921c+) but you should switch to npm for reliable installs. Node 22 is required (see .nvmrc).
Add all environment variables from the table above in Render → Environment.
After changing build/start commands in the Render dashboard, trigger Manual Deploy → Clear build cache & deploy.
Connect Retell MCP
In Retell → MCP → Add MCP:
| Field | Value |
|---|---|
| MCP server URL | https://ai-calling-j1hu.onrender.com/mcp |
| Timeout | 20000 |
| Headers | Authorization: Bearer <MCP_SERVER_SECRET> |
Select these tools after deploy:
get_tour_availabilitybook_tour(requires HubSpotmeetings-writescope)log_retell_sessionlog_tour_preference
Optional webhook (post-call): POST https://ai-calling-j1hu.onrender.com/webhooks/retell with the same bearer header.
Cara prompt behavior
When the guest wants a tour:
- Ask whether they prefer a virtual or in-person tour.
- Ask which day works best.
- Ask what Madrid time generally works best.
- Call
get_tour_availability. - Offer one or two available slots.
- Ask clearly: "Should I book that for you?"
- Only after the guest clearly confirms, call
book_tour. - Do not say the tour is booked until
book_tourreturns success. - If booking fails, say: "No problem, I'll send you the tour links by WhatsApp so you can choose the time that works best for you."
- Log the result with
log_retell_sessionorlog_tour_preference.
Manual test scripts
# Test HubSpot availability (requires HUBSPOT_ACCESS_TOKEN in .env)
npx tsx scripts/testAvailability.ts
# Test Supabase inserts (requires SUPABASE_* in .env)
npx tsx scripts/testSupabaseInsert.ts
# Test live booking (guarded — only runs when enabled)
RUN_BOOKING_TEST=true TEST_BOOKING_EMAIL=you@example.com npx tsx scripts/testBookTour.ts
Pre-live checklist
- Run
supabase/schema.sqlin Supabase - Deploy to Render with all env vars
- Confirm
GET /healthreturns{ "ok": true } - Run
testAvailability.tsandtestSupabaseInsert.ts - Connect Retell MCP with bearer auth
- Test a call with your own HubSpot contact and phone
- Add
meetings-writescope if booking fails with missing scope errors - Only then enable for real leads
Supabase tables
retell_sessions— Retell call/session metadata plus HubSpot deal/contact enrichment (upsert bysession_id)mcp_tool_calls— MCP tool request/response logstour_bookings— Tour bookings and preferencessync_runs— Audit log for HubSpot deal → Retell call sync jobs
See supabase/schema.sql for full schema. Existing projects should also run:
HubSpot fields stored on retell_sessions after sync:
| Column | Source |
|---|---|
hubspot_deal_id |
Deal ID |
hubspot_deal_name |
Deal name |
hubspot_pipeline |
Pipeline label (e.g. Hubs B2C - Carabanchel) |
hubspot_deal_stage |
Stage label (e.g. Contacted) |
hubspot_deal_stage_id |
Stage internal ID |
hubspot_unit_type |
unit_type__carabanchel_ |
hubspot_contract_start_date |
desired_check_in_date |
hubspot_contract_end_date |
desired_check_out_date |
hubspot_contact_id |
Associated contact ID |
hubspot_contact_name |
Contact first + last name |
hubspot_contact_email |
Contact email |
hubspot_contact_phone |
Contact phone |
HubSpot deal → Retell call sync
Syncs deals where ai_call_attempted = true into retell_sessions, linked by hubspot_deal_id.
Matching order (first hit wins):
- Deal property in
HUBSPOT_RETELL_CALL_ID_PROPERTIES(default:retell_call_id,retell_session_id,ai_retell_call_id) - Retell call
metadata.hubspot_deal_id - All syncable Retell calls to the deal's associated contact phone (connected and failed dials:
dial_no_answer,dial_busy,telephony_provider_permission_denied)
Failed attempts are stored with end_reason = the Retell disconnection reason and session_outcome = failed_dial.
One-time historical backfill (local or Render shell):
npm run backfill:calls
Ongoing sync — option A: Render Cron Job (recommended)
| Setting | Value |
|---|---|
| Schedule | 0 * * * * (hourly) |
| URL | POST https://ai-calling-j1hu.onrender.com/cron/sync-call-data |
| Header | Authorization: Bearer <MCP_SERVER_SECRET> |
Ongoing sync — Option B: in-process scheduler (active in render.yaml)
Set on the Render web service:
| Variable | Value |
|---|---|
SYNC_ENABLED |
true |
SYNC_INTERVAL_MS |
3600000 |
SYNC_INITIAL_DELAY_MS |
60000 |
RETELL_API_KEY |
Your Retell API key |
The server runs an incremental sync ~60s after startup, then every hour. Only deals modified since the last successful sync are re-processed (24h overlap buffer). Overlapping runs are skipped if a previous sync is still in progress.
Redeploy after changing environment variables in Render (Manual Deploy if needed).
Manual full re-sync:
curl -X POST "https://ai-calling-j1hu.onrender.com/cron/sync-call-data?full=true" \
-H "Authorization: Bearer <MCP_SERVER_SECRET>"
Security
- No secrets in code or
.env.example .envis gitignored- Bearer auth on
/mcpand/webhooks/retell - Logs scrub Authorization headers and token values
- All tool inputs validated with Zod
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。