send_mouse_move
Move the mouse cursor to precise coordinates (x, y) using Scenic MCP for AI-driven automation and testing of Scenic Elixir applications.
Instructions
Move mouse cursor to specific coordinates
Input Schema
Name | Required | Description | Default |
---|---|---|---|
x | Yes | X coordinate | |
y | Yes | Y coordinate |
Input Schema (JSON Schema)
{
"properties": {
"x": {
"description": "X coordinate",
"type": "number"
},
"y": {
"description": "Y coordinate",
"type": "number"
}
},
"required": [
"x",
"y"
],
"type": "object"
}