adb_disconnect
Disconnect from a WiFi ADB device by specifying its IP address and port. This tool ensures remote Android device management within the ADB Screenshot MCP Server environment.
Instructions
Disconnect from a WiFi ADB device
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ip_address | Yes | IP address of the device to disconnect from | |
port | No | Port number (default: 5555) | 5555 |
Input Schema (JSON Schema)
{
"properties": {
"ip_address": {
"description": "IP address of the device to disconnect from",
"type": "string"
},
"port": {
"default": "5555",
"description": "Port number (default: 5555)",
"type": "string"
}
},
"required": [
"ip_address"
],
"type": "object"
}