アイリ Android MCP Server

Allow LLM to use Android Device

Local serverstdioTypeScript

What is the アイリ Android MCP server?

Allow LLM to use Android Device. The アイリ android mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 3 defined tools rather than through you.

What it actually does

A MCP server that allows airi all LLMs to control Android devices. This project is a child project of airi.

Its toolset

Everything the assistant can do here goes through one of these:

  • Prerequisites — The Prerequisites tool exposed by this server
  • Commands — The Commands tool exposed by this server
  • Contributing — The Contributing tool exposed by this server

Configuration

You will need one environment variable: ADB_HOST. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  1. Install Bun 2. Install Android Platform Tools 3. Connect an Android device (via USB or adb connect for emulators)

Adding it to your client

The server ships on a container image as ghcr.io/proj-airi/airi-android, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

When to reach for it

Among the AI and media services 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's toolset — Prerequisites, Commands, Contributing — is a fair guide to whether it matches your workflow. It is maintained by LemonNekoGH; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against アイリ Android's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Caveats

  • 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.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the アイリ android mcp server does with a few real requests.

Available tools

ToolWhat it does
PrerequisitesThe Prerequisites tool exposed by this server.
CommandsThe Commands tool exposed by this server.
ContributingThe Contributing tool exposed by this server.

How to install the アイリ Android MCP server

{
  "mcpServers": {
    "airi-android-lemonnekogh": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "ghcr.io/proj-airi/airi-android"],
      "env": {
        "ADB_HOST": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  1. Install Bun 2. Install Android Platform Tools 3. Connect an Android device (via USB or adb connect for emulators)
VariableDescriptionRequired
ADB_HOSTEndpoint or connection string the server talks to.Optional

Example prompts to try

  • Use アイリ Android to Prerequisites.
  • Use アイリ Android to Commands.
  • Use アイリ Android to Contributing.

Frequently asked questions

You need Bun installed for direct mode, or Docker for containerized mode. An Android device must be connected via USB or emulator (via `adb connect`). Android Platform Tools are required for direct usage.