manage_window
List all Tauri windows with labels, titles, and state; get detailed window info including size, position, and focus; or resize a window by specifying width and height in logical pixels. Requires an active driver session for Tauri apps only.
Instructions
[Tauri Apps Only] Manage Tauri windows. Actions: "list" - List all windows with labels, titles, URLs, and state. "info" - Get detailed info for a window (size, position, title, focus, visibility). "resize" - Resize a window (requires width/height, uses logical pixels by default). Requires active driver_session. For browser windows, use Chrome DevTools MCP instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Action: "list" all windows, get "info" for one window, or "resize" a window | |
| windowId | No | Window label to target (defaults to "main"). Required for "info", optional for "resize" | |
| width | No | Width in pixels (required for "resize" action) | |
| height | No | Height in pixels (required for "resize" action) | |
| logical | No | Use logical pixels (true, default) or physical pixels (false). Only for "resize" | |
| appIdentifier | No | App port or bundle ID to target. Defaults to the only connected app or the default app if multiple are connected. |