adb_shell
Execute shell commands on Android devices via ADB, enabling direct interaction for tasks like app management, file operations, and UI analysis. Supports specific device targeting for precision.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| command | Yes | Shell command to execute on the device | |
| device | No | Specific device ID (optional) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"command": {
"description": "Shell command to execute on the device",
"type": "string"
},
"device": {
"description": "Specific device ID (optional)",
"type": "string"
}
},
"required": [
"command"
],
"type": "object"
}