capture_window
Capture screenshots of specific windows using the window ID, save them to a custom path, and retrieve results in JSON format. Integrates with Auto-Snap MCP for streamlined document processing and text extraction.
Instructions
Capture screenshot of a specific window.
Args:
window_id: Window ID to capture (from list_windows)
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 | ||
window_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"output_path": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Output Path"
},
"window_id": {
"title": "Window Id",
"type": "string"
}
},
"required": [
"window_id"
],
"title": "capture_windowArguments",
"type": "object"
}