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.
まだレビューはありません. 最初のレビューを投稿しましょう!
会話に参加するにはサインインしてください
List connected devices. No parameters required.
Execute shell commands on an Android device. Required parameter: 'command'. Optional parameter: 'device_id'.
Install APK files on an Android device. Required parameter: 'path' (path to the APK file). Optional parameter: 'device_id'.
Uninstall applications from an Android device. Required parameter: 'package_name' (name of the package to uninstall). Optional parameter: 'device_id'.
List installed packages on an Android device. No parameters required. Optional parameters: 'device_id' (ID of the device), 'filter' (to filter the package list).
Pull files from an Android device to the local system. Required parameters: 'remote_path' (path on the device), 'local_path' (path on the local system). Optional parameter: 'device_id'.
Push files from the local system to an Android device. Required parameters: 'local_path' (path on the local system), 'remote_path' (path on the device). Optional parameter: 'device_id'.
Launch an application on an Android device. Required parameter: 'package_name' (name of the package to launch). Optional parameter: 'device_id'.
Take a screenshot on an Android device and save it locally. Required parameter: 'output_path' (path to save the screenshot). Optional parameters: 'device_id', 'format' (format of the screenshot).
Take a screenshot on an Android device and copy it to the clipboard. No parameters required. Optional parameter: 'device_id', 'format' (format of the screenshot).