noisy coding for VS Code
io.github.noisy/noisy-coding
Voice interface for Claude Code: talk to your agent and it talks back while it works.
client:VS Code
transport:stdio
runtime:oci
Install noisy coding in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "xai-api-key",
"description": "XAI_API_KEY",
"password": true
}
],
"servers": {
"noisy-coding": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/noisy/noisy-coding:2.13.3"
],
"env": {
"XAI_API_KEY": "${input:xai-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