robrain for VS Code
io.github.adelinamart/robrain
Self-hosted decision memory for AI coding agents; warns before re-proposing a rejected approach.
client:VS Code
transport:stdio
runtime:npm
Install robrain in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "perception-api-url",
"description": "PERCEPTION_API_URL",
"password": true
},
{
"type": "promptString",
"id": "perception-api-key",
"description": "PERCEPTION_API_KEY",
"password": true
}
],
"servers": {
"robrain": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"robrain"
],
"env": {
"PERCEPTION_API_URL": "${input:perception-api-url}",
"PERCEPTION_API_KEY": "${input:perception-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