Smithery
take_screenshot
Capture a screenshot of any URL and return a public image URL. By default captures the full scrollable page. Set fullPage to false for viewport-only capture (recommended for long pages). Returns image dimensions in the response.
Remote relievedattention992-smithery/screenshotsmcp
Other tools also called take_screenshot?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"url": {
"type": "string",
"format": "uri",
"description": "The URL to screenshot"
},
"delay": {
"type": "integer",
"default": 0,
"maximum": 10000,
"minimum": 0,
"description": "Wait ms after page load"
},
"width": {
"type": "integer",
"default": 1280,
"maximum": 3840,
"minimum": 320,
"description": "Viewport width in pixels"
},
"format": {
"enum": [
"png",
"jpeg",
"webp"
],
"type": "string",
"default": "png",
"description": "Image format"
},
"height": {
"type": "integer",
"default": 800,
"maximum": 2160,
"minimum": 240,
"description": "Viewport height in pixels"
},
"fullPage": {
"type": "boolean",
"default": true,
"description": "If true, captures entire scrollable page. Set to false for viewport-only capture (recommended for long pages like product grids)."
},
"maxHeight": {
"type": "integer",
"maximum": 20000,
"minimum": 100,
"description": "Maximum image height in pixels. Caps extremely tall full-page captures to prevent unreadable strips."
}
}
}