take_screenshot
Capture screenshots of web pages as images using specified URL, viewport dimensions, and full-page option for web content processing and analysis.
Instructions
Takes a screenshot of a web page and returns it as an image
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fullPage | No | Whether to take a screenshot of the full page or just the viewport (default: false) | |
height | No | Height of the viewport in pixels (default: 800) | |
url | Yes | URL to take a screenshot of | |
width | No | Width 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"
}