Windy Word for VS Code
io.github.sneakyfree/windy-word-mcp
Control Windy Word voice-to-text from any MCP agent — 60 tools across 12 categories.
client:VS Code
transport:stdio
runtime:npm
Install Windy Word in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "windy-word-mcp-host",
"description": "WINDY_WORD_MCP_HOST",
"password": true
},
{
"type": "promptString",
"id": "windy-word-mcp-port",
"description": "WINDY_WORD_MCP_PORT",
"password": true
},
{
"type": "promptString",
"id": "windy-word-mcp-timeout-ms",
"description": "WINDY_WORD_MCP_TIMEOUT_MS",
"password": true
}
],
"servers": {
"windy-word-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"windy-word-mcp"
],
"env": {
"WINDY_WORD_MCP_HOST": "${input:windy-word-mcp-host}",
"WINDY_WORD_MCP_PORT": "${input:windy-word-mcp-port}",
"WINDY_WORD_MCP_TIMEOUT_MS": "${input:windy-word-mcp-timeout-ms}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs