@runapi.ai/elevenlabs-mcp 0.1.1 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +49 -32
- package/package.json +9 -5
- package/server.json +4 -4
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
<h1 align="center">ElevenLabs MCP Server</h1>
|
|
1
|
+
<h1 align="center">RunAPI ElevenLabs MCP Server</h1>
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<strong>
|
|
4
|
+
<strong>ElevenLabs API access for AI agents: create audio generation tasks, poll results, and check pricing through one focused MCP server.</strong>
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
@@ -10,32 +10,33 @@
|
|
|
10
10
|
|
|
11
11
|
<p align="center">
|
|
12
12
|
<a href="https://www.npmjs.com/package/@runapi.ai/elevenlabs-mcp"><img src="https://img.shields.io/npm/v/%40runapi.ai/elevenlabs-mcp?style=flat-square&color=blue" alt="npm version"></a>
|
|
13
|
+
<a href="https://github.com/runapi-ai/elevenlabs-mcp"><img src="https://img.shields.io/badge/GitHub-runapi--ai%2Felevenlabs--mcp-24292f?style=flat-square" alt="GitHub repository"></a>
|
|
13
14
|
<a href="LICENSE"><img src="https://img.shields.io/badge/License-Apache_2.0-blue?style=flat-square" alt="Apache-2.0 license"></a>
|
|
14
15
|
<img src="https://img.shields.io/badge/Type-MCP_Server-blue?style=flat-square" alt="MCP Server">
|
|
15
|
-
<img src="https://img.shields.io/badge/Models-6-
|
|
16
|
+
<img src="https://img.shields.io/badge/Models-6-16a34a?style=flat-square" alt="6 models">
|
|
16
17
|
</p>
|
|
17
18
|
|
|
18
19
|
<p align="center">
|
|
19
|
-
<a href="#
|
|
20
|
+
<a href="#install">Install</a> |
|
|
20
21
|
<a href="#tools">Tools</a> |
|
|
21
22
|
<a href="#models">Models</a> |
|
|
22
|
-
<a href="#
|
|
23
|
-
<a href="#configuration">Configuration</a>
|
|
23
|
+
<a href="#agent-prompts">Agent Prompts</a> |
|
|
24
|
+
<a href="#configuration">Configuration</a> |
|
|
25
|
+
<a href="#links">Links</a>
|
|
24
26
|
</p>
|
|
25
27
|
|
|
26
28
|
---
|
|
27
29
|
|
|
28
|
-
##
|
|
30
|
+
## Why This Package?
|
|
29
31
|
|
|
30
|
-
`@runapi.ai/elevenlabs-mcp` is a focused
|
|
31
|
-
It
|
|
32
|
+
`@runapi.ai/elevenlabs-mcp` is a focused Model Context Protocol server for the **ElevenLabs** model line on RunAPI.
|
|
33
|
+
It gives MCP-compatible assistants direct access to 5 endpoints and 6 model variants without loading the full RunAPI catalog.
|
|
32
34
|
|
|
33
|
-
|
|
34
|
-
This package is a pure client; it does not run a local generation backend.
|
|
35
|
+
Use this per-model server when an agent should stay scoped to ElevenLabs. Use [`@runapi.ai/mcp`](https://github.com/runapi-ai/mcp) when one assistant should discover every RunAPI model line.
|
|
35
36
|
|
|
36
37
|
---
|
|
37
38
|
|
|
38
|
-
##
|
|
39
|
+
## Install
|
|
39
40
|
|
|
40
41
|
Add it to Claude Code:
|
|
41
42
|
|
|
@@ -43,10 +44,13 @@ Add it to Claude Code:
|
|
|
43
44
|
claude mcp add elevenlabs -s user -- npx -y @runapi.ai/elevenlabs-mcp
|
|
44
45
|
```
|
|
45
46
|
|
|
46
|
-
|
|
47
|
-
- `-s project`: team-shared, written to `.mcp.json` in the current repo so it can be committed.
|
|
47
|
+
Use project scope when the server should be shared with a repository:
|
|
48
48
|
|
|
49
|
-
|
|
49
|
+
```bash
|
|
50
|
+
claude mcp add elevenlabs -s project -- npx -y @runapi.ai/elevenlabs-mcp
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Codex, Cursor, Windsurf, VS Code, Roo Code, and other MCP hosts can use the same stdio command:
|
|
50
54
|
|
|
51
55
|
```json
|
|
52
56
|
{
|
|
@@ -60,8 +64,9 @@ For other hosts, or for manual configuration, use this JSON:
|
|
|
60
64
|
}
|
|
61
65
|
```
|
|
62
66
|
|
|
63
|
-
Create an API key at [runapi.ai](https://runapi.ai) and expose it as `RUNAPI_API_KEY`.
|
|
64
|
-
|
|
67
|
+
Create an API key at [runapi.ai](https://runapi.ai) and expose it as `RUNAPI_API_KEY`. `check_pricing` can run without a key; task creation and status polling require one.
|
|
68
|
+
|
|
69
|
+
Ready-made examples are in [`examples/`](examples/) for Claude, Cursor, Windsurf, VS Code, and Roo Code.
|
|
65
70
|
|
|
66
71
|
---
|
|
67
72
|
|
|
@@ -69,19 +74,19 @@ See `examples/` for ready-made config files for Claude, Cursor, Windsurf, VS Cod
|
|
|
69
74
|
|
|
70
75
|
| Tool | Auth | Purpose |
|
|
71
76
|
|---|---|---|
|
|
72
|
-
| `isolate_audio` | Yes | Create
|
|
73
|
-
| `speech_to_text` | Yes | Create
|
|
74
|
-
| `text_to_dialogue` | Yes | Create
|
|
75
|
-
| `text_to_sound` | Yes | Create
|
|
76
|
-
| `text_to_speech` | Yes | Create
|
|
77
|
+
| `isolate_audio` | Yes | Create an ElevenLabs isolate audio task and optionally wait for a terminal status. Returns the task id, status, output URLs, and pricing snapshot. |
|
|
78
|
+
| `speech_to_text` | Yes | Create an ElevenLabs speech to text task and optionally wait for a terminal status. Returns the task id, status, output URLs, and pricing snapshot. |
|
|
79
|
+
| `text_to_dialogue` | Yes | Create an ElevenLabs text to dialogue task and optionally wait for a terminal status. Returns the task id, status, output URLs, and pricing snapshot. |
|
|
80
|
+
| `text_to_sound` | Yes | Create an ElevenLabs text to sound task and optionally wait for a terminal status. Returns the task id, status, output URLs, and pricing snapshot. |
|
|
81
|
+
| `text_to_speech` | Yes | Create an ElevenLabs text to speech task and optionally wait for a terminal status. Returns the task id, status, output URLs, and pricing snapshot. |
|
|
77
82
|
| `get_task` | Yes | Fetch the current status and latest payload for an existing task. |
|
|
78
|
-
| `check_pricing` | No | Look up the current
|
|
83
|
+
| `check_pricing` | No | Look up the current pricing snapshot for a ElevenLabs model and endpoint. |
|
|
79
84
|
|
|
80
85
|
---
|
|
81
86
|
|
|
82
87
|
## Models
|
|
83
88
|
|
|
84
|
-
ElevenLabs covers 6
|
|
89
|
+
ElevenLabs covers 6 model variants across 5 endpoints. Each tool accepts the models listed for it:
|
|
85
90
|
|
|
86
91
|
| Tool | Models |
|
|
87
92
|
|---|---|
|
|
@@ -91,13 +96,13 @@ ElevenLabs covers 6 models across 5 endpoints. Each tool accepts the models list
|
|
|
91
96
|
| `text_to_sound` | `sound-effect-v2` |
|
|
92
97
|
| `text_to_speech` | `text-to-speech-multilingual-v2`, `text-to-speech-turbo-v2.5` |
|
|
93
98
|
|
|
94
|
-
|
|
99
|
+
Model availability can change between releases. Use `check_pricing` or the [ElevenLabs model page](https://runapi.ai/models/elevenlabs) for the current catalog view.
|
|
95
100
|
|
|
96
101
|
---
|
|
97
102
|
|
|
98
|
-
##
|
|
103
|
+
## Agent Prompts
|
|
99
104
|
|
|
100
|
-
Ask your assistant in natural language; it
|
|
105
|
+
Ask your assistant in natural language; it can inspect pricing, create the task, and return the task id plus output URLs.
|
|
101
106
|
|
|
102
107
|
### Create a task
|
|
103
108
|
|
|
@@ -105,7 +110,7 @@ Ask your assistant in natural language; it uses the tools to confirm pricing and
|
|
|
105
110
|
Run an ElevenLabs isolate audio task with RunAPI.
|
|
106
111
|
```
|
|
107
112
|
|
|
108
|
-
The assistant
|
|
113
|
+
The assistant can call `check_pricing`, then `isolate_audio`, and return the task id, status, and output URLs.
|
|
109
114
|
|
|
110
115
|
### Submit without waiting
|
|
111
116
|
|
|
@@ -115,13 +120,13 @@ Create the task but don't wait for it to finish.
|
|
|
115
120
|
|
|
116
121
|
The assistant calls the create tool with `wait: false` and returns the task id. Check on it later with `get_task`.
|
|
117
122
|
|
|
118
|
-
### Check pricing
|
|
123
|
+
### Check pricing before creating
|
|
119
124
|
|
|
120
125
|
```text
|
|
121
|
-
|
|
126
|
+
Check current ElevenLabs pricing, then create the task if it matches my request.
|
|
122
127
|
```
|
|
123
128
|
|
|
124
|
-
The assistant calls `check_pricing` and
|
|
129
|
+
The assistant calls `check_pricing` and can link to the [ElevenLabs model page](https://runapi.ai/models/elevenlabs) for the canonical catalog entry.
|
|
125
130
|
|
|
126
131
|
---
|
|
127
132
|
|
|
@@ -140,7 +145,19 @@ Example config file:
|
|
|
140
145
|
}
|
|
141
146
|
```
|
|
142
147
|
|
|
143
|
-
Do not commit real API keys. Get one at [runapi.ai](https://runapi.ai)
|
|
148
|
+
Do not commit real API keys. Get one at [runapi.ai](https://runapi.ai).
|
|
149
|
+
|
|
150
|
+
---
|
|
151
|
+
|
|
152
|
+
## Links
|
|
153
|
+
|
|
154
|
+
| Resource | URL |
|
|
155
|
+
|---|---|
|
|
156
|
+
| ElevenLabs model page | [https://runapi.ai/models/elevenlabs](https://runapi.ai/models/elevenlabs) |
|
|
157
|
+
| npm package | [@runapi.ai/elevenlabs-mcp](https://www.npmjs.com/package/@runapi.ai/elevenlabs-mcp) |
|
|
158
|
+
| GitHub repository | [runapi-ai/elevenlabs-mcp](https://github.com/runapi-ai/elevenlabs-mcp) |
|
|
159
|
+
| RunAPI MCP overview | [runapi.ai/mcp](https://runapi.ai/mcp) |
|
|
160
|
+
| RunAPI docs | [runapi.ai/docs](https://runapi.ai/docs) |
|
|
144
161
|
|
|
145
162
|
---
|
|
146
163
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@runapi.ai/elevenlabs-mcp",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "ElevenLabs MCP server for
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"description": "RunAPI ElevenLabs MCP server for audio generation: create tasks, poll results, and check pricing across 6 model variants from Claude Code, Codex, Cursor, and VS Code.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -25,12 +25,16 @@
|
|
|
25
25
|
},
|
|
26
26
|
"keywords": [
|
|
27
27
|
"runapi",
|
|
28
|
+
"runapi-ai",
|
|
28
29
|
"mcp",
|
|
30
|
+
"mcp-server",
|
|
29
31
|
"model-context-protocol",
|
|
30
|
-
"ai",
|
|
32
|
+
"ai-agents",
|
|
33
|
+
"claude-code",
|
|
34
|
+
"cursor",
|
|
35
|
+
"vscode",
|
|
31
36
|
"elevenlabs",
|
|
32
37
|
"elevenlabs-mcp",
|
|
33
|
-
"elevenlabs-ai",
|
|
34
38
|
"elevenlabs-api",
|
|
35
39
|
"audio-generation",
|
|
36
40
|
"ai-audio",
|
|
@@ -42,7 +46,7 @@
|
|
|
42
46
|
],
|
|
43
47
|
"author": "RunAPI",
|
|
44
48
|
"license": "Apache-2.0",
|
|
45
|
-
"homepage": "https://runapi.ai",
|
|
49
|
+
"homepage": "https://runapi.ai/models/elevenlabs",
|
|
46
50
|
"repository": {
|
|
47
51
|
"type": "git",
|
|
48
52
|
"url": "git+https://github.com/runapi-ai/elevenlabs-mcp.git"
|
package/server.json
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
3
|
"name": "io.github.runapi-builder/elevenlabs-mcp",
|
|
4
|
-
"description": "RunAPI MCP server for ElevenLabs: create tasks, poll status,
|
|
4
|
+
"description": "RunAPI MCP server for ElevenLabs: create tasks, poll status, check pricing.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "https://github.com/runapi-ai/elevenlabs-mcp",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.1.
|
|
9
|
+
"version": "0.1.3",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"identifier": "@runapi.ai/elevenlabs-mcp",
|
|
14
|
-
"version": "0.1.
|
|
14
|
+
"version": "0.1.3",
|
|
15
15
|
"transport": {
|
|
16
16
|
"type": "stdio"
|
|
17
17
|
},
|
|
18
18
|
"environmentVariables": [
|
|
19
19
|
{
|
|
20
|
-
"description": "RunAPI API key.
|
|
20
|
+
"description": "RunAPI API key. Create one at https://runapi.ai",
|
|
21
21
|
"isRequired": true,
|
|
22
22
|
"format": "string",
|
|
23
23
|
"isSecret": true,
|