GBOX provides environments for AI Agents to operate computer and mobile devices.
Mobile Scenario: Your agents can use GBOX to develop/test android apps, or run apps on the Android to complete various tasks(mobile automation).
Desktop Scenario: Your agents can use GBOX to operate desktop apps such as browser, terminal, VSCode, etc(desktop automation).
MCP: You can also plug GBOX MCP to any Agent you like, such as Cursor, Claude Code. These agents will instantly get the ability to operate computer and mobile devices.
- MacOS
- Version: 10.15 or later
- Homebrew
Note: Using gbox on other platforms, please check npm package @gbox.ai/cli for installation instructions. You can also login to GBOX.AI to use web-based dashboard.
# Install via Homebrew (on MacOS)
brew install gbox
# Login to gbox.ai
gbox login
# Export MCP config and merge into Claude Code/Cursor
gbox mcp export --merge-to claude-code
gbox mcp export --merge-to cursor
Check GBOX CLI Reference for detailed usage.
Check GBOX SDK Reference for detailed usage.
Using GBOX CLI to configure MCP server to your Claude Code/Cursor:
# Export MCP config for Cursor
gbox mcp export --merge-to cursor
# Export MCP config for Claude Code
gbox mcp export --merge-to claude-code --scope project
Or copy paste the following content into your Claude Code/Cursor MCP config:
{
"mcpServers": {
"gbox-android": {
"command": "npx",
"args": [
"-y",
"@gbox.ai/mcp-android-server@latest"
]
}
}
}
Note: Currently, GBOX MCP is only available for Android.
Currently, GBOX supports the following environments:
- Android
- Linux Desktop/Browser
There are three types of Android environments, you can choose based on your needs:
1. Cloud Virtual Device:
Login to GBOX.AI to get a cloud virtual device. Best for testing and development.
2. Cloud Physical Device:
Login to GBOX.AI to get a cloud physical device. Cloud physical device is a real Android phone that you can use for production scenarios.
3. Local Physical Device:
Use your own physical device How to use. Your local device can be any Android device that have Developer Mode enabled. Best for production scenarios and personal use.
Login to GBOX.AI to get a Linux desktop/browser environment. Best for testing and development.
- Go 1.21 or later
- Make
- pnpm (via corepack)
- Node.js 16.13 or later
# Build all components
make build
# Create distribution package
make dist
# MCP Server
cd packages/mcp-server && pnpm dev
# MCP Inspector
cd packages/mcp-server && pnpm inspect
We welcome contributions! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.
- Fork the repository
- Create your feature branch (
git checkout -b username/feature-name
) - Commit your changes (
git commit -m 'Add some feature'
) - Push to the branch (
git push origin username/feature-name
) - Open a Pull Request
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.