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

entroly-mcp

v1.0.62

Published

NPX MCP bridge for Entroly: auditable AI agent context engineering with compression, recovery, receipts, and verification.

Downloads

3,259

Readme

entroly-mcp

An NPX MCP bridge for Entroly, an auditable context engineering control plane for AI agents. Entroly gives Claude Code, Codex, OpenClaw, GitHub Copilot, Cursor, and other MCP clients selected context, recoverable compression, Context Receipts, and local verification.

Which package should I use?

| You want | Use | |---|---| | Full Python CLI/SDK/MCP/proxy path | pip install -U entroly | | Claude Code subscription setup | claude mcp add entroly -- entroly | | MCP from npm with no Python dependency | npx -y entroly-wasm serve | | MCP from npm, delegating to installed Python Entroly | npx -y entroly-mcp serve | | Global Node/WASM CLI | npm install -g entroly |

The simplest first run for most users is still:

pip install -U entroly
entroly verify-claims
entroly simulate

Those commands run locally and do not call an LLM.

MCP usage

Use one of these MCP configurations.

Option A: Node/WASM only, no Python

{
  "mcpServers": {
    "entroly": {
      "command": "npx",
      "args": ["-y", "entroly-wasm", "serve"],
      "env": {
        "ENTROLY_BUDGET": "200000"
      }
    }
  }
}

Option B: NPX bridge to Python Entroly

Use this when you already installed the Python package and want the npm bridge to delegate to it.

{
  "mcpServers": {
    "entroly": {
      "command": "npx",
      "args": [
        "-y",
        "entroly-mcp",
        "serve"
      ],
      "env": {
        "ENTROLY_BUDGET": "200000"
      }
    }
  }
}
pip install -U entroly
# or:
pipx install entroly

Claude Code subscription users

For Claude Code, the cleanest path is usually:

pip install -U entroly
claude mcp add entroly -- entroly

Claude Code stays your client. Entroly adds local MCP tools; you do not need to run the proxy unless you control a provider API key and explicitly want proxy mode.

Features

  • Context Receipts: Machine-readable JSON plus Markdown audit reports for selected and omitted context.
  • MCP Control Plane: Local MCP tools for context selection, receipt rendering, omission explanations, checkpoints, and feedback.
  • Knapsack Token Optimization: Fits the absolute maximum value into your token budget.
  • Shannon Entropy Scoring: Prioritizes complex, high-entropy logic over repetitive boilerplate.
  • SimHash Deduplication: Never wastes tokens on duplicate file contents.
  • Predictive Pre-fetch: Learns your co-access patterns to predict what file you'll need next.
  • Feedback Loop: Agentic feedback (record_success / record_failure) continuously tunes the RL weights.

Context Receipt CLI

The NPX package forwards commands to the installed Python engine:

npx -y entroly-mcp ingest ./docs
npx -y entroly-mcp select --query "Does this contract have a change-of-control clause?" --budget 8000
npx -y entroly-mcp receipt .entroly/receipts/latest.json
npx -y entroly-mcp explain --why-omitted chk_abc123 --receipt .entroly/receipts/latest.json

These commands run locally and do not call an LLM.

Links