ElevenLabs Agents Platform MCP
Provides full control of the ElevenLabs Agents Platform (Conversational AI): agents, conversations, knowledge base, tools, tests, telephony, batch calling, and workspace settings.
Click on "Deploy 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 Platform MCPlist all my agents"
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 Platform — MCP Server
Local MCP server (stdio) that gives Claude full control of the ElevenLabs Agents Platform (Conversational AI): agents, conversations, knowledge base, tools, tests, telephony, batch calling, and workspace settings.
Tools (50)
Group | Tools |
Agents |
|
Conversations |
|
Knowledge base |
|
Agent tools |
|
Tests |
|
Telephony |
|
Workspace |
|
Escape hatch |
|
Design notes:
Safety: every destructive tool (
delete_*, outbound/batch calls, workspace settings) requiresconfirm=true.DELETEis blocked on the raw escape hatch.Tool annotations: every tool ships MCP
ToolAnnotations(readOnlyHint,destructiveHint,idempotentHint,openWorldHint) so clients can flag safe vs. side-effecting tools. Read-only = GET-only tools (26 of 50); the destructive ones line up with theconfirm=truegates.Context-friendly: responses truncate at 50k chars;
el_get_conversationsupportstranscript_only/include_transcript=false; voice search returns slim results.Data residency: point
ELEVENLABS_API_BASEat your regional endpoint (EU:https://api.eu.residency.elevenlabs.io).
Related MCP server: TelemetryFlow Python MCP Server
Setup
cd elevenlabs-agents-mcp
python3 -m venv .venv && .venv/bin/pip install -r requirements.txtClaude Desktop / Cowork
Add to claude_desktop_config.json (Settings → Developer → Edit Config):
{
"mcpServers": {
"elevenlabs-agents": {
"command": "/ABSOLUTE/PATH/elevenlabs-agents-mcp/.venv/bin/python",
"args": ["/ABSOLUTE/PATH/elevenlabs-agents-mcp/server.py"],
"env": { "ELEVENLABS_API_KEY": "sk_..." }
}
}
}Claude Code
claude mcp add elevenlabs-agents \
-e ELEVENLABS_API_KEY=sk_... \
-- /ABSOLUTE/PATH/elevenlabs-agents-mcp/.venv/bin/python /ABSOLUTE/PATH/elevenlabs-agents-mcp/server.pyAs part of a Cowork/Claude Code plugin
Reference it in the plugin's .mcp.json:
{
"mcpServers": {
"elevenlabs-agents": {
"command": "python3",
"args": ["${CLAUDE_PLUGIN_ROOT}/mcp/server.py"],
"env": { "ELEVENLABS_API_KEY": "${ELEVENLABS_API_KEY}" }
}
}
}Cloud Run deployment (production)
The repo ships production-ready: http_server.py (streamable HTTP transport, stateless JSON), Dockerfile, deploy.sh.
gcloud auth login && gcloud config set project YOUR_PROJECT_ID
ELEVENLABS_API_KEY=sk_... ./deploy.shThe script enables APIs, stores the API key and a generated 64-char bearer token in Secret Manager, deploys from source to Cloud Run (Frankfurt europe-west3, 512Mi, scale-to-zero, max 3 instances), smoke-tests /healthz + auth, and prints the connect command:
claude mcp add --transport http elevenlabs-agents https://SERVICE_URL/mcp \
--header "Authorization: Bearer TOKEN"Production properties:
Auth: every
/mcprequest needs the bearer token (constant-time compare); server refuses to boot without a ≥32-char token. Alternative IAM-only mode:MCP_ALLOW_UNAUTHENTICATED=true+--no-allow-unauthenticated.Stateless JSON transport: no sessions/SSE — safe for horizontal scaling and scale-to-zero.
Secrets: only in Secret Manager, injected as env; never in image, logs, or responses.
Logging: structured JSON per request (method/path/status/latency) → Cloud Logging. Bodies and transcripts are never logged (PII).
Resilience: retry with exponential backoff +
Retry-Afteron 429/502/503/504; pooled connections; 90s upstream timeout, 300s request timeout for long simulations.Read-only mode: deploy with
READ_ONLY=true ./deploy.shto hard-block all non-GET operations server-side (good for analytics-only access).Cost/blast-radius caps:
min-instances=0(≈€0 idle),max-instances=3.Token rotation:
ROTATE_TOKEN=1 ./deploy.sh.Non-root container, slim base image, layer-cached deps.
Environment variables
Variable | Required | Default | Purpose |
| yes | — | API key (Profile → API keys) |
| HTTP mode | — | Bearer token protecting /mcp |
| no |
| Skip bearer auth (only behind IAM) |
| no |
| Block all non-GET API calls |
| no |
| Data-residency region |
| no |
| Response truncation limit |
| no |
| HTTP port (Cloud Run sets this) |
Quick test
ELEVENLABS_API_KEY=sk_... npx @modelcontextprotocol/inspector .venv/bin/python server.pyExample prompts once connected
"List my ElevenLabs agents and show the config of the Projektinterview agent."
"Duplicate agent X, change the system prompt to …, then simulate a conversation with a skeptical consultant persona."
"Pull yesterday's conversations for agent X and summarize failure reasons."
"Add https://example.com/faq to the knowledge base and enable RAG on it."
This server cannot be deployed
Maintenance
Related MCP Connectors
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
MCP server unifying ERPs, CRMs, APIs and knowledge base for Claude, ChatGPT and Gemini.
MCP server giving Claude AI access to 22+ NYC public-record databases for real estate due diligence
One MCP endpoint for Claude, GPT & Gemini: 100+ tools + no-code connectors + agent workers.
Related MCP Servers
- AlicenseAqualityBmaintenanceMCP server to dynamically load Claude Code skills into AI agents523 npm15MIT
- AlicenseNot gradedqualityCmaintenanceEnterprise-grade MCP server integrating Claude AI capabilities, enabling AI-powered conversations, file operations, and system tools via the Model Context Protocol.1Apache 2.0
- AlicenseBqualityAmaintenanceMCP Server for full Easypanel control via Claude Code, Cursor, and Claude Desktop. Provides 37 tools for deploy, logs, env vars, domains, databases, and monitoring with built-in safety guards.5716 npm3MIT
- AlicenseAqualityCmaintenanceMCP server that brings ElevenLabs to Claude Code — text-to-speech, sound effects, music generation, voice cloning, speech-to-speech, transcription, and voice isolation. 8 tools for industry-leading AI audio.8MIT