entroly-mcp 1.0.16 → 1.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -2
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
# entroly-mcp
|
|
2
2
|
|
|
3
|
-
An
|
|
4
|
-
|
|
3
|
+
An NPX bridge for Entroly, an auditable context control plane for AI agents.
|
|
4
|
+
Entroly gives AI workflows a Context Receipt: what was used, what was omitted,
|
|
5
|
+
why, and what risks remain.
|
|
5
6
|
|
|
6
7
|
## Installation & Usage
|
|
7
8
|
|
|
@@ -52,12 +53,27 @@ pipx install entroly
|
|
|
52
53
|
|
|
53
54
|
### Features
|
|
54
55
|
|
|
56
|
+
- **Context Receipts**: Machine-readable JSON plus Markdown audit reports for selected and omitted context.
|
|
57
|
+
- **MCP Control Plane**: Local MCP tools for context selection, receipt rendering, omission explanations, checkpoints, and feedback.
|
|
55
58
|
- **Knapsack Token Optimization**: Fits the absolute maximum value into your token budget.
|
|
56
59
|
- **Shannon Entropy Scoring**: Prioritizes complex, high-entropy logic over repetitive boilerplate.
|
|
57
60
|
- **SimHash Deduplication**: Never wastes tokens on duplicate file contents.
|
|
58
61
|
- **Predictive Pre-fetch**: Learns your co-access patterns to predict what file you'll need next.
|
|
59
62
|
- **Feedback Loop**: Agentic feedback (`record_success` / `record_failure`) continuously tunes the RL weights.
|
|
60
63
|
|
|
64
|
+
## Context Receipt CLI
|
|
65
|
+
|
|
66
|
+
The NPX package forwards commands to the installed Python engine:
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
npx -y entroly-mcp ingest ./docs
|
|
70
|
+
npx -y entroly-mcp select --query "Does this contract have a change-of-control clause?" --budget 8000
|
|
71
|
+
npx -y entroly-mcp receipt .entroly/receipts/latest.json
|
|
72
|
+
npx -y entroly-mcp explain --why-omitted chk_abc123 --receipt .entroly/receipts/latest.json
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
These commands run locally and do not call an LLM.
|
|
76
|
+
|
|
61
77
|
## Links
|
|
62
78
|
|
|
63
79
|
- **PyPI**: [entroly](https://pypi.org/project/entroly/)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "entroly-mcp",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.18",
|
|
4
|
+
"description": "NPX bridge for Entroly, an auditable context control plane with MCP tools, Context Receipts, and local optimization for AI agents.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"entroly-mcp": "./bin/entroly-mcp.js"
|
|
@@ -22,6 +22,8 @@
|
|
|
22
22
|
},
|
|
23
23
|
"keywords": [
|
|
24
24
|
"mcp",
|
|
25
|
+
"context-receipts",
|
|
26
|
+
"context-control-plane",
|
|
25
27
|
"context-optimization",
|
|
26
28
|
"entroly",
|
|
27
29
|
"ai",
|