elevenlabs-agents-mcp-server
Allows placing outbound telephone calls via ElevenLabs Conversational AI agents, retrieving call reports (status, success evaluation, summary, transcript), and managing agents and phone numbers.
Enables outbound calls over a Vonage SIP trunk by integrating with ElevenLabs agents for telephony.
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., "@elevenlabs-agents-mcp-serverCall +15551234567 with agent 'Support' on number 'Office'"
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.
elevenlabs-agents-mcp-server
MCP server that lets Claude place outbound telephone calls via ElevenLabs Agents (Conversational AI) over a SIP trunk (e.g. Vonage) and report the outcome — status, success evaluation, summary, extracted data, and full transcript.
Tools
Tool | Purpose |
| Discover agent IDs |
| Discover SIP trunk phone number IDs |
| Place a call (returns |
| Poll until the call ends, then return the outcome report |
| Compact outcome report (status, |
| Turn-by-turn transcript with pagination |
| Recent calls with filters (agent, outcome, time window) |
Typical flow: list_agents → list_phone_numbers → make_outbound_call → wait_for_call_completion → (optionally) get_call_transcript.
Related MCP server: Voice Call MCP Server
Setup
npm install
npm run buildClaude Desktop / Claude Code config
{
"mcpServers": {
"elevenlabs-agents": {
"command": "node",
"args": ["/absolute/path/to/elevenlabs-agents-mcp-server/dist/index.js"],
"env": {
"ELEVENLABS_API_KEY": "sk_..."
}
}
}
}Claude Code: claude mcp add elevenlabs-agents -e ELEVENLABS_API_KEY=sk_... -- node /path/to/dist/index.js
Vonage SIP trunk prerequisites (one-time, in dashboards — not via this server)
Vonage: create a SIP trunk / programmable SIP domain. For outbound-from-ElevenLabs you need a termination endpoint (hostname) that accepts SIP INVITEs from ElevenLabs, with digest auth credentials. Allow signaling from
sip.rtc.elevenlabs.io(or your region's static SIP endpoint).ElevenLabs → Phone Numbers → Import from SIP trunk: enter your Vonage number (E.164), outbound address (Vonage termination hostname), transport (TLS recommended), and SIP credentials.
Assign or note the agent; the imported number's
phone_number_idis whatelevenlabs_make_outbound_calluses asagent_phone_number_id.Analysis fields (
call_successful, summary, data collection) require evaluation criteria / data collection configured on the agent.
Environment variables
ELEVENLABS_API_KEY(required)ELEVENLABS_API_BASE_URL(optional, defaulthttps://api.elevenlabs.io; use residency endpoints if applicable)
Notes
make_outbound_callis asynchronous — the API returns as soon as the call is initiated. Post-call analysis is only available once status isdone(there is a shortprocessingwindow after hang-up).wait_for_call_completioncaps at 900 s per invocation and tells you if it timed out so you can call it again.Dynamic variables passed to
make_outbound_callare available in the agent's prompt as{{variable_name}}.
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/easyonthesauce/elevenlabs-agents-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server