Scrapingdog for VS Code
io.github.darshan972/scrapingdog-mcp
Scrapingdog web-scraping & SERP APIs: web scrape, Google, Amazon, LinkedIn, YouTube, and more.
client:VS Code
transport:stdio
runtime:npm
Install Scrapingdog in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "scrapingdog-api-key",
"description": "SCRAPINGDOG_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "scrapingdog-api-base",
"description": "SCRAPINGDOG_API_BASE",
"password": true
},
{
"type": "promptString",
"id": "scrapingdog-timeout-ms",
"description": "SCRAPINGDOG_TIMEOUT_MS",
"password": true
}
],
"servers": {
"scrapingdog-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"scrapingdog-mcp"
],
"env": {
"SCRAPINGDOG_API_KEY": "${input:scrapingdog-api-key}",
"SCRAPINGDOG_API_BASE": "${input:scrapingdog-api-base}",
"SCRAPINGDOG_TIMEOUT_MS": "${input:scrapingdog-timeout-ms}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs