🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

entroly-mcp

Package Overview
Dependencies
Maintainers
1
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

entroly-mcp

MCP bridge for AI agents using Entroly Context Assurance: reduce avoidable AI token usage with evidence selection, receipts, exact recovery, and verification.

latest
Source
npmnpm
Version
1.0.74
Version published
Weekly downloads
633
-21.76%
Maintainers
1
Weekly downloads
 
Created
Source

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 wantUse
Full Python CLI/SDK/MCP/proxy pathpip install -U entroly
Claude Code subscription setupclaude mcp add entroly -- entroly
MCP from npm with no Python dependencynpx -y entroly-wasm serve
MCP from npm, delegating to installed Python Entrolynpx -y entroly-mcp serve
Global Node/WASM CLInpm 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.

  • PyPI: entroly
  • Repository: juyterman1000/entroly

Keywords

mcp

FAQs

Package last updated on 03 Aug 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts