fetch_page
Retrieve and process web pages for LLM context using a URL, with options to include screenshots or limit content length. Part of the Web Content MCP Server for enhanced data extraction.
Instructions
Fetches and processes a web page for LLM context
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeScreenshot | No | Whether to include a screenshot (base64 encoded) | |
maxContentLength | No | Maximum content length to return | |
url | Yes | URL 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"
}