Smithery
screenshot_batch
Capture screenshots of multiple URLs in one call (max 10). Returns an array of results with screenshot URLs and metadata. All screenshots share the same viewport and format settings.
Remote relievedattention992-smithery/screenshotsmcp
Other tools also called screenshot_batch?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"urls": {
"type": "array",
"items": {
"type": "string",
"format": "uri"
},
"maxItems": 10,
"minItems": 1,
"description": "Array of URLs to screenshot (1-10)"
},
"width": {
"type": "integer",
"default": 1280,
"maximum": 3840,
"minimum": 320,
"description": "Viewport width"
},
"format": {
"enum": [
"png",
"jpeg",
"webp"
],
"type": "string",
"default": "png",
"description": "Image format"
},
"height": {
"type": "integer",
"default": 800,
"maximum": 2160,
"minimum": 240,
"description": "Viewport height"
},
"fullPage": {
"type": "boolean",
"default": false,
"description": "Capture full scrollable page"
}
}
}