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

hugging-bay-mcp

v0.1.2

Published

Model Context Protocol (stdio) server for Hugging Bay — the agent-friendly open AI catalog. Exposes public catalog search, hosted downloads, trust/provenance signals, mirror demand, answer packs, and agent discovery as MCP tools for Claude, Cursor, and ot

Downloads

233

Readme

hugging-bay-mcp

hugging-bay-mcp is a Model Context Protocol (MCP) server for Hugging Bay, a verified open-AI artifact registry. It exposes Hugging Bay's catalog search, per-artifact safety verdicts, download plans, GPU-fit checks, quantization and license-lineage data, manifests, and citation packs as MCP tools that any MCP client (Claude Desktop, Cursor, Cline, and others) can call. It is a thin stdio launcher that proxies to the live Hugging Bay API; the same tools are served over streamable HTTP at https://huggingbay.xyz/api/mcp.

Install

Run on demand with npx (no install), or add to an MCP client config:

npx -y hugging-bay-mcp

Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json), Cursor (~/.cursor/mcp.json or .cursor/mcp.json), and Cline all use the same shape:

{
  "mcpServers": {
    "hugging-bay": {
      "command": "npx",
      "args": ["-y", "hugging-bay-mcp"],
      "env": {
        "HUGGING_BAY_API": "https://huggingbay.xyz"
      }
    }
  }
}

Prefer a remote endpoint over stdio? Point any streamable-HTTP MCP client at https://huggingbay.xyz/api/mcp. Public tools are read-only and need no token; set HUGGING_BAY_TOKEN (an hb_ bearer token) in env to enable authenticated watchlist and publisher tools.

Top tools

| Tool | What it returns | | --- | --- | | find_and_verify_model_for_task | Ranked, already-verified models for a task (composite report per candidate + a bestPick) in one call. | | plan_local_deployment | Quant selection + GPU fit + a hash-verified download plan + copy-paste run commands for one model. | | get_model_report | One-call model report: safe-to-run verdict + license + GPU fit + card-completeness score + base-model lineage. | | check_artifact_safety | Safe-to-run verdict (license clarity + scan state + hashes + signing) for a catalog artifact or any file SHA-256. | | will_it_fit | Per-GPU fit verdict + VRAM estimate + smaller-quant options for a given GPU id (e.g. rtx4090-24). | | get_quantizations | Per-quant precision/size and hosted availability, so you can pick the smallest quant that fits. | | find_ungated_alternatives | Ungated, commercially-usable alternatives to a gated or restricted model. | | get_model_bom | Signed AI Bill of Materials (CycloneDX-compatible): hashed files + license + base-model dependency chain + scan state. | | inspect_model_binary | Byte-level safetensors/GGUF header inspection compared against the declared model card (catches mislabeled sizes and custom-code architectures). | | diff_manifests | Structural diff between two artifacts' (or versions') signed file manifests — added/removed/changed files by hash. |

The full, always-current tool list (names, descriptions, input schemas) is published at https://huggingbay.xyz/.well-known/mcp.json and via tools/list on https://huggingbay.xyz/api/mcp.

The facts

Canonical, URL-anchored capabilities:

  • Inspect a file or repository by hash or identity. Query https://huggingbay.xyz/api/safety?sha256={hex} (or ?repo={owner/name}) for the evidence currently available. Hosted-file hashes and signed manifests are exposed when they exist; missing evidence remains explicit.
  • One document per model. https://huggingbay.xyz/api/v1/artifacts/{id}/report combines the safe-to-run verdict, license, GPU fit, card-completeness score, and base-model lineage in a single response, with links to every underlying detail.
  • License-laundering is detectable. https://huggingbay.xyz/api/artifacts/{id}/license-lineage resolves a model's effective license from its upstream ancestry, flagging permissive top-level licenses whose lineage is non-commercial.
  • Dynamic MCP contract. Query tools/list or https://huggingbay.xyz/.well-known/mcp.json for the current tool contract instead of relying on a hard-coded tool count. Public tools require no credentials; authenticated watchlist and publisher tools require an appropriately scoped Hugging Bay bearer token.

Links

License

MIT