Skip to content
VS Code

urlsnap mcp for VS Code

dev.urlsnap/urlsnap-mcp

Screenshot, PDF, and markdown extraction from any URL via Claude Desktop and Claude Code.

client:VS Code transport:stdio runtime:npm

Install urlsnap mcp in VS Code

.vscode/mcp.json

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

urlsnap mcp in other clients