Skip to content
VS Code

Expo Android MCP for VS Code

io.github.frndchagas/expo-android

MCP server for Android emulator automation via ADB.

client:VS Code transport:stdio runtime:npm

Install Expo Android MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "adb-path",
      "description": "ADB_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "adb-serial",
      "description": "ADB_SERIAL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "adb-timeout-ms",
      "description": "ADB_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "adb-max-buffer-mb",
      "description": "ADB_MAX_BUFFER_MB",
      "password": true
    },
    {
      "type": "promptString",
      "id": "adb-debug",
      "description": "ADB_DEBUG",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-transport",
      "description": "MCP_TRANSPORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "port",
      "description": "PORT",
      "password": true
    }
  ],
  "servers": {
    "expo-android": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@fndchagas/expo-android"
      ],
      "env": {
        "ADB_PATH": "${input:adb-path}",
        "ADB_SERIAL": "${input:adb-serial}",
        "ADB_TIMEOUT_MS": "${input:adb-timeout-ms}",
        "ADB_MAX_BUFFER_MB": "${input:adb-max-buffer-mb}",
        "ADB_DEBUG": "${input:adb-debug}",
        "MCP_TRANSPORT": "${input:mcp-transport}",
        "PORT": "${input:port}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Expo Android MCP in other clients