mobile_press_button
Simulate button presses on mobile devices using the Mobile Next MCP Server. Execute commands like HOME, VOLUME_UP, or DPAD_LEFT to automate interactions on iOS and Android platforms.
Instructions
Press a button on device
Input Schema
Name | Required | Description | Default |
---|---|---|---|
button | Yes | The button to press. Supported buttons: BACK (android only), HOME, VOLUME_UP, VOLUME_DOWN, ENTER, DPAD_CENTER (android tv only), DPAD_UP (android tv only), DPAD_DOWN (android tv only), DPAD_LEFT (android tv only), DPAD_RIGHT (android tv only) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"button": {
"description": "The button to press. Supported buttons: BACK (android only), HOME, VOLUME_UP, VOLUME_DOWN, ENTER, DPAD_CENTER (android tv only), DPAD_UP (android tv only), DPAD_DOWN (android tv only), DPAD_LEFT (android tv only), DPAD_RIGHT (android tv only)",
"type": "string"
}
},
"required": [
"button"
],
"type": "object"
}