Skip to content
VS Code

AI-First Scraper for VS Code

io.github.yubinkim444/ai-first-scraper-mcp

Three MCP tools: fetch_page, fetch_pages_batch, search_web. Ad-free Markdown for AI agents.

client:VS Code transport:stdio runtime:pypi

Install AI-First Scraper in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "scraper-url",
      "description": "SCRAPER_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "search-url",
      "description": "SEARCH_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "afs-timeout",
      "description": "AFS_TIMEOUT",
      "password": true
    }
  ],
  "servers": {
    "ai-first-scraper-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "ai-first-scraper-mcp"
      ],
      "env": {
        "SCRAPER_URL": "${input:scraper-url}",
        "SEARCH_URL": "${input:search-url}",
        "AFS_TIMEOUT": "${input:afs-timeout}"
      }
    }
  }
}

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

AI-First Scraper in other clients