elevenlabs mcp for VS Code
io.github.runapi-builder/elevenlabs-mcp
RunAPI MCP server for ElevenLabs: create tasks, poll status, check pricing.
client:VS Code
transport:stdio
runtime:npm
Install elevenlabs mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "runapi-api-key",
"description": "RUNAPI_API_KEY",
"password": true
}
],
"servers": {
"elevenlabs-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@runapi.ai/elevenlabs-mcp"
],
"env": {
"RUNAPI_API_KEY": "${input:runapi-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs