MCP Webscan Server

crawl-site

Crawl a website and return a list of all the URLs found

Input Schema

NameRequiredDescriptionDefault
maxDepthNo
urlYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "maxDepth": { "default": 3, "maximum": 10, "minimum": 1, "type": "number" }, "url": { "format": "uri", "type": "string" } }, "required": [ "url" ], "type": "object" }