MCP Webscan Server

crawl_site

Recursively crawl a website up to a specified depth

Input Schema

NameRequiredDescriptionDefault
maxDepthNoMaximum crawl depth
urlYesStarting URL to crawl

Input Schema (JSON Schema)

{ "properties": { "maxDepth": { "default": 2, "description": "Maximum crawl depth", "type": "number" }, "url": { "description": "Starting URL to crawl", "type": "string" } }, "required": [ "url" ], "type": "object" }