WebVoice for VS Code
io.github.supermarco74/webvoice-mcp
WebVoice MCP: chat, TTS, STT, translate, images. Email signup, welcome credits, optional Solana.
client:VS Code
transport:stdio
runtime:pypi
Install WebVoice in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "webvoice-api-key",
"description": "WEBVOICE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "webvoice-base-url",
"description": "WEBVOICE_BASE_URL",
"password": true
}
],
"servers": {
"webvoice-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"webvoice-mcp"
],
"env": {
"WEBVOICE_API_KEY": "${input:webvoice-api-key}",
"WEBVOICE_BASE_URL": "${input:webvoice-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs