npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

android-dev-mcp-server

v0.1.0

Published

MCP server for Android development via ADB — device management, screen interaction, logs, crash diagnostics, and React Native helpers.

Readme

android-dev-mcp-server

An MCP server that exposes Android development workflows over ADB: device discovery, screen interaction, logcat/crash diagnostics, screenshots, screen recording, and React Native helpers.

Use it to drive a connected Android device or emulator from any MCP-compatible client (Claude Code, Claude Desktop, etc.).

Requirements

  • Node.js >=20
  • Android platform tools (adb) on your PATH
  • For emulator tools: emulator on PATH or ANDROID_HOME / ANDROID_SDK_ROOT set
  • A connected device (USB or TCP/IP) or running emulator

Install / Run

Run directly with npx (no install):

npx -y android-dev-mcp-server

Or install globally:

npm install -g android-dev-mcp-server
android-dev-mcp-server

The server speaks MCP over stdio.

Client configuration

Claude Code

claude mcp add android-dev -- npx -y android-dev-mcp-server

Claude Desktop / generic MCP client

Add to your MCP servers config:

{
  "mcpServers": {
    "android-dev": {
      "command": "npx",
      "args": ["-y", "android-dev-mcp-server"]
    }
  }
}

Tools

Device management

  • device_list — list connected devices and their state
  • device_connect — connect to a device over TCP/IP
  • device_disconnect — disconnect a TCP/IP device
  • device_enable_tcpip — enable TCP/IP debugging on a USB device
  • adb_restart — restart the adb server
  • emulator_list_avds — list available Android Virtual Devices
  • emulator_boot — boot an AVD

App lifecycle

  • app_install — install an APK
  • app_launch — launch an installed app by package name

Screen interaction

  • screen_capture — take a screenshot
  • screen_record_start / screen_record_stop — record the screen
  • screen_ui_dump — dump the current UI hierarchy
  • screen_describe_all — describe all visible UI elements
  • screen_describe_point — describe the UI element at given coordinates
  • input_tap — tap at coordinates
  • input_swipe — swipe between coordinates
  • input_text — type text
  • input_system_action — send a system action (back, home, etc.)

Logs & diagnostics

  • log_logcat — capture logcat output (with filtering)
  • log_crash_dump — pull recent crash dumps
  • log_crash_dump_for_app — pull crash dumps scoped to a package
  • log_anr_traces — pull ANR (Application Not Responding) traces
  • bugreport_capture — capture a full Android bug report

React Native

  • rn_open_dev_menu — open the React Native dev menu
  • rn_reverse_port — set up adb reverse for the Metro bundler

Development

git clone https://github.com/kingbin/android-dev-mcp-server.git
cd android-dev-mcp-server
npm install
npm run build
npm start

Inspect with the MCP Inspector:

npx @modelcontextprotocol/inspector node build/index.js

License

MIT © Chris Blazek