← Index

Expo Android MCP

io.github.frndchagas/expo-android·v0.2.1·Other
Quality Score
84
/100

MCP server for Android emulator automation via ADB.

§01  Install
Claude Desktop (claude_desktop_config.json)
{
  "mcpServers": {
    "expo-android": {
      "command": "npx",
      "args": [
        "-y",
        "@fndchagas/expo-android"
      ],
      "env": {
        "ADB_PATH": "adb",
        "ADB_SERIAL": "<adb_serial>",
        "ADB_TIMEOUT_MS": "15000",
        "ADB_MAX_BUFFER_MB": "10",
        "ADB_DEBUG": "0",
        "MCP_TRANSPORT": "stdio",
        "PORT": "7332"
      }
    }
  }
}
Cursor (.cursor/mcp.json)
{
  "mcpServers": {
    "expo-android": {
      "command": "npx",
      "args": [
        "-y",
        "@fndchagas/expo-android"
      ],
      "env": {
        "ADB_PATH": "adb",
        "ADB_SERIAL": "<adb_serial>",
        "ADB_TIMEOUT_MS": "15000",
        "ADB_MAX_BUFFER_MB": "10",
        "ADB_DEBUG": "0",
        "MCP_TRANSPORT": "stdio",
        "PORT": "7332"
      }
    }
  }
}
Cline (cline_mcp_settings.json)
npx -y @fndchagas/expo-android
§02  Environment variables
ADB_PATH

Path to adb executable.

ADB_SERIAL

Device serial to target (optional, use 'auto' to clear and auto-detect).

ADB_TIMEOUT_MS

Timeout for adb commands in milliseconds.

ADB_MAX_BUFFER_MB

Max buffer size for adb output in MB.

ADB_DEBUG

Enable adb debug logs (set to 1).

MCP_TRANSPORT

Transport: stdio, http, or both.

PORT

HTTP port when MCP_TRANSPORT is http or both.

§03  MCP Quality Score  ·  methodology
freshness
19
completeness
20
installability
25
documentation
15
stability
5
§04  Alternatives in Other