Skip to content
VS Code

pindoc for VS Code

io.github.var-gg/pindoc

Code-pinned team memory for AI coding agents — typed artifacts, MCP-native, self-host.

client:VS Code transport:stdio runtime:oci

Install pindoc in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "pindoc-database-url",
      "description": "PINDOC_DATABASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pindoc-bind-addr",
      "description": "PINDOC_BIND_ADDR",
      "password": true
    }
  ],
  "servers": {
    "pindoc": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/var-gg/pindoc:0.2.0"
      ],
      "env": {
        "PINDOC_DATABASE_URL": "${input:pindoc-database-url}",
        "PINDOC_BIND_ADDR": "${input:pindoc-bind-addr}"
      }
    }
  }
}

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

pindoc in other clients