ADB Connect to Device
adb_connectConnect to an Android device over TCP/IP using an IP:PORT address to enable remote ADB debugging and control.
Instructions
Connect to an Android device via ADB over network.
This tool connects to an Android device using its IP address and port number. The device must have ADB over TCP/IP enabled.
Args:
address (string): Device address in format IP:PORT (e.g., 192.168.10.20:5555)
Examples:
address: "192.168.10.20:5555"
address: "10.0.0.100:5555"
Prerequisites:
The target device must have ADB debugging enabled
The device must have TCP/IP mode enabled (adb tcpip 5555)
The device must be reachable on the network
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | Device address in format IP:PORT (e.g., 192.168.10.20:5555) |