elevenlabs-mcp-experiments
Provides read-only access to ElevenLabs workspace, listing agents with IDs and names, and retrieving summaries of latest eval runs for a given agent.
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-mcp-experimentslist my ElevenLabs 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-mcp-experiments
A small Model Context Protocol server for poking at ElevenLabs workspace data from inside Claude Desktop or any other MCP client.
I'm Auskin Immanuel. ElevenLabs Agents talks to external systems through tool calls and through MCP. I write tool definitions every week at work; this is the same idea from the server side.
What it exposes
Two tools, both read-only against the ElevenLabs workspace:
list_agents: returns every agent in the workspace with its ID and nameget_eval_runs: given an agent ID, pulls eval criteria results off its recent conversations and returns a compact summary per conversation
Read-only on purpose. Mutating things by accident from a chat client is not a fun way to learn the protocol.
Related MCP server: imprint-mcp-server
Run
python -m venv venv
source venv/bin/activate
pip install -e .
cp .env.example .env # add ELEVENLABS_API_KEY
python server.pyTo wire into Claude Desktop, add this to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"elevenlabs": {
"command": "/absolute/path/to/venv/bin/python",
"args": ["/absolute/path/to/server.py"]
}
}
}Restart Claude Desktop. Ask Claude "list my ElevenLabs agents." The tool call should come back with real data.
What I'm trying to learn
How MCP servers actually expose tools vs the webhook-tool pattern I use at work
Where the protocol surfaces are (resources? prompts? tools only?)
What it would take to ship a workspace-mutating tool (create agent, update prompt) safely
What this isn't
Not a maintained package. There's no test suite, no CI, no release.
Not auth-protected. Read your
.envand don't run this on a shared machine.
Reach me
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.
Related MCP Servers
- Alicense-qualityDmaintenanceEnables seamless integration with ElevenLabs Conversational AI to manage agents, tools, and knowledge base sources. It supports RAG indexing, webhook integration, and document management for building advanced voice-enabled AI agents.Last updatedMIT
- Alicense-qualityBmaintenanceEnables querying local meeting notes, calendar events, email metadata, and daily digests from Imprint's database via natural language through Claude Desktop and other MCP clients.Last updated8MIT
- Alicense-qualityBmaintenanceEnables Cursor, Claude, and other MCP agents to interact with the HyperWhisper app for voice transcription, model management, and recording search.Last updated16MIT
- Alicense-qualityBmaintenanceEnables MCP-compatible clients to interact with AnythingLLM, providing tools for workspace management, chat and thread operations, document operations, vector search, and system inspection.Last updated5MIT
Related MCP Connectors
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Manage SRG+ hubs, channels, content, assets, users, and workspaces from any MCP-aware AI agent.
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/AuskinImmanuel/elevenlabs-mcp-experiments'
If you have feedback or need assistance with the MCP directory API, please join our Discord server