Android ADB▌
by landicefu
Manage Android devices with ADB: execute shell commands, install apps, capture screenshots, and transfer files for effic
Provides a bridge to Android devices through ADB, enabling device management, shell command execution, app installation, screenshot capture, and file transfer across connected Android devices.
Both formats append explainx.ai attribution and the canonical URL for this MCP server listing.
best for
- / Android developers testing apps on devices
- / QA teams automating device testing workflows
- / DevOps engineers managing Android device farms
capabilities
- / Execute shell commands on Android devices
- / Install and uninstall Android applications
- / Transfer files between computer and Android devices
- / Capture screenshots from Android devices
- / Launch applications on connected devices
- / Manage multiple Android devices simultaneously
what it does
Connects to Android devices through ADB to execute shell commands, manage apps, transfer files, and capture screenshots. Enables AI assistants to automate Android development and testing tasks.
about
Android ADB is a community-built MCP server published by landicefu that provides AI assistants with tools and capabilities via the Model Context Protocol. Manage Android devices with ADB: execute shell commands, install apps, capture screenshots, and transfer files for effic It is categorized under developer tools.
how to install
You can install Android ADB in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
license
ISC
Android ADB is released under the ISC license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
readme
Android ADB MCP Server
A Model Context Protocol (MCP) server that enables AI assistants to interact with Android devices through the Android Debug Bridge (ADB). This server bridges the gap between AI capabilities and Android device management, allowing for seamless automation of Android development and testing operations.
⚙️ Quick Setup
Add the server to your MCP configuration file:
{
"mcpServers": {
"android-adb": {
"command": "npx",
"args": ["-y", "@landicefu/android-adb-mcp-server"],
"env": {},
"disabled": false,
"alwaysAllow": []
}
}
}
Configuration Locations
- Claude Desktop:
~/Library/Application Support/Claude/claude_desktop_config.json(macOS) - Cline/Roo Code:
~/Library/Application Support/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/cline_mcp_settings.json(macOS) - For Windows/Linux, check the equivalent application support directories
After configuring, restart your AI assistant to load the new server configuration.
📋 Prerequisites
- ADB (Android Debug Bridge) must be installed and available in your system PATH
- Install ADB on Windows, macOS, or Linux
- Verify installation by running
adb versionin your terminal
- For clipboard functionality:
- macOS:
osascript(built-in) - Windows: PowerShell (built-in)
- Linux:
xclip(install viaapt-get install xclipor equivalent)
- macOS:
- Node.js 16.x or higher
🚀 Features
- Connect to and manage multiple Android devices
- Execute shell commands on Android devices
- Install and uninstall applications
- Push and pull files between local system and Android devices
- Launch applications on Android devices
- Take screenshots and save them locally or copy to clipboard
- Smart device selection when multiple devices are connected
🛠️ Available Tools
| Tool | Description | Required Parameters | Optional Parameters |
|---|---|---|---|
adb_devices | List connected devices | None | None |
adb_shell | Execute shell commands | command | device_id |
adb_install | Install APK files | path | device_id |
adb_uninstall | Uninstall applications | package_name | device_id |
adb_list_packages | List installed packages | None | device_id, filter |
adb_pull | Pull files from device | remote_path, local_path | device_id |
adb_push | Push files to device | local_path, remote_path | device_id |
launch_app | Launch an application | package_name | device_id |
take_screenshot_and_save | Take and save screenshot | output_path | device_id, format |
take_screenshot_and_copy_to_clipboard | Take screenshot to clipboard | None | device_id, format |
Device Management
The server intelligently handles device selection:
- If only one device is connected, it will be used automatically
- If multiple devices are connected, you must specify a
device_idparameter - If no devices are connected, an error will be returned
Screenshot Path Resolution
When specifying the output_path for saving screenshots, the path is resolved as follows:
- Absolute paths are used as-is
- Paths starting with
~are expanded to the user's home directory - Relative paths are resolved relative to the user's home directory
This ensures that screenshots are saved to a location where the MCP server has write permissions.
🔍 Troubleshooting
Common Issues
-
"ADB is not available" error
- Ensure ADB is installed and in your system PATH
- Verify by running
adb versionin your terminal
-
"No Android devices connected" error
- Check if your device is properly connected with
adb devices - Ensure USB debugging is enabled on your device
- Try restarting ADB with
adb kill-serverfollowed byadb start-server
- Check if your device is properly connected with
-
"Multiple devices connected" error
- Specify the
device_idparameter in your tool call - Get the list of available devices with the
adb_devicestool
- Specify the
-
Screenshot to clipboard not working
- Ensure the required platform-specific tools are installed
🔧 Alternative Installation Methods
Option 1: Install from npm
# Install globally
npm install -g @landicefu/android-adb-mcp-server
# Or install locally in your project
npm install @landicefu/android-adb-mcp-server
Option 2: Manual Installation from Source
-
Clone the repository:
git clone https://github.com/landicefu/android-adb-mcp-server.git cd android-adb-mcp-server -
Install dependencies and build:
npm install npm run build -
Configure with direct path:
{ "mcpServers": { "android-adb": { "command": "node", "args": ["/path/to/android-adb-mcp-server/build/index.js"], "env": {}, "disabled": false, "alwaysAllow": [] } } }
📄 License
This project is licensed under the ISC License - see the LICENSE file for details.
🤝 Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
FAQ
- What is the Android ADB MCP server?
- Android ADB is a Model Context Protocol (MCP) server profile on explainx.ai. MCP lets AI hosts (e.g. Claude Desktop, Cursor) call tools and resources through a standard interface; this page summarizes categories, install hints, and community ratings.
- How do MCP servers relate to agent skills?
- Skills are reusable instruction packages (often SKILL.md); MCP servers expose live capabilities. Teams frequently combine both—skills for workflows, MCP for APIs and data. See explainx.ai/skills and explainx.ai/mcp-servers for parallel directories.
- How are reviews shown for Android ADB?
- This profile displays 74 aggregated ratings (sample rows for discoverability plus signed-in user reviews). Average score is about 4.5 out of 5—verify behavior in your own environment before production use.
Use Cases▌
Extended AI Capabilities
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Context Enhancement
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Workflow Automation
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Implementation Guide▌
Prerequisites
- ›Claude Desktop 0.7.0+ or Cursor IDE with MCP support
- ›Basic understanding of MCP architecture and capabilities
- ›Access credentials for integrated services (if required)
- ›Willingness to experiment and iterate on configuration
Time Estimate
15-60 minutes depending on server complexity
Installation Steps
- 1.Install MCP server: npm install -g [package-name] or via GitHub
- 2.Add server configuration to ~/.claude/mcp.json
- 3.Provide required credentials and configuration
- 4.Restart Claude Desktop to load new server
- 5.Test basic functionality with simple prompts
- 6.Explore capabilities and experiment with use cases
- 7.Document successful patterns for reuse
Troubleshooting
- ⚠MCP server not loading: Check config syntax, verify installation
- ⚠Connection errors: Check network, firewall, credentials
- ⚠Feature not working: Read server docs, check required parameters
- ⚠Performance issues: Monitor resource usage, check for network latency
- ⚠Conflicts with other servers: Check port assignments, namespace collisions
Best Practices▌
✓ Do
- +Read server documentation thoroughly before setup
- +Start with simple use cases to validate functionality
- +Test in non-production environment first
- +Monitor resource usage and performance
- +Keep servers updated for bug fixes and new features
- +Document configuration for team members
- +Use environment variables for sensitive configuration
✗ Don't
- −Don't grant overly permissive access to MCP servers
- −Don't skip reading security considerations in docs
- −Don't expose sensitive data without proper controls
- −Don't run untrusted MCP servers without code review
- −Don't ignore error messages—investigate root cause
💡 Pro Tips
- ★Combine multiple MCP servers for powerful workflows
- ★Create custom MCP servers for your specific needs
- ★Share successful configurations with team
- ★Use MCP inspector for debugging
- ★Join MCP community for tips and troubleshooting
Technical Details▌
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
- Model Context Protocol (MCP)
- JSON-RPC 2.0
- stdio or HTTP transport
Compatibility
- Claude Desktop
- Cursor IDE
- Custom MCP clients
When to Use This▌
✓ Use When
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid When
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.
Integration▌
- →Tool composition: Chain multiple MCP tools in workflows
- →Context augmentation: Provide AI with relevant external data
- →Action delegation: Let AI execute tasks on external systems
- →Bidirectional sync: Keep AI context and external systems in sync
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
List & Promote Your MCP Server
Share your MCP server with the developer community
Ratings
4.5★★★★★74 reviews- ★★★★★Nikhil Sharma· Dec 28, 2024
Android ADB has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
- ★★★★★Nikhil Singh· Dec 24, 2024
Android ADB is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
- ★★★★★Diego Gupta· Dec 20, 2024
I recommend Android ADB for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
- ★★★★★Nikhil Shah· Dec 20, 2024
Android ADB reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
- ★★★★★Yusuf White· Dec 12, 2024
Android ADB reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
- ★★★★★Yusuf Thompson· Dec 12, 2024
We wired Android ADB into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
- ★★★★★Shikha Mishra· Dec 4, 2024
Useful MCP listing: Android ADB is the kind of server we cite when onboarding engineers to host + tool permissions.
- ★★★★★Evelyn Flores· Dec 4, 2024
Strong directory entry: Android ADB surfaces stars and publisher context so we could sanity-check maintenance before adopting.
- ★★★★★Camila Malhotra· Nov 27, 2024
Android ADB is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
- ★★★★★Yash Thakker· Nov 23, 2024
According to our notes, Android ADB benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
showing 1-10 of 74