DialMCP
DialMCP AI एजेंटों को वास्तविक फोन कॉल करने और पूर्ण प्रतिलेख, रिकॉर्डिंग और परिणाम प्राप्त करने की क्षमता देता है।
दस्तावेज़
Your agent can nowuse your phone.
DialMCP gives your agent (i.e. Gamut, Claude, Codex) the ability to place phone calls with your actual phone number and speak on your behalf.
One endpoint: https://mcp.dialmcp.com/mcp — OAuth sign-in with your phone number, no API keys.
The whole call, handled for you.
Your agent calls place_call with a phone number and an objective. DialMCP does the rest and hands back a structured result.
Your number.Not a robot's.
Calls go out with your phone number so recipient sees you calling — and can call you back.
Transcript, recording, resolution
Every call returns a full transcript, a link to the audio recording, and a structured resolution: outcome, summary, commitments made, follow-ups needed.
Handles hold music& phone trees
It presses the keys, answers voice menus, waits silently through hold, and detects voicemail (it hangs up rather than leaving one).
Automatically discloses it's a bot
The first thing any human hears: it's an AI assistant, calling on your behalf, and the call is recorded. Always.
Async by design
place_call returns instantly with a call ID; your agent polls get_call for progress. Works within every client's tool timeout.
Compliance built-in
Every call complies with calling-hours enforcement, rate limits, do-not-call registries, objective screening, and hard blocklists.
Read the safety page →
Watch a real errand get done.
The Gamut team needed a plumber to install a garbage disposal in their office kitchen. One prompt, one call, one booked appointment — here's the whole thing.
Connect to your agent
DialMCP is a remote MCP server with OAuth — no API keys to manage.
01 Point your client at the endpoint
Every client uses the same URL: https://mcp.dialmcp.com/mcp. No API keys, no per-provider setup.
A browser window opens on first use; verify with an SMS code and that number becomes your caller ID.
03 Ask your agent to make a call
Try asking the agent to call a friend to test it out.
Connect to Gamut
Easiest & most powerful
- Get the Gamut Desktop app.
- Open Settings → Connectors and choose Add MCP server.
- Paste the server URL:
https://mcp.dialmcp.com/mcp(transport: HTTP, auth: OAuth). - Complete the sign-in window — enter your phone number and the SMS code to verify it as your caller ID.
- Enable the connector in a session and ask: “Call Tosca and book a table for two at 7:30 tonight.”
Connect to Claude
claude mcp add --transport http dialmcp https://mcp.dialmcp.com/mcp
- Run the command above (add
--scope userto enable it in every project). - Run
/mcp→ authenticate to open the OAuth flow, or just let the firstplace_calltrigger it. - Ask Claude to make the call. It gets four tools:
place_call,get_call,end_call,list_calls.
Connect to Codex
[mcp_servers.dialmcp]
url = "https://mcp.dialmcp.com/mcp"
- Add the block above to
~/.codex/config.toml(Codex's MCP servers section). - Restart Codex; approve the OAuth browser prompt the first time the server is used.
- Tool calls are async — tell Codex to poll
get_callrather than wait on the line.
Frequently asked questions
Everything you need to know about how DialMCP places calls, protects your number, and keeps every call compliant.
Whose number shows up on the callee's phone?
Yours. During sign-up you verify your own number via SMS, and every call the agent places presents that number as the caller ID. Callees can call or text you back directly — DialMCP never hides behind a random number.
Does the person being called know it's an AI?
Always. The agent's first words to any human are a disclosure — that it's an AI assistant, who it's calling for, and that the call is recorded. This is enforced in the calling system and independently checked after every call, not left to the model's discretion. If someone objects to talking to an AI, the agent apologizes and ends the call.
What numbers can it call?
US and Canadian numbers, between 8:00 and 21:00 in the destination's local time. Emergency services, premium-rate lines, and high-fraud number ranges are blocked outright and can never be called. See the safety page for the full guardrail list, or the developer map of which voice AI APIs can call a cell phone.
What does my agent get back after a call?
A structured resolution (achieved / partially achieved / not achieved, with a summary, any commitments made, and suggested follow-ups), the full turn-by-turn transcript, and a signed link to the audio recording. For the full walkthrough of having an AI assistant place the call, see how to make a phone call with an AI assistant.
What if the person asks not to be called again?
The agent confirms it on the spot and the number goes onto a permanent do-not-call list — enforced before any future call is placed, by any user. There's also a self-serve opt-out page anyone can use, no account needed.
How long can a call run?
Calls default to 6 minutes and are hard-capped at 10. The agent wraps up gracefully — it confirms the outcome, says goodbye, and hangs up — and your agent can end a call early with end_call.
Can I use it from claude.ai, ChatGPT, or Cursor too?
Yes — any client that supports remote MCP servers with OAuth works: claude.ai and Claude Desktop (Settings → Connectors → Add custom connector), ChatGPT developer-mode connectors, Cursor, and more. Same URL everywhere. DialMCP is not a standalone AI phone call app; it attaches to the assistant you already use. For a sourced comparison of MCP phone agents versus volume platforms, see best AI phone call agent.
What can an AI assistant do on a phone call?
It can place one outbound US or Canadian call from your verified number, disclose that it is an AI, wait on hold, navigate a phone tree, and come back with a transcript and outcome. It cannot skip disclosure, spoof caller ID, leave voicemail, or run outreach. See what an AI assistant can do on a call.
Is DialMCP free?
Yes during launch. DialMCP is in a pilot and early-access period: it is free of charge, limits are conservative, and pricing may be introduced later with notice. No API key and no credit card. See what $0 includes.
How do I build an MCP server like DialMCP?
Start with the official Python or TypeScript SDK, register tools, and pick stdio for local hosts or Streamable HTTP plus OAuth 2.1 for a remote server. DialMCP is the hosted phone-call version of that design. See how to build an MCP server.