Provides a bridge to Android devices through the Android Debug Bridge (ADB), enabling AI assistants to perform common Android development and testing operations. Built by Landice Fu, this TypeScript-based MCP server supports tools for device management, shell command execution, app installation/uninstallation, screenshot capture, and file transfer across connected Android devices.
Aucun avis encore. Soyez le premier à donner votre avis !
Connectez-vous pour rejoindre la conversation
List connected devices. Parameters: None.
Execute shell commands on an Android device. Parameters: command (string), device_id (optional string).
Install APK files on an Android device. Parameters: path (string), device_id (optional string).
Uninstall applications from an Android device. Parameters: package_name (string), device_id (optional string).
List installed packages on an Android device. Parameters: device_id (optional string), filter (optional string).
Pull files from an Android device to the local system. Parameters: remote_path (string), local_path (string), device_id (optional string).
Push files from the local system to an Android device. Parameters: local_path (string), remote_path (string), device_id (optional string).
Launch an application on an Android device. Parameters: package_name (string), device_id (optional string).
Take a screenshot and save it to the specified output path. Parameters: output_path (string), device_id (optional string), format (optional string).
Take a screenshot and copy it to the clipboard. Parameters: None, device_id (optional string), format (optional string).