Android Tester MCP Server

MCP server exposing Gbox Android control tools via Model Context Protocol

Local serverstdioTypeScript

What is the Android Tester MCP MCP server?

Android Tester MCP MCP server exists for a simple reason — assistants are far more useful when they can act on Android Tester MCP directly instead of describing what you should do. MCP server exposing Gbox Android control tools via Model Context Protocol.

What you get

A Model Context Protocol (MCP) plugin for automating Android devices using the Gbox SDK. This plugin provides tools for creating Android boxes, taking screenshots, performing AI-powered UI actions, and managing applications.

  • Create Android Boxes — Spin up virtual or physical Android devices
  • Screenshot Capture — Take screenshots of the current display
  • AI-Powered Actions — Perform UI actions using natural language instructions
  • App Management — Install, uninstall, and launch Android applications
  • Box Management — List and get information about your Android boxes

Setting it up

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

What the assistant can call

Once Android Tester MCP is connected, these are the calls the assistant has available:

  • create_android_box — Create a new Android box with specified configuration
  • list_boxes — List all current boxes belonging to your API key
  • get_box — Get detailed information about a specific box
  • get_screenshot — Take a screenshot of the Android device
  • ai_action — Perform UI actions using natural language (e.g., "click the login button")
  • install_apk — Install an APK file from local path or URL
  • uninstall_apk — Uninstall an app by package name
  • open_app — Launch an installed application

Configuration and credentials

You will need one environment variable: GBOX_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Node.js and npm - Valid Gbox API key - TypeScript (for development)

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the android tester mcp mcp server does with a few real requests.

Choosing this one

Among the browser automation options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Android Tester MCP's toolset — create_android_box, list_boxes, get_box and 5 more — is a fair guide to whether it matches your workflow. It is maintained by zhenweiwang1990; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
create_android_boxCreate a new Android box with specified configuration
list_boxesList all current boxes belonging to your API key
get_boxGet detailed information about a specific box
get_screenshotTake a screenshot of the Android device
ai_actionPerform UI actions using natural language (e.g., "click the login button")
install_apkInstall an APK file from local path or URL
uninstall_apkUninstall an app by package name
open_appLaunch an installed application

How to install the Android Tester MCP MCP server

{
  "mcpServers": {
    "gbox-android": {
      "command": "node",
      "args": ["/YOU_PATH_TO_THIS_REPO/android-tester-mcp/dist/index.js"],
      "env": {
        "GBOX_API_KEY": "YOUR API KEY"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Node.js and npm - Valid Gbox API key - TypeScript (for development)
VariableDescriptionRequired
GBOX_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Android Tester MCP to create android box.
  • Use Android Tester MCP to list boxes.
  • Use Android Tester MCP to get box.

Frequently asked questions

It connects Android Tester MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 8 tools (create_android_box, list_boxes, get_box, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Android Tester MCP directly.