install-app
Install an Android APK on a specific device using the MCP Appium Server's standardized protocol for mobile app automation.
Instructions
Install an Android application APK
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apkPath | Yes | The local path to the APK file | |
deviceId | Yes | The device ID to install the app on |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"apkPath": {
"description": "The local path to the APK file",
"type": "string"
},
"deviceId": {
"description": "The device ID to install the app on",
"type": "string"
}
},
"required": [
"deviceId",
"apkPath"
],
"type": "object"
}