set_window_position
Move a window to precise coordinates (x, y) on macOS by specifying the application name, enabling exact control over window placement within the Moom MCP Server framework.
Instructions
Move a window to a specific position for precise control
Input Schema
Name | Required | Description | Default |
---|---|---|---|
appName | Yes | Name of the application | |
x | Yes | X coordinate | |
y | Yes | Y coordinate |
Input Schema (JSON Schema)
{
"properties": {
"appName": {
"description": "Name of the application",
"type": "string"
},
"x": {
"description": "X coordinate",
"type": "number"
},
"y": {
"description": "Y coordinate",
"type": "number"
}
},
"required": [
"appName",
"x",
"y"
],
"type": "object"
}