trackmcp
Back to directory
jiantao88

android-mcp-server

View on GitHub

Android MCP Server implementation

15 stars TypeScriptOthers Updated Aug 20, 2026

Documentation

ADB MCP 服务器

这是一个用于 Android Debug Bridge (ADB) 的 MCP 服务器,使 Claude 能够与 Android 设备进行交互。

技术文章

工具列表

1. `get-devices`

    2. `list-packages`

      3. `input-text`

        4. `install-apk`

          5. `uninstall-apk`

            6. `clear-app-data`

              7. `pull`

                8. `push`

                  9. `screencap`

                    10. `rm`

                      11. `reset-permissions`

                        12. `grant-permission`

                          设置说明

                          1. 安装 ADB:

                            2. 启用 USB 调试:

                              安装服务器

                              shell
                              # 克隆仓库
                              git clone [repository-url]
                              cd mcp-server-adb
                              
                              # 安装依赖
                              npm install
                              
                              # 构建项目
                              npm run build

                              在 Claude Desktop 中使用

                              在你的 `claude_desktop_config.json` 中添加以下内容:

                              json
                              {
                                "mcpServers": {
                                  "adb": {
                                    "command": "node",
                                    "args": ["-y", "/path/to/mcp-server-adb/build/index.js", "/path/to/adb"]
                                  }
                                }
                              }

                              请将 /path/to/adb 替换为你实际的 ADB 可执行文件路径。

                              在 Windsurf 中使用

                              1. 首先确保已经安装了 Node.js 和 ADB

                              2. 克隆并构建项目:

                              shell
                              git clone https://github.com/jiantao88/android-mcp-server.git
                                 cd android-mcp-server
                                 npm install
                                 npm run build

                              或者直接使用已经克隆的项目:

                              shell
                              cd /path/to/android-mcp-server
                                 npm install
                                 npm run build

                              3. 在 Windsurf 的设置中添加 MCP 配置:

                              json
                              {
                                   "mcpServers": {
                                     "adb": {
                                       "command": "node",
                                       "args": [
                                         "/path/to/android-mcp-server/build/index.js",
                                         "/usr/local/bin/adb"
                                       ]
                                     }
                                   }
                                 }

                              注意:

                                4. 重启 Windsurf 使配置生效

                                许可证

                                本项目采用 MIT 许可证 - 详见 LICENSE 文件。

                                Frequently asked questions

                                What is android-mcp-server?

                                android-mcp-server is Android MCP Server implementation

                                How do I install android-mcp-server?

                                Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

                                Is android-mcp-server open source?

                                Yes — it is hosted on GitHub at https://github.com/jiantao88/android-mcp-server and has 15 stars.

                                Related MCP tools

                                Run your own MCP server? See who uses it and what to fix.

                                Measure it with TrackMCP