Screenshot Region
screenshot_regionCapture a specific rectangular screen area using x, y, width, and height when only part of the screen is needed, reducing vision tokens compared with a full-screen capture.
Instructions
Capture a rectangular region of the screen. Use when the user points at a specific area or you only need part of the screen — way cheaper in vision tokens than a full screenshot.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| x | Yes | Left coordinate of region in pixels. | |
| y | Yes | Top coordinate of region in pixels. | |
| width | Yes | Region width in pixels (1-8192). | |
| format | No | Output format. Default png. | |
| height | Yes | Region height in pixels (1-8192). | |
| maxEdge | No | Resize so longest edge ≤ N px. Range 64-4096. Default 1600. | |
| quality | No | Quality for jpeg/webp. | |
| displayId | No | Display id from `list_displays`. Omit for primary. |