CHAP Coordinator for VS Code
io.github.brightbeamai/chap
Auditable records of human decisions over AI agent work. Approvals, edits, overrides, escalations.
client:VS Code
transport:stdio
runtime:npm
Install CHAP Coordinator in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "chap-db-path",
"description": "CHAP_DB_PATH",
"password": true
},
{
"type": "promptString",
"id": "chap-profiles",
"description": "CHAP_PROFILES",
"password": true
}
],
"servers": {
"chap": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@brightbeamai/chap-coordinator-mcp"
],
"env": {
"CHAP_DB_PATH": "${input:chap-db-path}",
"CHAP_PROFILES": "${input:chap-profiles}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs