Vouch for VS Code
io.github.vouchdev/vouch
Git-native, review-gated knowledge base for LLM agents. Cited retrieval, audited writes.
client:VS Code
transport:stdio
runtime:pypi
Install Vouch in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "vouch-kb-path",
"description": "VOUCH_KB_PATH",
"password": true
}
],
"servers": {
"vouch": {
"type": "stdio",
"command": "uvx",
"args": [
"vouch-kb"
],
"env": {
"VOUCH_KB_PATH": "${input:vouch-kb-path}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs