remote_macos_mouse_move
Control a remote macOS machine by moving the mouse cursor to specified coordinates. Adjusts positions automatically using screen scaling for precision.
Instructions
Move the mouse cursor to specified coordinates on a remote MacOs machine, with automatic coordinate scaling. Uses environment variables for connection details.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
source_height | No | Height of the reference screen for coordinate scaling | |
source_width | No | Width of the reference screen for coordinate scaling | |
x | Yes | X coordinate for mouse position (in source dimensions) | |
y | Yes | Y coordinate for mouse position (in source dimensions) |
Input Schema (JSON Schema)
{
"properties": {
"source_height": {
"default": 768,
"description": "Height of the reference screen for coordinate scaling",
"type": "integer"
},
"source_width": {
"default": 1366,
"description": "Width of the reference screen for coordinate scaling",
"type": "integer"
},
"x": {
"description": "X coordinate for mouse position (in source dimensions)",
"type": "integer"
},
"y": {
"description": "Y coordinate for mouse position (in source dimensions)",
"type": "integer"
}
},
"required": [
"x",
"y"
],
"type": "object"
}