android_list_packages
List installed packages on Android devices to identify applications and manage software inventory. Filter results by package name or target specific devices.
Instructions
List installed packages on the Android device
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filter | No | Optional filter to search for specific packages (case-insensitive) | |
| deviceSerial | No | Specific device serial number to target (optional) |
Input Schema (JSON Schema)
{
"properties": {
"deviceSerial": {
"description": "Specific device serial number to target (optional)",
"type": "string"
},
"filter": {
"description": "Optional filter to search for specific packages (case-insensitive)",
"type": "string"
}
},
"type": "object"
}