Skip to content
VS Code

PyScrappy for VS Code

io.github.mldsveda/pyscrappy

Web-scraping toolkit with 22 tools for structured web data as JSON for AI agents.

client:VS Code transport:stdio runtime:pypi

Install PyScrappy in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "omdb-api-key",
      "description": "OMDB_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "pyscrappy": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "pyscrappy"
      ],
      "env": {
        "OMDB_API_KEY": "${input:omdb-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

PyScrappy in other clients