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)
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.
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: Dialpad Universal MCP Server
Tools
Tool | Kind | Dialpad endpoint |
| read |
|
| read |
|
| read |
|
| read |
|
| read |
|
| read |
|
| read |
|
| read |
|
| read |
|
| write |
|
Dialpad base URL: https://dialpad.com/api/v2 · auth Authorization: Bearer <key>.
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
npm start # listens on :8080
curl localhost:8080/healthTo 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.
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.
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).
send_smsis the only write — gate it behind approval in Eesa RBAC.
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.
Latest Blog Posts
- 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