set_window_size
Resize application windows to specific dimensions by specifying app name, width, and height using the Moom MCP Server for macOS.
Instructions
Resize a window to specific dimensions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
appName | Yes | Name of the application | |
height | Yes | Window height | |
width | Yes | Window width |
Input Schema (JSON Schema)
{
"properties": {
"appName": {
"description": "Name of the application",
"type": "string"
},
"height": {
"description": "Window height",
"type": "number"
},
"width": {
"description": "Window width",
"type": "number"
}
},
"required": [
"appName",
"width",
"height"
],
"type": "object"
}