Skip to content
VS Code

snaprender for VS Code

io.github.user0856/snaprender

Screenshot, extract content, and render web pages. PNG/JPEG/WebP/PDF, batch, signed URLs.

client:VS Code transport:stdio runtime:npm

Install snaprender in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "snaprender-api-key",
      "description": "SNAPRENDER_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "snaprender": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "snaprender-mcp"
      ],
      "env": {
        "SNAPRENDER_API_KEY": "${input:snaprender-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

snaprender in other clients