1. Conduid
  2. Developer Tools
  3. ElevenLabs
MCP server · Developer Tools

ElevenLabs

The official ElevenLabs MCP server

Unclaimed MIT last commit 7 months ago other
86Excellent

Scored 4 months ago · breakdown

About ElevenLabs

ElevenLabs is an MCP server published by elevenlabs in the Developer Tools category: the official ElevenLabs MCP server. It has been installed 0 times through Conduid.

The repository has 1.2K stars and 207 forks, with the last commit 7 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx elevenlabs-mcp
Claude Code
claude mcp add elevenlabs-mcp -- npx -y @angelogiacco/elevenlabs-mcp-server
npx
npx -y @angelogiacco/elevenlabs-mcp-server

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about ElevenLabs

Powered by Claude · Grounded in docs

I know everything about ElevenLabs. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v0.12.2v0.12.2 · 4 Aug 2026What's Changed chore: bump version to 0.12.2 by @cwood-11 in https://github.com/elevenlabs/elevenlabs-mcp/pull/128 New Contributors @cwood-11 made their first contribution in https://github.com/elevenlabs/elevenlabs-mcp/pull/128 Full…
v0.12.1v0.12.1 · 3 Aug 2026What's Changed chore: bump version to 0.12.1 by @PennyroyalTea in https://github.com/elevenlabs/elevenlabs-mcp/pull/127 Full Changelog**: https://github.com/elevenlabs/elevenlabs-mcp/compare/v0.11.0...v0.12.1
v0.11.0v0.11.0 · 30 Jul 2026What's Changed feat: add simulate_conversation tool (#79) by @Harisudhan5 in https://github.com/elevenlabs/elevenlabs-mcp/pull/104 feat: default STT to scribe_v2, bump SDK to 2.56.0, release 0.11.0 by @PaulAsjes in…
v0.10.0v0.10.0 · 19 Jun 2026What's Changed Add support for Python 3.14 by @kraenhansen in https://github.com/elevenlabs/elevenlabs-mcp/pull/89 feat: Add MCP tool annotations for all 24 tools by @bryankthompson in https://github.com/elevenlabs/elevenlabs-mcp/pull/87…
v0.9.1v0.9.1 · 6 Jan 2026What's Changed Fixed path handling (issue #71) by @omChauhanDev in https://github.com/elevenlabs/elevenlabs-mcp/pull/82 feat: add Gemini Extension. by @thorwebdev in https://github.com/elevenlabs/elevenlabs-mcp/pull/83 Use OIDC for pypi…

README

export

Discord Community Twitter PyPI Tests

Quickstart with Claude Desktop

  1. Get your API key from ElevenLabs. There is a free tier with 10k credits per month.
  2. Install uv (Python package manager), install with curl -LsSf https://astral.sh/uv/install.sh | sh or see the uv repo for additional install methods.
  3. Go to Claude > Settings > Developer > Edit Config > claude_desktop_config.json to include the following:
{
  "mcpServers": {
    "ElevenLabs": {
      "command": "uvx",
      "args": ["elevenlabs-mcp"],
      "env": {
        "ELEVENLABS_API_KEY": "<insert-your-api-key-here>"
      }
    }
  }
}

If you're using Windows, you will have to enable "Developer Mode" in Claude Desktop to use the MCP server. Click "Help" in the hamburger menu at the top left and select "Enable Developer Mode".

Other MCP clients

For other clients like Cursor and Windsurf, run:

  1. pip install elevenlabs-mcp
  2. python -m elevenlabs_mcp --api-key={{PUT_YOUR_API_KEY_HERE}} --print to get the configuration. Paste it into appropriate configuration directory specified by your MCP client.

That's it. Your MCP client can now interact with ElevenLabs through these tools:

Example usage

⚠️ Warning: ElevenLabs credits are needed to use these tools.

Try asking Claude:

  • "Create an AI agent that speaks like a film noir detective and can answer questions about classic movies"
  • "Generate three voice variations for a wise, ancient dragon character, then I will choose my favorite voice to add to my voice library"
  • "Convert this recording of my voice to sound like a medieval knight"
  • "Create a soundscape of a thunderstorm in a dense jungle with animals reacting to the weather"
  • "Turn this speech into text, identify different speakers, then convert it back using unique voices for each person"

Optional features

File Output Configuration

You can configure how the MCP server handles file outputs using these environment variables in your claude_desktop_config.json:

  • ELEVENLABS_MCP_BASE_PATH: Specify the base path for file operations with relative paths (default: ~/Desktop)
  • ELEVENLABS_MCP_OUTPUT_MODE: Control how generated files are returned (default: files)

Output Modes

The ELEVENLABS_MCP_OUTPUT_MODE environment variable supports three modes:

  1. files (default): Save files to disk and return file paths

    "env": {
      "ELEVENLABS_API_KEY": "your-api-key",
      "ELEVENLABS_MCP_OUTPUT_MODE": "files"
    }
    
  2. resources: Return files as MCP resources; binary data is base64-encoded, text is returned as UTF-8 text

    "env": {
      "ELEVENLABS_API_KEY": "your-api-key",
      "ELEVENLABS_MCP_OUTPUT_MODE": "resources"
    }
    
  3. both: Save files to disk AND return as MCP resources

    "env": {
      "ELEVENLABS_API_KEY": "your-api-key",
      "ELEVENLABS_MCP_OUTPUT_MODE": "both"
    }
    

Resource Mode Benefits:

  • Files are returned directly in the MCP response as base64-encoded data
  • No disk I/O required - useful for containerized or serverless environments
  • MCP clients can access file content immediately without file system access
  • In both mode, resources can be fetched later using the elevenlabs://filename URI pattern

Use Cases:

  • files: Traditional file-based workflows, local development
  • resources: Cloud environments, MCP clients without file system access
  • both: Maximum flexibility, caching, and resource sharing scenarios

Data residency keys

You can specify the data residency region with the ELEVENLABS_API_RESIDENCY environment variable. Defaults to "us".

Note: Data residency is an enterprise only feature. See the docs for more details.

Contributing

If you want to contribute or run from source:

  1. Clone the repository:
git clone https://github.com/elevenlabs/elevenlabs-mcp
cd elevenlabs-mcp
  1. Create a virtual environment and install dependencies using uv:
uv venv
source .venv/bin/activate
uv pip install -e ".[dev]"
  1. Copy .env.example to .env and add your ElevenLabs API key:
cp .env.example .env
# Edit .env and add your API key
  1. Run the tests to make sure everything is working:
./scripts/test.sh
# Or with options
./scripts/test.sh --verbose --fail-fast
  1. Install the server in Claude Desktop: mcp install elevenlabs_mcp/server.py

  2. Debug and test locally with MCP Inspector: mcp dev elevenlabs_mcp/server.py

Troubleshooting

Logs when running with Claude Desktop can be found at:

  • Windows: %APPDATA%\Claude\logs\mcp-server-elevenlabs.log
  • macOS: ~/Library/Logs/Claude/mcp-server-elevenlabs.log

Timeouts when using certain tools

Certain ElevenLabs API operations, like voice design and audio isolation, can take a long time to resolve. When using the MCP inspector in dev mode, you might get timeout errors despite the tool completing its intended task.

This shouldn't occur when using a client like Claude.

MCP ElevenLabs: spawn uvx ENOENT

If you encounter the error "MCP ElevenLabs: spawn uvx ENOENT", confirm its absolute path by running this command in your terminal:

which uvx

Once you obtain the absolute path (e.g., /usr/local/bin/uvx), update your configuration to use that path (e.g., "command": "/usr/local/bin/uvx"). This ensures that the correct executable is referenced.

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About ElevenLabs

How do I install ElevenLabs?

Run npx elevenlabs-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is ElevenLabs safe to use with an AI agent?

Its trust score is 86 out of 100 (excellent). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is ElevenLabs still maintained?

Yes — the latest release is v0.12.2 (4 Aug 2026), and the last commit was 7 months ago. The repository has 1.2K stars and 0 open issues.