fetch_page
Extract and process web page content for LLM context using a specified URL and optional content length limit. Integrates with Cloudflare Browser Rendering for direct functionality in Cline or Claude Desktop.
Instructions
Fetches and processes a web page for LLM context
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maxContentLength | No | Maximum content length to return | |
url | Yes | URL to fetch |
Input Schema (JSON Schema)
{
"properties": {
"maxContentLength": {
"description": "Maximum content length to return",
"type": "number"
},
"url": {
"description": "URL to fetch",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}