Skip to content
VS Code

spotdb for VS Code

ai.aliengiraffe/spotdb

Ephemeral data sandbox for AI workflows with guardrails and security

client:VS Code transport:stdio runtime:oci

Install spotdb in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "x-api-key",
      "description": "X-API-Key",
      "password": true
    }
  ],
  "servers": {
    "spotdb": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "docker.io/aliengiraffe/spotdb:0.1.0"
      ],
      "env": {
        "X-API-Key": "${input:x-api-key}"
      }
    }
  }
}

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

spotdb in other clients