HomeDevelopment › Agent Droid Bridge

Agent Droid Bridge

MCP server giving AI agents eyes and hands inside Android devices via ADB

Python Local
★ 22 stars Last pushed 2026-06-30 License: MIT

Topics: Developer Tools

Connect

Review any command before running it. Package names and URLs come from the server's own registry entry.

Package (pypi 0.6.1)

uvx agent-droid-bridge

Or add to your MCP client config:

{
  "mcpServers": {
    "agent-droid-bridge": {
      "command": "uvx",
      "args": [
        "agent-droid-bridge"
      ],
      "env": {
        "ADB_EXECUTION_MODE": "<YOUR_VALUE>",
        "ADB_ALLOW_SHELL": "<YOUR_VALUE>",
        "ADB_PATH": "<YOUR_VALUE>",
        "ADB_EXTRA_TOOL_PACKS": "<YOUR_VALUE>",
        "ADB_DENIED_TOOLS": "<YOUR_VALUE>",
        "ADB_SHELL_ALLOWLIST": "<YOUR_VALUE>",
        "ADB_SHELL_DENYLIST": "<YOUR_VALUE>",
        "MCP_LOG_ENABLED": "<YOUR_VALUE>",
        "MCP_LOG_DIR": "<YOUR_VALUE>",
        "ADB_LOG_LEVEL": "<YOUR_VALUE>",
        "ADB_COMMAND_TIMEOUT": "<YOUR_VALUE>",
        "ADB_SCREENSHOT_TIMEOUT": "<YOUR_VALUE>",
        "ADB_UI_CHANGE_TIMEOUT": "<YOUR_VALUE>",
        "ADB_UI_CHANGE_POLL_INTERVAL": "<YOUR_VALUE>",
        "ADB_AAPT_TIMEOUT": "<YOUR_VALUE>",
        "ADB_CONFIG_SOURCE": "<YOUR_VALUE>"
      }
    }
  }
}
  • ADB_EXECUTION_MODE — Security mode. 'unrestricted' allows all shell commands with an optional denylist. 'restricted' allows only commands in ADB_SHELL_ALLOWLIST.
  • ADB_ALLOW_SHELL — Set to 'false' to block all adb shell commands regardless of execution mode.
  • ADB_PATH — Path to the ADB binary. Use a full path if adb is not on your system PATH.
  • ADB_EXTRA_TOOL_PACKS — Comma-separated list of extra tool packs to load. Set to 'app_manager' to enable 9 additional app management tools.
  • ADB_DENIED_TOOLS — Comma-separated list of tool names to hide from the agent at startup.
  • ADB_SHELL_ALLOWLIST — Comma-separated list of shell commands permitted in restricted mode. Empty blocks all shell commands.
  • ADB_SHELL_DENYLIST — Comma-separated list of shell commands blocked in unrestricted mode.
  • MCP_LOG_ENABLED — Set to 'true' to enable session logging. Requires MCP_LOG_DIR.
  • MCP_LOG_DIR — Absolute path to the directory where session logs are written. Required when MCP_LOG_ENABLED is true.
  • ADB_LOG_LEVEL — Server process log level.
  • ADB_COMMAND_TIMEOUT — Maximum seconds to wait for any ADB command.
  • ADB_SCREENSHOT_TIMEOUT — Maximum seconds to wait for a screenshot capture.
  • ADB_UI_CHANGE_TIMEOUT — Default timeout in seconds for detect_ui_change.
  • ADB_UI_CHANGE_POLL_INTERVAL — How often in seconds detect_ui_change polls the UI hierarchy.
  • ADB_AAPT_TIMEOUT — Maximum seconds to wait for aapt dump badging, used by the app_manager pack.
  • ADB_CONFIG_SOURCE — Set to 'yaml' to load configuration from adb_config.yaml instead of environment variables.

Related servers

Listed in punkpeye/awesome-mcp-servers (MIT)

Data from the Official MCP Registry