Skip to content

Commit bf23b0c

Browse files
committed
Add server.json
1 parent 8386bde commit bf23b0c

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414
Official ElevenLabs <a href="https://github.com/modelcontextprotocol">Model Context Protocol (MCP)</a> server that enables interaction with powerful Text to Speech and audio processing APIs. This server allows MCP clients like <a href="https://www.anthropic.com/claude">Claude Desktop</a>, <a href="https://www.cursor.so">Cursor</a>, <a href="https://codeium.com/windsurf">Windsurf</a>, <a href="https://github.com/openai/openai-agents-python">OpenAI Agents</a> and others to generate speech, clone voices, transcribe audio, and more.
1515
</p>
1616

17+
<!--
18+
mcp-name: io.github.elevenlabs/elevenlabs-mcp
19+
-->
20+
1721
## Quickstart with Claude Desktop
1822

1923
1. Get your API key from [ElevenLabs](https://elevenlabs.io/app/settings/api-keys). There is a free tier with 10k credits per month.

server.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
3+
"name": "io.github.elevenlabs/elevenlabs-mcp",
4+
"description": "Official ElevenLabs MCP server that enables interaction with powerful Text to Speech, Voice Agents and audio processing APIs",
5+
"status": "active",
6+
"repository": {
7+
"url": "https://github.com/elevenlabs/elevenlabs-mcp",
8+
"source": "github"
9+
},
10+
"version": "0.7.0",
11+
"packages": [
12+
{
13+
"registry_type": "pypi",
14+
"registry_base_url": "https://pypi.org",
15+
"identifier": "elevenlabs-mcp",
16+
"version": "0.7.0",
17+
"transport": {
18+
"type": "stdio"
19+
},
20+
"environment_variables": [
21+
{
22+
"description": "Your ElevenLabs API key",
23+
"is_required": true,
24+
"format": "string",
25+
"is_secret": true,
26+
"name": "ELEVENLABS_API_KEY"
27+
},
28+
{
29+
"description": "The base path for the MCP server. Defaults to $HOME/Desktop if not provided.",
30+
"is_required": false,
31+
"format": "string",
32+
"is_secret": false,
33+
"name": "ELEVENLABS_MCP_BASE_PATH"
34+
}
35+
]
36+
}
37+
]
38+
}

0 commit comments

Comments
 (0)