send-key-event
Simulate key events like HOME or BACK on mobile devices using the MCP Appium Server for automation testing and device interaction.
Instructions
Send a key event to the device (e.g., HOME, BACK)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
keyEvent | Yes | Key event name or code |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"keyEvent": {
"description": "Key event name or code",
"type": [
"string",
"number"
]
}
},
"required": [
"keyEvent"
],
"type": "object"
}