uninstall-app
Remove Android applications by specifying the device ID and package name using the MCP Appium Server. Simplify app management and automation workflows.
Instructions
Uninstall an Android application
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| deviceId | Yes | The device ID to uninstall the app from | |
| packageName | Yes | The package name of the app to uninstall |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"deviceId": {
"description": "The device ID to uninstall the app from",
"type": "string"
},
"packageName": {
"description": "The package name of the app to uninstall",
"type": "string"
}
},
"required": [
"deviceId",
"packageName"
],
"type": "object"
}