press_button
Simulate specific button presses on Android devices via the espresso-mcp server. Configure actions using the provided Enum button values for precise control.
Instructions
Simulate a button press on the connected Android device using an Enum button
Input Schema
Name | Required | Description | Default |
---|---|---|---|
button | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"Button": {
"enum": [
"3",
"4",
"82",
"26",
"24",
"25",
"27",
"66"
],
"title": "Button",
"type": "string"
}
},
"properties": {
"button": {
"$ref": "#/$defs/Button"
}
},
"required": [
"button"
],
"title": "press_buttonArguments",
"type": "object"
}