Skip to content
VS Code

Web Resurrect for VS Code

io.github.web-resurrect/mcp

Resurrect expired domains: scrape Wayback, AI-rewrite, generate images, publish to WordPress.

client:VS Code transport:stdio runtime:npm

Install Web Resurrect in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "web-resurrect-api-key",
      "description": "WEB_RESURRECT_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "web-resurrect-base-url",
      "description": "WEB_RESURRECT_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@web-resurrect/mcp"
      ],
      "env": {
        "WEB_RESURRECT_API_KEY": "${input:web-resurrect-api-key}",
        "WEB_RESURRECT_BASE_URL": "${input:web-resurrect-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

Web Resurrect in other clients