website-screenshots.capture
ActiveTool of Vee3
Capture a screenshot of a public website so the user or agent can inspect its layout, content, and UI. The image is saved to account file storage. The response includes screenshot_url for API users and download_code for agents to run `vee3-get-file`. 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."
},
"file_name": {
"anyOf": [
{
"type": "string",
"maxLength": 255
},
{
"type": "null"
}
],
"title": "File Name",
"default": null,
"description": "Optional account-relative storage path for the screenshot. If omitted, the file is stored under downloads/ with a generated name."
},
"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)."
},
"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."
}
}
}No endpoints wrapped at confidence ≥ 0.70.
Parent server
Vee3
https://github.com/Vee3io/Vee3
1/7 registries