cloudflare-browser-rendering-mcp

by amotivv
Verified

take_screenshot

Takes a screenshot of a web page and returns it as an image

Input Schema

NameRequiredDescriptionDefault
fullPageNoWhether to take a screenshot of the full page or just the viewport (default: false)
heightNoHeight of the viewport in pixels (default: 800)
urlYesURL to take a screenshot of
widthNoWidth of the viewport in pixels (default: 1280)

Input Schema (JSON Schema)

{ "properties": { "fullPage": { "description": "Whether to take a screenshot of the full page or just the viewport (default: false)", "type": "boolean" }, "height": { "description": "Height of the viewport in pixels (default: 800)", "type": "number" }, "url": { "description": "URL to take a screenshot of", "type": "string" }, "width": { "description": "Width of the viewport in pixels (default: 1280)", "type": "number" } }, "required": [ "url" ], "type": "object" }