take_screenshot
Capture screenshots of web pages or local GUIs with customizable dimensions and output paths using the MCP Screenshot Server’s Puppeteer-based tool.
Instructions
Capture a screenshot of any web page or local GUI
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fullPage | No | Capture full scrollable page | |
height | No | Viewport height in pixels | |
outputPath | No | Custom output path (optional) | |
url | Yes | URL to capture (can be http://, https://, or file:///) | |
width | No | Viewport width in pixels |
Input Schema (JSON Schema)
{
"properties": {
"fullPage": {
"description": "Capture full scrollable page",
"type": "boolean"
},
"height": {
"description": "Viewport height in pixels",
"maximum": 2160,
"minimum": 1,
"type": "number"
},
"outputPath": {
"description": "Custom output path (optional)",
"type": "string"
},
"url": {
"description": "URL to capture (can be http://, https://, or file:///)",
"type": "string"
},
"width": {
"description": "Viewport width in pixels",
"maximum": 3840,
"minimum": 1,
"type": "number"
}
},
"required": [
"url"
],
"type": "object"
}