capture_full_screen
Capture the entire screen as a screenshot with Auto-Snap MCP. Save the image to a specified path and receive a JSON response with results and file details for easy integration.
Instructions
Capture screenshot of the entire screen.
Args:
output_path: Optional path to save the screenshot
Returns:
JSON string with capture results and file path.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
output_path | No |
Input Schema (JSON Schema)
{
"properties": {
"output_path": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Output Path"
}
},
"title": "capture_full_screenArguments",
"type": "object"
}