Verified Repo Memory for VS Code
io.github.cognitivemyriad/verified-repo-memory
Stale-proof repository memory with citations + just-in-time verification + TTL (repo-scoped).
client:VS Code
transport:stdio
runtime:npm
Install Verified Repo Memory in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "vrm-ttl-days",
"description": "VRM_TTL_DAYS",
"password": true
},
{
"type": "promptString",
"id": "vrm-data-dir",
"description": "VRM_DATA_DIR",
"password": true
},
{
"type": "promptString",
"id": "vrm-max-file-bytes",
"description": "VRM_MAX_FILE_BYTES",
"password": true
},
{
"type": "promptString",
"id": "vrm-secret-scan",
"description": "VRM_SECRET_SCAN",
"password": true
}
],
"servers": {
"verified-repo-memory": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@cognitivemyriad/vrm-local"
],
"env": {
"VRM_TTL_DAYS": "${input:vrm-ttl-days}",
"VRM_DATA_DIR": "${input:vrm-data-dir}",
"VRM_MAX_FILE_BYTES": "${input:vrm-max-file-bytes}",
"VRM_SECRET_SCAN": "${input:vrm-secret-scan}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs