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

@rvaim/deveco-mobile-mcp

v0.1.0-rvaim.1

Published

MCP server for HarmonyOS / iOS / Android mobile automation and development. Fork of mobile-mcp with HarmonyOS device support.

Readme

[!IMPORTANT] 这是由 rvaim 维护的非官方 npm 再发布版本,功能源代码未经修改。 上游:https://gitcode.com/openharmony-mcp/deveco-mobile-mcp.git 上游提交:b9a1e4ea07dddec102e9e0c14795c079c9f028ac 发布副本仅调整 npm 包名、仓库元数据、打包清单和本段说明。

deveco-mobile-mcp

An MCP (Model Context Protocol) server for mobile automation and development across HarmonyOS, iOS, and Android — supporting simulators, emulators, and real devices.

This project is a derivative work based on mobile-mcp by Mobile Next contributors, licensed under the Apache License 2.0. See NOTICE for attribution details.

What's Different from Upstream

This fork adds HarmonyOS device support on top of the original mobile-mcp:

  • HarmonyOS device discovery, screenshot, element tree parsing
  • App launch, terminate, install, uninstall via HDC
  • URL opening with custom scheme support (e.g. alipays://)
  • Key event mapping for HarmonyOS
  • Multi-platform device log retrieval

Prerequisites

Quick Start

# Clone the repo
git clone https://gitcode.com/openharmony-mcp/deveco-mobile-mcp.git
cd deveco-mobile-mcp

# Install dependencies
npm install

# Build
npm run build

# Run
node lib/index.js

Platform Support

| Platform | Supported | |----------|:---------:| | HarmonyOS Real Device | ✅ | | iOS Real Device | ✅ | | iOS Simulator | ✅ | | Android Real Device | ✅ | | Android Emulator | ✅ |

MCP Tools

Device Management

  • mobile_list_available_devices — List all available devices
  • mobile_get_screen_size — Get screen size in pixels
  • mobile_get_orientation — Get current screen orientation
  • mobile_set_orientation — Change screen orientation

App Management

  • mobile_list_apps — List installed apps
  • mobile_launch_app — Launch an app by package name
  • mobile_terminate_app — Terminate a running app
  • mobile_install_app — Install an app from file
  • mobile_uninstall_app — Uninstall an app

Screen Interaction

  • mobile_take_screenshot — Take a screenshot
  • mobile_save_screenshot — Save a screenshot to file
  • mobile_list_elements_on_screen — List UI elements with coordinates
  • mobile_click_on_screen_at_coordinates — Click at x,y coordinates
  • mobile_double_tap_on_screen — Double-tap at coordinates
  • mobile_long_press_on_screen_at_coordinates — Long press at coordinates
  • mobile_swipe_on_screen — Swipe in any direction

Input & Navigation

  • mobile_type_keys — Type text into focused elements
  • mobile_press_button — Press device buttons (HOME, BACK, etc.)
  • mobile_open_url — Open URLs in the device browser

Usage with Claude Code

claude mcp add deveco-mobile-mcp -- npx -y deveco-mobile-mcp

Or add to your MCP settings:

{
  "mcpServers": {
    "deveco-mobile-mcp": {
      "command": "node",
      "args": ["/path/to/deveco-mobile-mcp/lib/index.js"]
    }
  }
}

Upstream

This project is forked from mobile-mcp (Apache-2.0). For the original documentation, wiki, and roadmap, visit the upstream repository.

License

Apache License 2.0

Copyright 2025 deveco-mobile-mcp Contributors

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.