Web Content MCP Server

by amotivv
Verified

fetch_page

Fetches and processes a web page for LLM context

Input Schema

NameRequiredDescriptionDefault
includeScreenshotNoWhether to include a screenshot (base64 encoded)
maxContentLengthNoMaximum content length to return
urlYesURL to fetch

Input Schema (JSON Schema)

{ "properties": { "includeScreenshot": { "description": "Whether to include a screenshot (base64 encoded)", "type": "boolean" }, "maxContentLength": { "description": "Maximum content length to return", "type": "number" }, "url": { "description": "URL to fetch", "type": "string" } }, "required": [ "url" ], "type": "object" }