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

ameva-mcp-hub

v3.0.1

Published

AMEVA OS: Universal Polyglot WASM & AI Vector MCP Hub. Zero-Install Multi-Language Tool Runtime & Real-Time Dynamic Multi-Repo Subscription Engine.

Readme

ameva-mcp-hub

Universal Polyglot WebAssembly & AI Vector Model Context Protocol (MCP) Hub
Dynamic Multi-Repository Subscription, Zero-Install WASI Runtime, and Heuristic Execution Engine.


1. Executive Summary

ameva-mcp-hub is a high-performance, zero-browser native execution hub and Model Context Protocol (MCP) server. It enables AI clients (Claude Desktop, Cursor, Zed) to dynamically ingest, execute, and scale multi-language tools (C++, Rust, Java, Python, Go, JavaScript) from remote GitHub repositories inside a single lightweight Node.js process without requiring local compilers or runtimes (No JDK, No Rustc, No Clang required on host).


2. Key Architectural Invariants

  • Polyglot WebAssembly In-Memory Core: Executes compiled .wasm binaries across C++, Rust (wasm32-wasip1), Java (TeaVM / GraalVM), and Go (TinyGo) with in-memory execution latency under 1ms.
  • Zero-Browser Pure Node.js Architecture: Eliminates browser and Puppeteer overhead, booting in ~450ms with a ~30MB memory footprint.
  • Dynamic Multi-Repository Subscription: Allows users to register and manage multiple GitHub tool repositories on the fly via HTTP API or Web Dashboard, automatically broadcasting notifications/tools/list_changed to connected AI agents without server restarts.
  • AI Vector & Semantic Ranking Engine: Native high-dimensional Cosine Similarity (vector_cosine_similarity) and Top-K semantic ranking (vector_top_k_search) for localized RAG pipelines.
  • Heuristic Adaptive Execution Router (smart_exec): Evaluates workload risk and host binary availability to route tasks automatically between HOST_NATIVE (for workspace builds/git) and WASM_SANDBOX (for isolated math/vectors/untrusted code).

3. Quick Start (Zero-Install CLI)

3.1 Direct Execution via NPX

npx ameva-mcp-hub

3.2 Claude Desktop Configuration

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "ameva-mcp-hub": {
      "command": "npx",
      "args": ["-y", "ameva-mcp-hub"]
    }
  }
}

4. SDK Library Usage

ameva-mcp-hub can be embedded directly into custom Node.js and TypeScript backends as an isolated execution engine:

npm install ameva-mcp-hub
import { 
  WasiRunner, 
  NodeExecutor, 
  heuristicRouter, 
  BridgeGateway 
} from "ameva-mcp-hub";

// 1. Direct In-Memory WASM Execution (Zero-JVM / Zero-Toolchain)
const runner = new WasiRunner({ args: ["100", "20"] });
const res = await runner.run(wasmBuffer);
console.log("Stdout:", res.stdout);

// 2. AI Vector Cosine Similarity
const executor = new NodeExecutor();
const similarity = await executor.executeTool("vector_cosine_similarity", {
  vecA: [0.1, 0.5, 0.9],
  vecB: [0.1, 0.5, 0.88]
});
console.log(similarity.content[0].text);

// 3. Heuristic Route Evaluation
const route = heuristicRouter.evaluate({ command: "git status" });
console.log(route.target); // "HOST_NATIVE"

5. Verification & Test Suites

The codebase includes deterministic, comprehensive automated test suites:

# Run All Master Test Suites
npm run test:all

# Individual Suites
npm run test:subscription  # Multi-Repo Real-Time Tool Propagation
npm run test:universal     # C++, Rust, Java WASM & AI Vector Tests
npm run test:heuristic     # Heuristic Adaptive Execution Router
npm run test:pure-node     # Zero-Browser Pure Node.js Stdio Test
npm run test:regression    # Config Hot-Reload & Parallel Host IPC
npm run lint:neutral       # Open-Source Neutrality & Compliance

6. Official Documentation & Portal


7. License

Distributed under the MIT License.