gbox-mcp-server

babelcloud/gbox-mcp-server

3.2

If you are the rightful owner of gbox-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

GBOX MCP Server is a tool that enables agents to operate Android devices for app testing and mobile automation.

GBOX MCP SERVER

npm version

Description

GBOX MCP Server enables AI Agents (Cursor/Claude Code/...) to operate Android devices, Linux environments, and browser sessions. The devices can be Cloud VM/Cloud Physical provided by gbox.ai or your local devices. It can be used for Android App Testing, web automation, and general-purpose computing tasks.

Supported Platforms

  • Android - Control Android devices (cloud or local)
  • Linux - Control Linux desktop environments
  • Browser - Control browser sessions with tab management

Usage

Android Mode

For Android device automation. See GBOX Android MCP for details.

"gbox-android": {
  "command": "npx",
  "args": [
    "-y",
    "@gbox.ai/mcp-server@latest",
    "--android"
  ],
  "env": {
    "GBOX_API_KEY": "gbox_xxxx",
    "GBOX_BASE_URL": "https://gbox.ai/api/v1"
  }
}

Linux Mode

For Linux desktop automation with browser support.

"gbox-linux": {
  "command": "npx",
  "args": [
    "-y",
    "@gbox.ai/mcp-server@latest",
    "--linux"
  ],
  "env": {
    "GBOX_API_KEY": "gbox_xxxx",
    "GBOX_BASE_URL": "https://gbox.ai/api/v1"
  }
}

Browser Mode

For web automation with pre-opened browser and advanced tab management.

"gbox-browser": {
  "command": "npx",
  "args": [
    "-y",
    "@gbox.ai/mcp-server@latest",
    "--browser"
  ],
  "env": {
    "GBOX_API_KEY": "gbox_xxxx",
    "GBOX_BASE_URL": "https://gbox.ai/api/v1"
  }
}

Browser Mode Features:

  • Browser opens maximized without controls
  • Tab management: list_tabs, open_tab, switch_tab, close_tab
  • Standard interaction tools: click, scroll, press_key, type, screenshot

Configuration

Note: You can omit the env section if you have successfully run gbox login in CLI.

For instructions on logging in and configuring your profile, refer to the Gbox CLI Documentation.

If you are already logged in, obtain your GBOX_API_KEY from the Personal tab at gbox.ai/dashboard.

To use your local Android devices, check Register Your Own Device.

Resources