From 2865193945e07e07ce499af7502a2c995480b84a Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 14:20:56 +0000 Subject: [PATCH 1/3] 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 --- servers/com.elevenlabs-mcp.json | 64 +++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 servers/com.elevenlabs-mcp.json diff --git a/servers/com.elevenlabs-mcp.json b/servers/com.elevenlabs-mcp.json new file mode 100644 index 0000000..ed6a4d3 --- /dev/null +++ b/servers/com.elevenlabs-mcp.json @@ -0,0 +1,64 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.elevenlabs-mcp", + "name": "ElevenLabs", + "alias": "elevenlabs", + "description": "Generate speech, clone voices, create sound effects, and manage audio with the ElevenLabs API. Text-to-speech, voice design, and audio isolation.", + "icon": "https://avatars.githubusercontent.com/u/94471909?v=4", + "schema_version": "2.1", + "categories": ["ai-ml"], + "tags": ["elevenlabs", "voice", "text-to-speech", "tts", "audio", "speech-synthesis", "voice-cloning"], + + "transport": { + "type": "stdio", + "command": "uvx", + "args": ["elevenlabs-mcp"], + "env": { + "ELEVENLABS_API_KEY": "${input:ELEVENLABS_API_KEY}" + }, + "metadata": { + "inputs": [ + { + "id": "ELEVENLABS_API_KEY", + "label": "ElevenLabs API Key", + "description": "API key for the ElevenLabs platform.", + "type": "password", + "required": true, + "secret": true, + "placeholder": "sk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "obtain": { + "url": "https://elevenlabs.io/app/settings/api-keys", + "instructions": "1. Go to elevenlabs.io > Profile + API key\n2. Click 'Create API Key'\n3. Copy the key", + "button_label": "Create API Key" + } + } + ] + } + }, + + "auth": { + "type": "api_key", + "instructions": "Create an API key at https://elevenlabs.io/app/settings/api-keys" + }, + + "contributor": { + "name": "ElevenLabs", + "github": "elevenlabs", + "url": "https://elevenlabs.io" + }, + + "links": { + "repository": "https://github.com/elevenlabs/elevenlabs-mcp", + "homepage": "https://elevenlabs.io", + "documentation": "https://github.com/elevenlabs/elevenlabs-mcp#readme" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +} From 0c495dcb86451918557af6a04a682f2c59583753 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:08:58 +0800 Subject: [PATCH 2/3] fix: update server definition (input type 'password' -> 'text' for ELEVENLABS_API_KEY) --- servers/com.elevenlabs-mcp.json | 30 +++++++++++++++++++----------- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/servers/com.elevenlabs-mcp.json b/servers/com.elevenlabs-mcp.json index ed6a4d3..75393d1 100644 --- a/servers/com.elevenlabs-mcp.json +++ b/servers/com.elevenlabs-mcp.json @@ -6,13 +6,24 @@ "description": "Generate speech, clone voices, create sound effects, and manage audio with the ElevenLabs API. Text-to-speech, voice design, and audio isolation.", "icon": "https://avatars.githubusercontent.com/u/94471909?v=4", "schema_version": "2.1", - "categories": ["ai-ml"], - "tags": ["elevenlabs", "voice", "text-to-speech", "tts", "audio", "speech-synthesis", "voice-cloning"], - + "categories": [ + "ai-ml" + ], + "tags": [ + "elevenlabs", + "voice", + "text-to-speech", + "tts", + "audio", + "speech-synthesis", + "voice-cloning" + ], "transport": { "type": "stdio", "command": "uvx", - "args": ["elevenlabs-mcp"], + "args": [ + "elevenlabs-mcp" + ], "env": { "ELEVENLABS_API_KEY": "${input:ELEVENLABS_API_KEY}" }, @@ -22,7 +33,7 @@ "id": "ELEVENLABS_API_KEY", "label": "ElevenLabs API Key", "description": "API key for the ElevenLabs platform.", - "type": "password", + "type": "text", "required": true, "secret": true, "placeholder": "sk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", @@ -35,26 +46,23 @@ ] } }, - "auth": { "type": "api_key", "instructions": "Create an API key at https://elevenlabs.io/app/settings/api-keys" }, - "contributor": { "name": "ElevenLabs", "github": "elevenlabs", "url": "https://elevenlabs.io" }, - "links": { "repository": "https://github.com/elevenlabs/elevenlabs-mcp", "homepage": "https://elevenlabs.io", "documentation": "https://github.com/elevenlabs/elevenlabs-mcp#readme" }, - - "platforms": ["all"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false, From 464192f90bcb3946541ce5b9dcd70b9b3b6390d1 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:44:24 +0800 Subject: [PATCH 3/3] 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 --- .../{com.elevenlabs-mcp.json => com.elevenlabs-mcp-uvx.json} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename servers/{com.elevenlabs-mcp.json => com.elevenlabs-mcp-uvx.json} (96%) diff --git a/servers/com.elevenlabs-mcp.json b/servers/com.elevenlabs-mcp-uvx.json similarity index 96% rename from servers/com.elevenlabs-mcp.json rename to servers/com.elevenlabs-mcp-uvx.json index 75393d1..a09fd53 100644 --- a/servers/com.elevenlabs-mcp.json +++ b/servers/com.elevenlabs-mcp-uvx.json @@ -1,7 +1,7 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "com.elevenlabs-mcp", - "name": "ElevenLabs", + "id": "com.elevenlabs-mcp-uvx", + "name": "ElevenLabs (uvx)", "alias": "elevenlabs", "description": "Generate speech, clone voices, create sound effects, and manage audio with the ElevenLabs API. Text-to-speech, voice design, and audio isolation.", "icon": "https://avatars.githubusercontent.com/u/94471909?v=4",