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

mcp-local-hub

v0.4.24

Published

mcp-local-hub (mcphub): a local supervisor + router that compresses dozens of duplicate MCP (Model Context Protocol) server processes across parallel clients into one managed hub. Windows-GA; Linux-beta / macOS-preview for supervisor lifecycle.

Readme

mcp-local-hub (npm distribution)

mcp-local-hub is the npm meta package for mcp-local-hub — a local supervisor + router that compresses dozens of duplicate MCP (Model Context Protocol) server processes spawned across parallel clients (editors, agents, CLIs) into one managed hub.

  • Project: https://github.com/applicate2628/mcp-local-hub
  • License: MPL-2.0
  • Author: Dmitry Denisenko (@applicate2628)

Install

npm install -g mcp-local-hub
# the installed command is `mcphub`:
mcphub version
# or run without installing:
npx mcp-local-hub version

The npm package is mcp-local-hub; the command it installs is mcphub (the package's bin entry). Install the package, run mcphub.

The meta package ships no binary itself. It declares one @applicate2628/mcp-local-hub-<platform>-<arch> package per supported target in its optionalDependencies, and npm installs only the sub-package whose os/cpu match your host (the esbuild / turbo pattern). A small Node shim (bin/cli.js) then locates that platform binary and execs it, passing your arguments through and propagating its exit code.

There is no postinstall download script by design: postinstall is the top npm supply-chain attack vector and breaks under npm install --ignore-scripts. The binary arrives purely through the optional dependency npm itself installs.

Supported platforms and support tiers

| npm os/cpu | Go GOOS/GOARCH | Support tier | | ---------------- | ------------------ | ------------ | | win32 / x64 | windows/amd64 | GA | | win32 / arm64| windows/arm64 | best-effort | | darwin / x64 | darwin/amd64 | best-effort | | darwin / arm64| darwin/arm64 | best-effort | | linux / x64 | linux/amd64 | best-effort | | linux / arm64| linux/arm64 | best-effort |

GA = generally available. best-effort = the CLI runs, but the long-lived supervisor lifecycle is Windows-GA / Linux-beta / macOS-preview per the project's release scope. On Apple Silicon with no native arm64 build present, the darwin-x64 binary runs under Rosetta 2 — an accepted fallback.

If your platform is unsupported, or the binary did not install

The shim prints a clear error naming your platform and points you to the fallback channel:

  1. Download the matching binary from https://github.com/applicate2628/mcp-local-hub/releases
  2. Place it on your PATH.
  3. Keep it current with mcphub install --upgrade.

How this directory is maintained

  • package.json — the meta package (mcp-local-hub). Its version is the single version authority; npm/sync-version.js propagates it into the Go build scripts.
  • bin/cli.js — the platform-resolver shim (no runtime dependencies).
  • generate-platform-packages.js — regenerates the six packages/<platform>-<arch>/ sub-packages from one GOOS/GOARCH→os/cpu map. The sub-packages are generated artifacts (@applicate2628/mcp-local-hub-*); do not hand-edit them.
  • Platform binaries are injected into each sub-package's bin/ by the release job at publish time; they are not committed to git.

Why the platform packages are scoped

The meta package is unscoped (mcp-local-hub) so the install command stays short. The six platform packages are scoped under @applicate2628/ because a brand-new account publishing a family of near-identical unscoped names trips npm's spam-detection heuristic. Scoping them under the publisher's namespace clears that while keeping the user-facing install (npm install -g mcp-local-hub) and command (mcphub) unchanged. Users never type the scoped names — npm resolves them through optionalDependencies.