Dialpad MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Dialpad MCP Servershow my recent calls"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Dialpad — Eesa federated plugin (multi-tenant, read-only)
A standalone Node service that exposes the Dialpad cloud phone system to the Eesa AI agent as MCP tools. Stateless — no database. Multi-tenant by design: every workspace connects its own Dialpad API key; the platform forwards that key per-request, so one tenant can never see another's Dialpad data.
The tool surface is the spec. Every tool is one GET (read-only) operation from the official Dialpad Platform API v1.0 OpenAPI spec — 102 tools, generated, not hand-picked. There are no writes: nothing this plugin does can mutate a Dialpad workspace.
Surface | Route | Auth | Caller |
MCP (agent) |
| HMAC signature + per-tenant cred headers | Eesa MCP client |
Health |
| none | Coolify / uptime |
Manifest |
| none | — |
How per-tenant credentials work
This follows Eesa's docs/setup/mcp-server-implementation.md contract. On each
call the platform sends:
X-Mcp-Tenant-Id: <uuid>— the calling tenant.X-Mcp-Tenant-Cred-Api-Key: <key>— that tenant's own Dialpad key, taken from their subscription config fieldapi_key.X-Mcp-Tenant-Cred-Api-Base: <url>— optional, from configapi_base.X-Mcp-Timestamp+X-Mcp-Signature: sha256=…— HMAC-SHA256 over`${timestamp}.${rawBody}`keyed with the sharedMCP_SIGNING_SECRET.
The plugin verifies the signature, reads the tenant's key from the header, and builds a Dialpad client bound to that one key for the duration of the request. Nothing is persisted or logged. There is no global Dialpad key.
Related MCP server: Customer Support MCP Server
Tools — the complete read surface (102)
Generated from spec/dialpad-openapi.json by
scripts/generate-tools.mjs into
src/tools.generated.js. Tool names are the spec's
operationId (e.g. call.get_call_info → call_get_call_info); each tool's
inputs are the operation's path + query parameters, straight from the spec.
Coverage by Dialpad resource:
Resource | Tools | Resource | Tools |
offices | 11 | rooms | 4 |
subscriptions (event) | 14 | channels | 3 |
users | 7 | coaching teams | 3 |
call centers | 6 | scorecards | 3 |
call | 4 | access-control policies | 3 |
message | 4 | departments | 3 |
numbers · contacts · transcripts | 2 each | blocked numbers · dispositions | 2 each |
meetings · conference · company | 2 each | webhooks · websockets · wfm | 2 each |
user devices · call routers · schedule reports | 2 each | stats · digital · agent-groups | 1 each |
callback · call labels · custom IVRs | 1 each | recording/review sharelinks · app settings | 1 each |
The full authoritative list (name + description) is in
manifest.json under surfaces.mcp.tools.
Dialpad base URL: https://dialpad.com/api/v2 · auth Authorization: Bearer <key>.
Regenerating (when Dialpad publishes a new spec):
curl -sL https://dialpad.com/static/openapi/platform-v1.0.json -o spec/dialpad-openapi.json
npm run gen # rewrites src/tools.generated.js + manifest.json tool list
npm run check # syntax-compile everythingNot included: writes
By design this plugin is read-only — POST/PUT/PATCH/DELETE operations (send SMS, place/hang-up calls, create/edit/delete contacts, block numbers, etc.) are not generated. If a specific write is needed later it can be added as an explicitly-flagged tool and gated behind approval in Eesa RBAC.
Env (what the service needs — NOT the Dialpad key)
Var | Purpose |
| HMAC secret; same value as the platform's |
| Alt shared-secret auth; injected automatically by the Eesa publishing pipeline for gateway-only plugins. |
| defaults to 8080 |
The Dialpad key is per-tenant and arrives in a header — it is never an env var here.
Run locally
cp .env.example .env # optionally set MCP_SIGNING_SECRET
npm install
npm run check # syntax-compile every source file + render the UI offline
npm start # listens on :8080
curl localhost:8080/healthnpm run check also runs scripts/render-harness.mjs, which loads
public/app.html, shims a minimal DOM and renders the call-detail pane against
fixtures whose shapes are copied from live Dialpad responses. It asserts the
things that have actually broken before — millisecond durations, real transcript
offsets, AI "moments" not appearing as speech, and no card ever rendering as a
bare header. No browser, Dialpad key or deploy needed.
The embedded UI (/app) and call recordings
public/app.html is the conversation-history surface Eesa frames at
/plugins/dialpad/app. It holds no credential: it receives a short-lived
UI-session token over postMessage and reads through Eesa's gateway.
Recording audio is the one thing it cannot fetch itself, and the reason is worth recording because the three URL keys Dialpad returns are not equivalent:
Key | Example | API key ( |
|
| Yes — 302 → |
|
| No — 302s to |
So the first kind is streamed inline through Eesa's
GET /api/v1/gateway/plugin-ui-media/recording/?call_id=…, which holds the
tenant's key server-side, applies the same Dialpad role gate as the agent, and
supports range requests. The second kind cannot be fetched by any server, so it
stays a link-out and the UI says why instead of showing a player that can't work.
Note that the intermediate redirect Dialpad issues carries the tenant's raw API key in a query string — that URL is followed server-side only and must never be handed to a browser or written to a log.
To exercise a tool locally you simulate the platform headers
(X-Mcp-Tenant-Cred-Api-Key: <a Dialpad key>, plus a valid X-Mcp-Signature
if MCP_SIGNING_SECRET is set).
Deploy on Coolify
Dockerfile app → container port 8080 → env MCP_SIGNING_SECRET (and/or the
platform-injected PLUGIN_GATEWAY_SECRET) → domain
dialpad.plugins.bibekpoudel.com (TLS auto) → restrict inbound to the Eesa
platform. Coolify does not auto-deploy on git push unless a webhook / Automatic
Deployment is enabled — otherwise click Redeploy after merging.
Onboard in Eesa (Admin → Publishing)
At https://eesa.ai/admin/publishing:
Git repository (public https):
https://github.com/ZANYANBU/eesa-plugin-dialpadBranch:
mainBuild pack:
dockerfileContainer port:
8080manifest.json: paste
manifest.jsonPlugin env:
MCP_SIGNING_SECRET=<a strong random secret — the SAME value on the platform connection>Do NOT put a Dialpad key here — it's per-tenant.
Then, so tenants can connect their own key, the marketplace Product for this
plugin must expose the tenantConfig fields (api_key, optional api_base).
A tenant admin purchases the Dialpad integration and enters their Dialpad API
key in the setup form; the platform forwards it as X-Mcp-Tenant-Cred-Api-Key
on every call. After deploying/updating, re-run Sync tools in Eesa so the new
tool list is discovered.
Security notes
Never log
X-Mcp-Tenant-Cred-*values or tool arguments containing PII.Verify the HMAC signature in production (
MCP_SIGNING_SECRETset); reject unsigned requests.Use HTTPS end-to-end; treat the signing secret like any other secret (rotate, store in a secret manager).
Read-only: the plugin issues only GET requests to Dialpad — it cannot create, modify, or delete anything in a connected workspace.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceEnables interaction with Dialpad's tools and services through a unified API, allowing users to manage communications via natural language.MIT
- Alicense-qualityDmaintenanceEnables AI-powered customer support with real-time access to CRM, ticketing, and communication tools via MCP, supporting context-aware conversations and automated actions.Apache 2.0

Dial MCP Serverofficial
Alicense-qualityBmaintenanceEnables AI agents to provision phone numbers, send SMS, place AI voice calls, and react to inbound events via the Dial communication stack, all through MCP tools.392MIT- Alicense-qualityBmaintenanceEnables AI-driven customer support operations including conversation management, knowledge base, contacts, metrics, and settings via MCP.MIT
Related MCP Connectors
Phone, SMS & email for AI agents — one remote MCP endpoint, OAuth login, zero install.
Give AI agents real phone numbers, messages, and voice calls via MCP.
Operator-as-agent MCP hub. 6 tools. First $5 free, then $0.001/call.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ZANYANBU/eesa-plugin-dialpad'
If you have feedback or need assistance with the MCP directory API, please join our Discord server