Skip to content
VS Code

janee for VS Code

io.github.rsdouglas/janee

Secure secrets proxy for AI agents — manages API keys so agents never see raw credentials.

client:VS Code transport:stdio runtime:npm

Install janee in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "janee-config",
      "description": "JANEE_CONFIG",
      "password": true
    }
  ],
  "servers": {
    "janee": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@true-and-useful/janee"
      ],
      "env": {
        "JANEE_CONFIG": "${input:janee-config}"
      }
    }
  }
}

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

janee in other clients