ElevenLabs Agents for VS Code
io.github.mindstone/mcp-server-elevenlabs-agents
ElevenLabs Conversational AI: agents, calls, conversations, and knowledge base for MCP hosts
client:VS Code
transport:stdio
runtime:npm
Install ElevenLabs Agents 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-agents": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@mindstone/mcp-server-elevenlabs-agents"
],
"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