send_mouse_click
Simulate precise mouse clicks at defined coordinates (x, y) with specified buttons (left, right, middle) for automated testing and interaction in Scenic Elixir applications via Scenic MCP.
Instructions
Click mouse at specific coordinates
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| button | No | Mouse button to click (default: left) | left |
| x | Yes | X coordinate | |
| y | Yes | Y coordinate |
Input Schema (JSON Schema)
{
"properties": {
"button": {
"default": "left",
"description": "Mouse button to click (default: left)",
"enum": [
"left",
"right",
"middle"
],
"type": "string"
},
"x": {
"description": "X coordinate",
"type": "number"
},
"y": {
"description": "Y coordinate",
"type": "number"
}
},
"required": [
"x",
"y"
],
"type": "object"
}