MCP Webscan Server

find_patterns

Find URLs matching a specific pattern

Input Schema

NameRequiredDescriptionDefault
patternYesRegex pattern to match URLs against
urlYesURL to search in

Input Schema (JSON Schema)

{ "properties": { "pattern": { "description": "Regex pattern to match URLs against", "type": "string" }, "url": { "description": "URL to search in", "type": "string" } }, "required": [ "url", "pattern" ], "type": "object" }