fetchmux for VS Code
io.github.krutftw/fetchmux
Self-hosted retrieval router for AI agents: budgets, provider routing, route receipts.
client:VS Code
transport:stdio
runtime:npm
Install fetchmux in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "fetchmux-base-url",
"description": "FETCHMUX_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "fetchmux-api-key",
"description": "FETCHMUX_API_KEY",
"password": true
}
],
"servers": {
"fetchmux": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@fetchmux/mcp"
],
"env": {
"FETCHMUX_BASE_URL": "${input:fetchmux-base-url}",
"FETCHMUX_API_KEY": "${input:fetchmux-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