Skip to content
VS Code

BriefGate for VS Code

io.github.sekera-radim/briefgate

Client intake for AI agents: get files, copy and logins from clients, chased automatically.

client:VS Code transport:stdio runtime:npm

Install BriefGate in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "briefgate-api-key",
      "description": "BRIEFGATE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "briefgate-base-url",
      "description": "BRIEFGATE_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "briefgate": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@briefgate/mcp"
      ],
      "env": {
        "BRIEFGATE_API_KEY": "${input:briefgate-api-key}",
        "BRIEFGATE_BASE_URL": "${input:briefgate-base-url}"
      }
    }
  }
}

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

BriefGate in other clients