Skip to content
VS Code

januscope for VS Code

io.github.giancarloerra/januscope

Local MCP proxy for tool restrictions, response redaction, audit logs, and database schema context.

client:VS Code transport:stdio runtime:npm

Install januscope in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "januscope-user",
      "description": "JANUSCOPE_USER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "januscope-team",
      "description": "JANUSCOPE_TEAM",
      "password": true
    },
    {
      "type": "promptString",
      "id": "januscope-session",
      "description": "JANUSCOPE_SESSION",
      "password": true
    }
  ],
  "servers": {
    "januscope": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "januscope"
      ],
      "env": {
        "JANUSCOPE_USER": "${input:januscope-user}",
        "JANUSCOPE_TEAM": "${input:januscope-team}",
        "JANUSCOPE_SESSION": "${input:januscope-session}"
      }
    }
  }
}

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

januscope in other clients