Skip to content

Commit b635c2e

Browse files
authored
feat: add ElevenLabs MCP server definition (#38)
* 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 * fix: update server definition (input type 'password' -> 'text' for ELEVENLABS_API_KEY) * fix: rename server files with transport suffix - com.elevenlabs-mcp.json -> com.elevenlabs-mcp-uvx.json (id: com.elevenlabs-mcp-uvx) Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> --------- Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent c3532e1 commit b635c2e

1 file changed

Lines changed: 72 additions & 0 deletions

File tree

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.elevenlabs-mcp-uvx",
4+
"name": "ElevenLabs (uvx)",
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": [
10+
"ai-ml"
11+
],
12+
"tags": [
13+
"elevenlabs",
14+
"voice",
15+
"text-to-speech",
16+
"tts",
17+
"audio",
18+
"speech-synthesis",
19+
"voice-cloning"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "uvx",
24+
"args": [
25+
"elevenlabs-mcp"
26+
],
27+
"env": {
28+
"ELEVENLABS_API_KEY": "${input:ELEVENLABS_API_KEY}"
29+
},
30+
"metadata": {
31+
"inputs": [
32+
{
33+
"id": "ELEVENLABS_API_KEY",
34+
"label": "ElevenLabs API Key",
35+
"description": "API key for the ElevenLabs platform.",
36+
"type": "text",
37+
"required": true,
38+
"secret": true,
39+
"placeholder": "sk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
40+
"obtain": {
41+
"url": "https://elevenlabs.io/app/settings/api-keys",
42+
"instructions": "1. Go to elevenlabs.io > Profile + API key\n2. Click 'Create API Key'\n3. Copy the key",
43+
"button_label": "Create API Key"
44+
}
45+
}
46+
]
47+
}
48+
},
49+
"auth": {
50+
"type": "api_key",
51+
"instructions": "Create an API key at https://elevenlabs.io/app/settings/api-keys"
52+
},
53+
"contributor": {
54+
"name": "ElevenLabs",
55+
"github": "elevenlabs",
56+
"url": "https://elevenlabs.io"
57+
},
58+
"links": {
59+
"repository": "https://github.com/elevenlabs/elevenlabs-mcp",
60+
"homepage": "https://elevenlabs.io",
61+
"documentation": "https://github.com/elevenlabs/elevenlabs-mcp#readme"
62+
},
63+
"platforms": [
64+
"all"
65+
],
66+
"capabilities": {
67+
"tools": true,
68+
"resources": false,
69+
"prompts": false,
70+
"read_only_mode": false
71+
}
72+
}

0 commit comments

Comments
 (0)