Skip to content

Commit 08b6655

Browse files
claudeits-mash
authored andcommitted
Add ElevenLabs MCP server definition
Official ElevenLabs MCP server for voice synthesis, cloning, and audio. Uses elevenlabs-mcp Python package via uvx with stdio transport. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx
1 parent 0217546 commit 08b6655

1 file changed

Lines changed: 64 additions & 0 deletions

File tree

servers/com.elevenlabs-mcp.json

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.elevenlabs-mcp",
4+
"name": "ElevenLabs",
5+
"alias": "elevenlabs",
6+
"description": "Generate speech, clone voices, create sound effects, and manage audio with the ElevenLabs API. Text-to-speech, voice design, and audio isolation.",
7+
"icon": "https://avatars.githubusercontent.com/u/94471909?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["ai-ml"],
10+
"tags": ["elevenlabs", "voice", "text-to-speech", "tts", "audio", "speech-synthesis", "voice-cloning"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "uvx",
15+
"args": ["elevenlabs-mcp"],
16+
"env": {
17+
"ELEVENLABS_API_KEY": "${input:ELEVENLABS_API_KEY}"
18+
},
19+
"metadata": {
20+
"inputs": [
21+
{
22+
"id": "ELEVENLABS_API_KEY",
23+
"label": "ElevenLabs API Key",
24+
"description": "API key for the ElevenLabs platform.",
25+
"type": "password",
26+
"required": true,
27+
"secret": true,
28+
"placeholder": "sk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
29+
"obtain": {
30+
"url": "https://elevenlabs.io/app/settings/api-keys",
31+
"instructions": "1. Go to elevenlabs.io > Profile + API key\n2. Click 'Create API Key'\n3. Copy the key",
32+
"button_label": "Create API Key"
33+
}
34+
}
35+
]
36+
}
37+
},
38+
39+
"auth": {
40+
"type": "api_key",
41+
"instructions": "Create an API key at https://elevenlabs.io/app/settings/api-keys"
42+
},
43+
44+
"contributor": {
45+
"name": "ElevenLabs",
46+
"github": "elevenlabs",
47+
"url": "https://elevenlabs.io"
48+
},
49+
50+
"links": {
51+
"repository": "https://github.com/elevenlabs/elevenlabs-mcp",
52+
"homepage": "https://elevenlabs.io",
53+
"documentation": "https://github.com/elevenlabs/elevenlabs-mcp#readme"
54+
},
55+
56+
"platforms": ["all"],
57+
58+
"capabilities": {
59+
"tools": true,
60+
"resources": false,
61+
"prompts": false,
62+
"read_only_mode": false
63+
}
64+
}

0 commit comments

Comments
 (0)