elevenlabs-mcp-experiments
Enables querying ElevenLabs workspace data, including listing agents and retrieving evaluation runs, through Claude Desktop or any MCP client.
README
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. ElevenAgents talks to external systems through tool calls and through MCP. I write the tool definitions every week at work but I've never built an MCP server myself. This repo fixes that.
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, returns a summary of the latest eval run
Read-only on purpose. Mutating things by accident from a chat client is not a fun way to learn the protocol.
Run
python -m venv venv
source venv/bin/activate
pip install -e .
cp .env.example .env # add ELEVENLABS_API_KEY
python server.py
To 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
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.