Skip to content
VS Code

ElevenLabs for VS Code

io.github.mindstone/mcp-server-elevenlabs

ElevenLabs MCP server: TTS, music, sound effects, voices, and audio transcription

client:VS Code transport:stdio runtime:npm

Install ElevenLabs in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "elevenlabs-api-key",
      "description": "ELEVENLABS_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-workspace-path",
      "description": "MCP_WORKSPACE_PATH",
      "password": true
    }
  ],
  "servers": {
    "mcp-server-elevenlabs": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@mindstone/mcp-server-elevenlabs"
      ],
      "env": {
        "ELEVENLABS_API_KEY": "${input:elevenlabs-api-key}",
        "MCP_WORKSPACE_PATH": "${input:mcp-workspace-path}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

ElevenLabs in other clients