webear for VS Code
io.github.asume21/webear
Give your AI coding assistant ears — capture, analyze, and describe live audio.
client:VS Code
transport:stdio
runtime:npm
Install webear in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "webear-base-url",
"description": "WEBEAR_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "codedswitch-api-key",
"description": "CODEDSWITCH_API_KEY",
"password": true
}
],
"servers": {
"webear": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"webear"
],
"env": {
"WEBEAR_BASE_URL": "${input:webear-base-url}",
"CODEDSWITCH_API_KEY": "${input:codedswitch-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