Skip to content
VS Code

Shotpipe — Screenshots & OG Images for VS Code

io.github.podop29/shotpipe-mcp

Screenshot any URL and see it, or mint a social card — hosted, SSRF-safe, cached. No Chrome to run.

client:VS Code transport:stdio runtime:npm

Install Shotpipe — Screenshots & OG Images in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "shotpipe-key",
      "description": "SHOTPIPE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "shotpipe-secret",
      "description": "SHOTPIPE_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "shotpipe-base-url",
      "description": "SHOTPIPE_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "shotpipe-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "shotpipe-mcp"
      ],
      "env": {
        "SHOTPIPE_KEY": "${input:shotpipe-key}",
        "SHOTPIPE_SECRET": "${input:shotpipe-secret}",
        "SHOTPIPE_BASE_URL": "${input:shotpipe-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

Shotpipe — Screenshots & OG Images in other clients