Skip to content
VS Code

perpage mcp server for VS Code

io.github.cal-dev-tech/perpage-mcp-server

Give AI agents clean, LLM-ready web data — scrape any URL to markdown or extract structured JSON.

client:VS Code transport:stdio runtime:npm

Install perpage mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "perpage-api-key",
      "description": "PERPAGE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "perpage-api-url",
      "description": "PERPAGE_API_URL",
      "password": true
    }
  ],
  "servers": {
    "perpage-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@perpage/mcp-server"
      ],
      "env": {
        "PERPAGE_API_KEY": "${input:perpage-api-key}",
        "PERPAGE_API_URL": "${input:perpage-api-url}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

perpage mcp server in other clients