Skip to content

Commit 1d1f398

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for ELEVENLABS_API_KEY)
1 parent 08b6655 commit 1d1f398

1 file changed

Lines changed: 19 additions & 11 deletions

File tree

servers/com.elevenlabs-mcp.json

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,24 @@
66
"description": "Generate speech, clone voices, create sound effects, and manage audio with the ElevenLabs API. Text-to-speech, voice design, and audio isolation.",
77
"icon": "https://avatars.githubusercontent.com/u/94471909?v=4",
88
"schema_version": "2.1",
9-
"categories": ["ai-ml"],
10-
"tags": ["elevenlabs", "voice", "text-to-speech", "tts", "audio", "speech-synthesis", "voice-cloning"],
11-
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+
],
1221
"transport": {
1322
"type": "stdio",
1423
"command": "uvx",
15-
"args": ["elevenlabs-mcp"],
24+
"args": [
25+
"elevenlabs-mcp"
26+
],
1627
"env": {
1728
"ELEVENLABS_API_KEY": "${input:ELEVENLABS_API_KEY}"
1829
},
@@ -22,7 +33,7 @@
2233
"id": "ELEVENLABS_API_KEY",
2334
"label": "ElevenLabs API Key",
2435
"description": "API key for the ElevenLabs platform.",
25-
"type": "password",
36+
"type": "text",
2637
"required": true,
2738
"secret": true,
2839
"placeholder": "sk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
@@ -35,26 +46,23 @@
3546
]
3647
}
3748
},
38-
3949
"auth": {
4050
"type": "api_key",
4151
"instructions": "Create an API key at https://elevenlabs.io/app/settings/api-keys"
4252
},
43-
4453
"contributor": {
4554
"name": "ElevenLabs",
4655
"github": "elevenlabs",
4756
"url": "https://elevenlabs.io"
4857
},
49-
5058
"links": {
5159
"repository": "https://github.com/elevenlabs/elevenlabs-mcp",
5260
"homepage": "https://elevenlabs.io",
5361
"documentation": "https://github.com/elevenlabs/elevenlabs-mcp#readme"
5462
},
55-
56-
"platforms": ["all"],
57-
63+
"platforms": [
64+
"all"
65+
],
5866
"capabilities": {
5967
"tools": true,
6068
"resources": false,

0 commit comments

Comments
 (0)