37 lines
1.1 KiB
Plaintext
37 lines
1.1 KiB
Plaintext
name: mouse_button_up
|
|
|
|
description:
|
|
Release a previously-held mouse button via background X11 delivery. If x/y are omitted, releases at the last held position. Returns the current held-button state.
|
|
|
|
input_schema:
|
|
{
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"cursor_id": {
|
|
"description": "Optional multi-cursor instance id. Default: 'default'.",
|
|
"type": "string"
|
|
},
|
|
"from_zoom": {
|
|
"description": "Set true after a zoom call to auto-translate zoom-image pixel coordinates back to full-window space.",
|
|
"type": "boolean"
|
|
},
|
|
"pid": {
|
|
"type": "integer"
|
|
},
|
|
"session": {
|
|
"description": "For multi-call work, prefer a short public session label and repeat it on every call that accepts it. Omit it to use the authenticated transport's implicit lifecycle session. When both are present, session takes precedence over cursor_id.",
|
|
"type": "string"
|
|
},
|
|
"window_id": {
|
|
"type": "integer"
|
|
},
|
|
"x": {
|
|
"type": "number"
|
|
},
|
|
"y": {
|
|
"type": "number"
|
|
}
|
|
},
|
|
"type": "object"
|
|
}
|