Description
An ElevenLabs MCP server implementation that provides AI assistants with access to ElevenLabs' text-to-speech, voice cloning, and conversation AI capabilities. Developed by the ElevenLabs team, this server enables voice synthesis with customizable parameters, audio file handling with similarity detection, and creation of conversational agents with specific voice profiles. The implementation includes utilities for environment configuration, output path management, and Claude Desktop integration, making it particularly useful for applications requiring high-quality voice generation, audio processing, and interactive voice-based AI experiences.
Installation
npx -y elevenlabs-mcp npm install elevenlabs-mcp git clone https://github.com/elevenlabs/elevenlabs-mcp Claude Desktop Configuration
Add this configuration to your Claude Desktop config file to enable this MCP server:
Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json
Config file location: %APPDATA%\Claude\claude_desktop_config.json
Config file location: ~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"elevenlabs": {
"command": "npx",
"args": [
"-y",
"elevenlabs-mcp"
]
}
}
}