take_screenshot
Capture a screenshot of any Electron application window and return base64 image data. Optionally save the image to a specified path for further AI analysis or processing.
Instructions
Take a screenshot of any running Electron application window. Returns base64 image data for AI analysis. No files created unless outputPath is specified.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
outputPath | No | Path to save the screenshot (optional, defaults to temp directory) | |
windowTitle | No | Specific window title to screenshot (optional) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"outputPath": {
"description": "Path to save the screenshot (optional, defaults to temp directory)",
"type": "string"
},
"windowTitle": {
"description": "Specific window title to screenshot (optional)",
"type": "string"
}
},
"type": "object"
}