execute-adb-command
Run custom ADB commands directly within the MCP Appium Server to manage device interactions, automate app operations, and streamline mobile testing processes without manual terminal input.
Instructions
Execute a custom ADB command
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | The ADB command to execute (without 'adb' prefix) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"command": {
"description": "The ADB command to execute (without 'adb' prefix)",
"type": "string"
}
},
"required": [
"command"
],
"type": "object"
}