Skip to content
VS Code

GitPin for VS Code

io.github.shmindmaster/gitpin

Prove and verify multi-repo claims at Git HEAD: path, line, full SHA, no index.

client:VS Code transport:stdio runtime:npm

Install GitPin in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "gitpin-registry",
      "description": "GITPIN_REGISTRY",
      "password": true
    }
  ],
  "servers": {
    "gitpin": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "gitpin"
      ],
      "env": {
        "GITPIN_REGISTRY": "${input:gitpin-registry}"
      }
    }
  }
}

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

GitPin in other clients