website-screenshots.capture
ActiveTool of Vee3
Capture a screenshot of a public website so you can inspect its layout, content, and UI. Use this when you need to see what a page looks like rather than guessing from HTML or text. Prefer return_mode 'both' or 'image' so you receive a viewable image; use 'url' only when you need a shareable link or want to avoid large inline payloads. Use format 'jpeg' with an optional quality setting (0-100) for smaller file sizes. Set dark_mode to true to capture sites that support prefers-color-scheme: dark. Set block_cookie_banners to true to dismiss common consent overlays (best-effort). Cost = 20 tokens.
Parameters schema
{
"type": "object",
"title": "capture_website_screenshotArguments",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"title": "Url",
"maxLength": 2048,
"description": "Public http or https URL to capture. Private, localhost, and internal network addresses are blocked."
},
"format": {
"enum": [
"png",
"jpeg"
],
"type": "string",
"title": "Format",
"default": "png",
"description": "Output image format. 'png' preserves lossless quality (default). 'jpeg' produces smaller files."
},
"quality": {
"type": "integer",
"title": "Quality",
"default": 80,
"maximum": 100,
"minimum": 0,
"description": "JPEG compression quality from 0 (smallest) to 100 (best). Only applies when format is 'jpeg'; ignored for PNG."
},
"dark_mode": {
"type": "boolean",
"title": "Dark Mode",
"default": false,
"description": "When true, emulate prefers-color-scheme: dark so sites with dark-mode CSS render in dark mode. Has no effect on sites without dark-mode styling."
},
"full_page": {
"type": "boolean",
"title": "Full Page",
"default": false,
"description": "Capture the full scrollable page. When false, only the viewport area is captured."
},
"wait_until": {
"enum": [
"load",
"domcontentloaded",
"networkidle"
],
"type": "string",
"title": "Wait Until",
"default": "domcontentloaded",
"description": "When to take the screenshot: 'load' (load event), 'domcontentloaded' (DOM ready, faster), or 'networkidle' (no network activity for 500ms, slowest but most complete)."
},
"return_mode": {
"enum": [
"url",
"image",
"both"
],
"type": "string",
"title": "Return Mode",
"default": "both",
"description": "How to deliver the result. 'url' returns JSON with a signed screenshot_url (valid ~1 hour). 'image' returns an inline image the agent can view directly. 'both' returns JSON metadata plus an inline image (default). Inline images over 10 MB fall back to the signed URL."
},
"viewport_width": {
"type": "integer",
"title": "Viewport Width",
"default": 1280,
"maximum": 3840,
"minimum": 320,
"description": "Browser viewport width in pixels."
},
"timeout_seconds": {
"type": "integer",
"title": "Timeout Seconds",
"default": 30,
"maximum": 60,
"minimum": 5,
"description": "Maximum seconds to wait for the page to load before failing."
},
"viewport_height": {
"type": "integer",
"title": "Viewport Height",
"default": 720,
"maximum": 2160,
"minimum": 240,
"description": "Browser viewport height in pixels."
},
"block_cookie_banners": {
"type": "boolean",
"title": "Block Cookie Banners",
"default": false,
"description": "When true, attempt to dismiss common cookie consent banners and overlays before capture. Best-effort - custom or first-party banners may remain."
}
}
}Parent server
Vee3
https://github.com/Vee3io/Vee3
1/7 registries