Skip to content
VS Code

crawlbit for VS Code

io.github.amati032-dev/crawlbit

Four free tools to check if AI engines can find, read and recognise a site. No API key.

client:VS Code transport:stdio runtime:npm

Install crawlbit in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "crawlbit-base-url",
      "description": "CRAWLBIT_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "crawlbit": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "crawlbit-mcp"
      ],
      "env": {
        "CRAWLBIT_BASE_URL": "${input:crawlbit-base-url}"
      }
    }
  }
}

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

crawlbit in other clients