ElevenLabs MCP Server
AIstdiov0.4.0
Official MCP server for the ElevenLabs audio platform. Gives AI agents text-to-speech, voice cloning, speech-to-text transcription, sound-effect generation, and voice library management. Useful for building voice agents, narration, audiobooks, dubbing, and accessible audio experiences.
Connect
Add this configuration to .claude/mcp.json
{
"mcpServers": {
"elevenlabs": {
"command": "uvx",
"args": [
"elevenlabs-mcp"
],
"env": {
"ELEVENLABS_API_KEY": "<YOUR_ELEVENLABS_API_KEY>"
}
}
}
}Tools (2)
text_to_speech
Convert text to natural speech audio using a selected voice.
{
"type": "object",
"required": [
"text"
],
"properties": {
"text": {
"type": "string",
"description": "Text to synthesize"
},
"voice_id": {
"type": "string",
"description": "Voice ID to use"
}
}
}speech_to_text
Transcribe an audio file to text with optional speaker diarization.
{
"type": "object",
"required": [
"file_path"
],
"properties": {
"file_path": {
"type": "string",
"description": "Path to the audio file to transcribe"
}
}
}Resources
This server does not expose any resources.
Prompts
This server does not expose any prompts.
Server Information
- Author
- ElevenLabs (@elevenlabs)
- License
- MIT
- Version
- 0.4.0
- Stars
- 1,500
- Last Updated
- July 9, 2026