Skip to content
VS Code

GoDrop for VS Code

io.github.fatihbaltaci/godrop

Self-hosted file host: upload a file, get a public URL an agent can paste into a pull request.

client:VS Code transport:stdio runtime:oci

Install GoDrop in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "godrop-url",
      "description": "GODROP_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "godrop-token",
      "description": "GODROP_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "godrop": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/fatihbaltaci/godrop:1.3.1"
      ],
      "env": {
        "GODROP_URL": "${input:godrop-url}",
        "GODROP_TOKEN": "${input:godrop-token}"
      }
    }
  }
}

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

GoDrop in other clients