MCP Webscan Server

fetch_page

Fetch a web page and convert it to Markdown for analysis

Input Schema

NameRequiredDescriptionDefault
selectorNoOptional CSS selector to target specific content
urlYesURL of the page to fetch

Input Schema (JSON Schema)

{ "properties": { "selector": { "description": "Optional CSS selector to target specific content", "type": "string" }, "url": { "description": "URL of the page to fetch", "type": "string" } }, "required": [ "url" ], "type": "object" }