ReviewGuard for VS Code
com.eclipsesource/review-guard
Safety boundary for agent written GitHub PR reviews: pending and invisible, submitting is opt-in
client:VS Code
transport:stdio
runtime:npm
Install ReviewGuard in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "github-token",
"description": "GITHUB_TOKEN",
"password": true
}
],
"servers": {
"review-guard": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@eclipsesource/review-guard-mcp"
],
"env": {
"GITHUB_TOKEN": "${input:github-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs