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

@iflow-mcp/vwww-droid-algorithmaide-mcp

v0.1.0

Published

Action-driven MCP server for AlgorithmAide hook profile storage and auto-apply workflows

Readme

algorithmaide-mcp

中文文档

Special thanks to Junge (军哥) for open-sourcing AlgorithmAide.

algorithmaide-mcp is an MCP server for real-device Android reversing workflows. It wraps AlgorithmAide config writes, AppSwitch/logList sync, LSPosed scope sync, Frida script injection, and runtime log queries into a stable MCP toolset.

Upstream And Downloads

  • This MCP targets AlgorithmAide Pro (com.junge.algorithmAidePro).
  • AlgorithmAide Pro APK: 关注公众号 算法助手Plus 下载 APK。
  • LSPosed_mod.zip: please prepare a CLI-enabled LSPosed_mod package for this workflow.
  • Magisk APK: please install official Magisk before running this MCP.

Verified Scope

This project is currently verified only on:

  • Android 10 (API 29)
  • Root with Magisk (su 0 sh -c ... works)
  • LSPosed_mod 1.9.3_mod(7296) with CLI enabled
  • Device sample: Pixel 4

Important compatibility notes:

  • Non-mod LSPosed is currently not supported because CLI is unavailable.
  • Other Android versions and environments may work, but you must validate them yourself.
  • LSPosed_mod CLI scope updates are already built into this MCP (sync_lsposed_scope and high-level workflow tools).

Before real use, run:

npm run device:preflight -- --target-package <your.package>
npm run device:smoke:suite -- --target-package <your.package>

Quick Start

Clone and install dependencies:

git clone https://github.com/vwww-droid/algorithmaide-mcp.git algorithmaide-mcp
cd algorithmaide-mcp
npm install

Configure mcp profile:

{
  "mcpServers": {
    "algorithmaide": {
      "command": "node",
      "args": [
        "/absolute/path/to/algorithmaide-mcp/bin/algorithmaide-mcp.js"
      ]
    }
  }
}

Common Commands

npm run device:preflight -- --target-package com.mb.hawkeye
npm run device:smoke -- --target-package com.mb.hawkeye
npm run device:smoke:suite -- --target-package com.mb.hawkeye
npm run release:selfcheck
npm test

Build Notes (LSPosed_mod)

If you need reproducible LSPosed_mod builds for this workflow, use the pinned-version one-click script from your companion project:

  • /Users/admin/Projects/Reverses/LSPosed_mod/build-last.sh

This script sets Java from .java-version, builds required libxposed artifacts, then runs zipAll, and should produce a usable LSPosed_mod package.

Tool Overview

Frequently used tools:

  • read_target_state
  • apply_algorithm_aide_config
  • add_custom_hooks
  • inject_frida_script
  • query_agent_logs
  • query_frida_logs

Full tool contracts: docs/tool-contracts.md

Documentation

Contributing

Issues and PRs are welcome.

When opening an issue, include:

  • Device and system info (Android version, root solution, LSPosed version)
  • Target package
  • Commands you ran
  • JSON output from device:preflight and device:smoke:suite

License

MIT