drio
Open app

AndroidMcpServer

Source

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

Catalog onlyCatalog onlySTDIO

Overview

AndroidMcpServer is a server for the Android Debug Bridge (ADB) that allows Claude to interact with Android devices.

To use AndroidMcpServer, clone the repository, install dependencies, and configure it in your application settings to connect with ADB.

  • List connected Android devices - Install and uninstall APKs - Input text to devices - Capture screenshots - Manage app permissions
  1. Automating app testing on Android devices.
  2. Managing app installations and updates remotely.
  3. Capturing screenshots for documentation or testing purposes.

Add to your AI client

Use these steps to connect AndroidMcpServer in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "androidmcpserver-jiantao88": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-androidmcpserver-jiantao88"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "androidmcpserver-jiantao88": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-androidmcpserver-jiantao88"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "androidmcpserver-jiantao88": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-androidmcpserver-jiantao88"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "androidmcpserver-jiantao88": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-androidmcpserver-jiantao88"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "androidmcpserver-jiantao88": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-androidmcpserver-jiantao88"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "androidmcpserver-jiantao88": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-androidmcpserver-jiantao88"
      ]
    }
  }
}

FAQ

Is AndroidMcpServer free to use?

Yes! AndroidMcpServer is open-source and free to use.

What are the prerequisites for using AndroidMcpServer?

You need to have ADB installed and USB debugging enabled on your Android device.

Can I use AndroidMcpServer with any Android device?

Yes, as long as the device supports ADB and USB debugging is enabled.