Skip to content
VS Code

GenieLocker for VS Code

io.github.nhantour/genie-locker

Discover and quote quality-gated private AI inference without creating or buying a locker.

client:VS Code transport:stdio runtime:oci

Install GenieLocker in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "genie-base-url",
      "description": "GENIE_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "genie-locker": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/nhantour/genie-locker-mcp:0.2.0"
      ],
      "env": {
        "GENIE_BASE_URL": "${input:genie-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

GenieLocker in other clients