adb_install
Install APK files on Android devices via ADB commands by specifying the local APK path and optional device ID using the ADB MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apkPath | Yes | Local path to the APK file | |
device | No | Specific device ID (optional) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"apkPath": {
"description": "Local path to the APK file",
"type": "string"
},
"device": {
"description": "Specific device ID (optional)",
"type": "string"
}
},
"required": [
"apkPath"
],
"type": "object"
}