scrapeunblocker mcp for VS Code
com.scrapeunblocker/scrapeunblocker-mcp
Fetch any web page's HTML or AI-parsed JSON through the ScrapeUnblocker anti-bot API.
client:VS Code
transport:stdio
runtime:npm
Install scrapeunblocker mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "scrapeunblocker-key",
"description": "SCRAPEUNBLOCKER_KEY",
"password": true
}
],
"servers": {
"scrapeunblocker-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"scrapeunblocker-mcp"
],
"env": {
"SCRAPEUNBLOCKER_KEY": "${input:scrapeunblocker-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs