launch-app
Start an Android app on a specific device using its package name and optional activity, enabling app automation and management through the MCP Appium Server.
Instructions
Launch an app on an Android device
Input Schema
Name | Required | Description | Default |
---|---|---|---|
activityName | No | Optional activity name to launch | |
deviceId | Yes | The device ID to launch the app on | |
packageName | Yes | The package name of the app to launch |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"activityName": {
"description": "Optional activity name to launch",
"type": "string"
},
"deviceId": {
"description": "The device ID to launch the app on",
"type": "string"
},
"packageName": {
"description": "The package name of the app to launch",
"type": "string"
}
},
"required": [
"deviceId",
"packageName"
],
"type": "object"
}