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

mobile-pixel-mcp

v1.3.1

Published

Visual-first MCP server for mobile automation

Downloads

571

Readme

Mobile Pixel MCP

A lightweight, visual-first Model Context Protocol (MCP) server for mobile device automation. Enables AI models to control and interact with mobile devices through screenshots and coordinate-based interactions.

Quick Start

Add this to your MCP client configuration (e.g., Claude Desktop, Cursor):

{
  "mcpServers": {
    "mobile-pixel": {
      "command": "npx",
      "args": [
        "-y",
        "mobile-pixel-mcp@latest"
      ]
    }
  }
}

You can optionally pass arguments to specify a platform or device:

"args": ["-y", "mobile-pixel-mcp@latest", "--platform", "ios"]

Prerequisites

Start the server after ensuring your environment is ready:

Android

  • Android Debug Bridge (ADB) installed and in PATH
  • USB debugging enabled on device, or emulator running
  • Device connected and authorized (adb devices shows your device)

iOS

  • IDB (iOS Development Bridge) installed and in PATH
  • Xcode and Xcode Command Line Tools (xcrun simctl support)
  • Simulator running or physical device connected

Features

  • Visual-First: Uses screenshots + coordinates (OCR/Computer Vision ready)
  • Automatic OCR: find_text and tap_text tools included
  • Telemetry Bridge: Read app logs via MCP
  • Smart Launch: Context-aware app launching (resumes if running, cold start if not)
  • Cross-platform support (Android & iOS)

Available Tools

| Tool | Description | Parameters | |------|-------------|------------| | get_screen | Capture current device screen | None | | tap | Tap at coordinates | x, y | | swipe | Swipe gesture | x1, y1, x2, y2, duration_ms | | type_text | Input text into focused element | text | | home | Press Home button | None | | launch_app | Launch/Resume an app | app_id | | check_app_status | Check if app is running | app_id | | find_text | Find text coordinates (OCR) | text | | tap_text | Find text and tap center (OCR) | text | | check_app_log | Tail recent app logs | tag, filter_text | | configure_device | Switch device/platform dynamically | platform, device_id, app_id | | install_app | Install app from local path | path | | uninstall_app | Uninstall app | app_id | | reset_app | Reset app data/state | app_id |

Configuration

The server supports persistent configuration to avoid specifying arguments on every restart. It looks for mobile-pixel.config.json in the current working directory. The server will automatically create this file with default settings if it doesn't exist.

Dynamic Switching

You can use the configure_device tool to switch platforms (e.g., from Android to iOS) or target devices without restarting the MCP server. This updates the mobile-pixel.config.json file automatically.

Manual Configuration (mobile-pixel.config.json)

{
  "platform": "android",
  "deviceId": "emulator-5554",
  "appId": "com.example.app",
  "mainActivity": ".MainActivity"
}

Local Development & Installation

If you want to run from source or contribute:

  1. Clone: git clone <repo>
  2. Install: npm install
  3. Build: npm run build
  4. Run:
    # Android
    npm start
    # iOS
    npm start -- --platform=ios
  5. Test: npm test

Troubleshooting

"ADB/IDB is not available"

Ensure the respective tools (adb for Android, idb/xcrun for iOS) are installed and in your system PATH.

License

Apache-2.0