take-screenshot
Capture screenshots of web pages for any URL. Specify if full-page capture is needed. Supports website documentation, analysis, and testing.
Instructions
Takes a screenshot of the currently open page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fullPage | No | If true, captures a screenshot of the entire page | |
url | Yes | URL of the website you want to capture |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"fullPage": {
"default": false,
"description": "If true, captures a screenshot of the entire page",
"type": "boolean"
},
"url": {
"description": "URL of the website you want to capture",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}