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 "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 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 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/amaanshaikh-dc/elevenlabs-agent-platform-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server