take_screenshot
Capture webpage screenshots in various formats (PNG, JPEG, WebP) with customizable options like quality, full-page capture, and background removal. Integrates with Browserless MCP Server for browser automation tasks.
Instructions
Take screenshot of a webpage
Input Schema
Name | Required | Description | Default |
---|---|---|---|
options | No | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"options": {
"properties": {
"clip": {
"properties": {
"height": {
"type": "number"
},
"width": {
"type": "number"
},
"x": {
"type": "number"
},
"y": {
"type": "number"
}
},
"type": "object"
},
"fullPage": {
"type": "boolean"
},
"omitBackground": {
"type": "boolean"
},
"quality": {
"type": "number"
},
"type": {
"enum": [
"png",
"jpeg",
"webp"
],
"type": "string"
}
},
"type": "object"
},
"url": {
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}