adb_shell
Execute shell commands on Android devices remotely using ADB functionality, enabling device management, app control, and file operations via the ADB MCP Server.
Instructions
Execute a shell command on the device
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | Shell command to execute | |
deviceId | No | Device ID (optional) |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"description": "Shell command to execute",
"type": "string"
},
"deviceId": {
"description": "Device ID (optional)",
"type": "string"
}
},
"required": [
"command"
],
"type": "object"
}