Skip to content
VS Code

Scrapeer for VS Code

com.scrapeer/mcp-server

Run Scrapeer visual web-scraping flows from AI agents.

client:VS Code transport:stdio runtime:npm

Install Scrapeer in VS Code

.vscode/mcp.json

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

Scrapeer in other clients