apify scrapers for VS Code
io.github.jlucasmcrell/apify-scrapers
40 Apify public-data tools for leads, news, SEO, jobs, SEC, procurement, and registries.
client:VS Code
transport:stdio
runtime:pypi
Install apify scrapers in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "apify-tool-profile",
"description": "APIFY_TOOL_PROFILE",
"password": true
},
{
"type": "promptString",
"id": "apify-token",
"description": "APIFY_TOKEN",
"password": true
}
],
"servers": {
"apify-scrapers": {
"type": "stdio",
"command": "uvx",
"args": [
"apify-data-scrapers"
],
"env": {
"APIFY_TOOL_PROFILE": "${input:apify-tool-profile}",
"APIFY_TOKEN": "${input:apify-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs