@runapi.ai/elevenlabs-mcp 0.1.0 → 0.1.2
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 +138 -25
- package/dist/src/meta.d.ts +1 -1
- package/dist/src/meta.js +1 -1
- package/package.json +19 -4
- package/server.json +4 -4
package/README.md
CHANGED
|
@@ -1,40 +1,56 @@
|
|
|
1
|
-
|
|
1
|
+
<h1 align="center">RunAPI ElevenLabs MCP Server</h1>
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
<p align="center">
|
|
4
|
+
<strong>ElevenLabs API access for AI agents: create audio generation tasks, poll results, and check pricing through one focused MCP server.</strong>
|
|
5
|
+
</p>
|
|
5
6
|
|
|
6
|
-
|
|
7
|
+
<p align="center">
|
|
8
|
+
<sub>Works with Claude Code, Codex, Cursor, Windsurf, VS Code, Roo Code, and any MCP-compatible host.</sub>
|
|
9
|
+
</p>
|
|
7
10
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
-
|
|
14
|
-
|
|
11
|
+
<p align="center">
|
|
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>
|
|
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>
|
|
15
|
+
<img src="https://img.shields.io/badge/Type-MCP_Server-blue?style=flat-square" alt="MCP Server">
|
|
16
|
+
<img src="https://img.shields.io/badge/Models-6-16a34a?style=flat-square" alt="6 models">
|
|
17
|
+
</p>
|
|
15
18
|
|
|
16
|
-
|
|
19
|
+
<p align="center">
|
|
20
|
+
<a href="#install">Install</a> |
|
|
21
|
+
<a href="#tools">Tools</a> |
|
|
22
|
+
<a href="#models">Models</a> |
|
|
23
|
+
<a href="#agent-prompts">Agent Prompts</a> |
|
|
24
|
+
<a href="#configuration">Configuration</a> |
|
|
25
|
+
<a href="#links">Links</a>
|
|
26
|
+
</p>
|
|
17
27
|
|
|
18
|
-
|
|
19
|
-
it to `~/.config/runapi/config.json`:
|
|
28
|
+
---
|
|
20
29
|
|
|
21
|
-
|
|
22
|
-
mkdir -p ~/.config/runapi
|
|
23
|
-
echo '{"api_key":"YOUR_KEY"}' > ~/.config/runapi/config.json
|
|
24
|
-
```
|
|
30
|
+
## Why This Package?
|
|
25
31
|
|
|
26
|
-
|
|
27
|
-
|
|
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.
|
|
28
34
|
|
|
29
|
-
|
|
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.
|
|
30
36
|
|
|
31
|
-
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
## Install
|
|
40
|
+
|
|
41
|
+
Add it to Claude Code:
|
|
32
42
|
|
|
33
43
|
```bash
|
|
34
|
-
npx -y @runapi.ai/elevenlabs-mcp
|
|
44
|
+
claude mcp add elevenlabs -s user -- npx -y @runapi.ai/elevenlabs-mcp
|
|
35
45
|
```
|
|
36
46
|
|
|
37
|
-
|
|
47
|
+
Use project scope when the server should be shared with a repository:
|
|
48
|
+
|
|
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:
|
|
38
54
|
|
|
39
55
|
```json
|
|
40
56
|
{
|
|
@@ -48,6 +64,103 @@ Add it to an MCP client (see `examples/` for per-client configs):
|
|
|
48
64
|
}
|
|
49
65
|
```
|
|
50
66
|
|
|
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.
|
|
70
|
+
|
|
71
|
+
---
|
|
72
|
+
|
|
73
|
+
## Tools
|
|
74
|
+
|
|
75
|
+
| Tool | Auth | Purpose |
|
|
76
|
+
|---|---|---|
|
|
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. |
|
|
82
|
+
| `get_task` | Yes | Fetch the current status and latest payload for an existing task. |
|
|
83
|
+
| `check_pricing` | No | Look up the current pricing snapshot for a ElevenLabs model and endpoint. |
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
87
|
+
## Models
|
|
88
|
+
|
|
89
|
+
ElevenLabs covers 6 model variants across 5 endpoints. Each tool accepts the models listed for it:
|
|
90
|
+
|
|
91
|
+
| Tool | Models |
|
|
92
|
+
|---|---|
|
|
93
|
+
| `isolate_audio` | `audio-isolation` |
|
|
94
|
+
| `speech_to_text` | `speech-to-text` |
|
|
95
|
+
| `text_to_dialogue` | `text-to-dialogue-v3` |
|
|
96
|
+
| `text_to_sound` | `sound-effect-v2` |
|
|
97
|
+
| `text_to_speech` | `text-to-speech-multilingual-v2`, `text-to-speech-turbo-v2.5` |
|
|
98
|
+
|
|
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.
|
|
100
|
+
|
|
101
|
+
---
|
|
102
|
+
|
|
103
|
+
## Agent Prompts
|
|
104
|
+
|
|
105
|
+
Ask your assistant in natural language; it can inspect pricing, create the task, and return the task id plus output URLs.
|
|
106
|
+
|
|
107
|
+
### Create a task
|
|
108
|
+
|
|
109
|
+
```text
|
|
110
|
+
Run an ElevenLabs isolate audio task with RunAPI.
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
The assistant can call `check_pricing`, then `isolate_audio`, and return the task id, status, and output URLs.
|
|
114
|
+
|
|
115
|
+
### Submit without waiting
|
|
116
|
+
|
|
117
|
+
```text
|
|
118
|
+
Create the task but don't wait for it to finish.
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
The assistant calls the create tool with `wait: false` and returns the task id. Check on it later with `get_task`.
|
|
122
|
+
|
|
123
|
+
### Check pricing before creating
|
|
124
|
+
|
|
125
|
+
```text
|
|
126
|
+
Check current ElevenLabs pricing, then create the task if it matches my request.
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
The assistant calls `check_pricing` and can link to the [ElevenLabs model page](https://runapi.ai/models/elevenlabs) for the canonical catalog entry.
|
|
130
|
+
|
|
131
|
+
---
|
|
132
|
+
|
|
133
|
+
## Configuration
|
|
134
|
+
|
|
135
|
+
The server reads the API key in this order:
|
|
136
|
+
|
|
137
|
+
1. `RUNAPI_API_KEY` environment variable
|
|
138
|
+
2. `~/.config/runapi/config.json`
|
|
139
|
+
|
|
140
|
+
Example config file:
|
|
141
|
+
|
|
142
|
+
```json
|
|
143
|
+
{
|
|
144
|
+
"apiKey": "your_runapi_key"
|
|
145
|
+
}
|
|
146
|
+
```
|
|
147
|
+
|
|
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) |
|
|
161
|
+
|
|
162
|
+
---
|
|
163
|
+
|
|
51
164
|
## License
|
|
52
165
|
|
|
53
|
-
Apache
|
|
166
|
+
Licensed under the [Apache License, Version 2.0](LICENSE).
|
package/dist/src/meta.d.ts
CHANGED
package/dist/src/meta.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@runapi.ai/elevenlabs-mcp",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "RunAPI MCP server for
|
|
3
|
+
"version": "0.1.2",
|
|
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,13 +25,28 @@
|
|
|
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",
|
|
36
|
+
"elevenlabs",
|
|
37
|
+
"elevenlabs-mcp",
|
|
38
|
+
"elevenlabs-api",
|
|
39
|
+
"audio-generation",
|
|
40
|
+
"ai-audio",
|
|
41
|
+
"isolate-audio",
|
|
42
|
+
"speech-to-text",
|
|
43
|
+
"text-to-dialogue",
|
|
44
|
+
"text-to-sound",
|
|
45
|
+
"text-to-speech"
|
|
31
46
|
],
|
|
32
47
|
"author": "RunAPI",
|
|
33
48
|
"license": "Apache-2.0",
|
|
34
|
-
"homepage": "https://runapi.ai",
|
|
49
|
+
"homepage": "https://runapi.ai/models/elevenlabs",
|
|
35
50
|
"repository": {
|
|
36
51
|
"type": "git",
|
|
37
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.2",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"identifier": "@runapi.ai/elevenlabs-mcp",
|
|
14
|
-
"version": "0.1.
|
|
14
|
+
"version": "0.1.2",
|
|
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,
|