Skip to content
VS Code

GetABrain for VS Code

io.github.guitarmaniac24/getabrain

Real human judgment as agent tools — ask a question, get a structured human answer back.

client:VS Code transport:stdio runtime:npm

Install GetABrain in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "getabrain-api-key",
      "description": "GETABRAIN_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "getabrain-api-secret",
      "description": "GETABRAIN_API_SECRET",
      "password": true
    }
  ],
  "servers": {
    "getabrain": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@getabrain/mcp-server"
      ],
      "env": {
        "GETABRAIN_API_KEY": "${input:getabrain-api-key}",
        "GETABRAIN_API_SECRET": "${input:getabrain-api-secret}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

GetABrain in other clients