Android ADB
Summary
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.
Available Actions(10)
adb_devices
List connected devices. No required parameters.
adb_shell
Execute shell commands on a device. Required parameters: command (string). Optional parameters: device_id (string).
adb_install
Install APK files on a device. Required parameters: path (string to APK file). Optional parameters: device_id (string).
adb_uninstall
Uninstall applications from a device. Required parameters: package_name (string). Optional parameters: device_id (string).
adb_list_packages
List installed packages on a device. No required parameters. Optional parameters: device_id (string), filter (string).
adb_pull
Pull files from a device to local system. Required parameters: remote_path (string), local_path (string). Optional parameters: device_id (string).
adb_push
Push files from local system to a device. Required parameters: local_path (string), remote_path (string). Optional parameters: device_id (string).
launch_app
Launch an application on a device. Required parameters: package_name (string). Optional parameters: device_id (string).
take_screenshot_and_save
Take and save a screenshot from a device. Required parameters: output_path (string for saving the screenshot). Optional parameters: device_id (string), format (string).
take_screenshot_and_copy_to_clipboard
Take a screenshot and copy it to the clipboard. No required parameters. Optional parameters: device_id (string), format (string).
コミュニティレビュー
まだレビューはありません. 最初のレビューを投稿しましょう!
会話に参加するにはサインインしてください