entroly-mcp 1.0.41 → 1.0.43
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 +46 -11
- package/package.json +7 -3
package/README.md
CHANGED
|
@@ -1,16 +1,35 @@
|
|
|
1
1
|
# entroly-mcp
|
|
2
2
|
|
|
3
|
-
An NPX bridge for Entroly,
|
|
4
|
-
Entroly gives AI workflows
|
|
5
|
-
|
|
3
|
+
An NPX MCP bridge for Entroly, the local context OS for AI coding agents.
|
|
4
|
+
Entroly gives AI workflows selected context, exact recovery handles, Context
|
|
5
|
+
Receipts, local verification, and token optimization.
|
|
6
6
|
|
|
7
|
-
##
|
|
7
|
+
## Which package should I use?
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
| You want | Use |
|
|
10
|
+
|---|---|
|
|
11
|
+
| Full Python CLI/SDK/MCP/proxy path | `pip install -U entroly` |
|
|
12
|
+
| Claude Code subscription setup | `claude mcp add entroly -- entroly` |
|
|
13
|
+
| MCP from npm with no Python dependency | `npx -y entroly-wasm serve` |
|
|
14
|
+
| MCP from npm, delegating to installed Python Entroly | `npx -y entroly-mcp serve` |
|
|
15
|
+
| Global Node/WASM CLI | `npm install -g entroly` |
|
|
10
16
|
|
|
11
|
-
|
|
17
|
+
The simplest first run for most users is still:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
pip install -U entroly
|
|
21
|
+
entroly verify-claims
|
|
22
|
+
entroly simulate
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Those commands run locally and do not call an LLM.
|
|
26
|
+
|
|
27
|
+
## MCP usage
|
|
28
|
+
|
|
29
|
+
Use one of these MCP configurations.
|
|
30
|
+
|
|
31
|
+
### Option A: Node/WASM only, no Python
|
|
12
32
|
|
|
13
|
-
### Method 1: entroly-wasm (Recommended — zero dependencies)
|
|
14
33
|
```json
|
|
15
34
|
{
|
|
16
35
|
"mcpServers": {
|
|
@@ -25,7 +44,11 @@ You can use it directly in any MCP-compatible client like Cursor or Claude Deskt
|
|
|
25
44
|
}
|
|
26
45
|
```
|
|
27
46
|
|
|
28
|
-
###
|
|
47
|
+
### Option B: NPX bridge to Python Entroly
|
|
48
|
+
|
|
49
|
+
Use this when you already installed the Python package and want the npm bridge
|
|
50
|
+
to delegate to it.
|
|
51
|
+
|
|
29
52
|
```json
|
|
30
53
|
{
|
|
31
54
|
"mcpServers": {
|
|
@@ -44,13 +67,25 @@ You can use it directly in any MCP-compatible client like Cursor or Claude Deskt
|
|
|
44
67
|
}
|
|
45
68
|
```
|
|
46
69
|
|
|
47
|
-
*Note: You must have the core Python engine installed on your system:*
|
|
48
70
|
```bash
|
|
49
|
-
pip install entroly
|
|
50
|
-
# or
|
|
71
|
+
pip install -U entroly
|
|
72
|
+
# or:
|
|
51
73
|
pipx install entroly
|
|
52
74
|
```
|
|
53
75
|
|
|
76
|
+
### Claude Code subscription users
|
|
77
|
+
|
|
78
|
+
For Claude Code, the cleanest path is usually:
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
pip install -U entroly
|
|
82
|
+
claude mcp add entroly -- entroly
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
Claude Code stays your client. Entroly adds local MCP tools; you do not need to
|
|
86
|
+
run the proxy unless you control a provider API key and explicitly want proxy
|
|
87
|
+
mode.
|
|
88
|
+
|
|
54
89
|
### Features
|
|
55
90
|
|
|
56
91
|
- **Context Receipts**: Machine-readable JSON plus Markdown audit reports for selected and omitted context.
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "entroly-mcp",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"
|
|
3
|
+
"version": "1.0.43",
|
|
4
|
+
"mcpName": "io.github.juyterman1000/entroly",
|
|
5
|
+
"description": "NPX MCP bridge for Entroly, the local context OS with receipts, recovery, verification, and token optimization for AI coding agents.",
|
|
5
6
|
"main": "index.js",
|
|
6
7
|
"bin": {
|
|
7
8
|
"entroly-mcp": "./bin/entroly-mcp.js"
|
|
@@ -24,10 +25,13 @@
|
|
|
24
25
|
"mcp",
|
|
25
26
|
"context-receipts",
|
|
26
27
|
"context-control-plane",
|
|
28
|
+
"local-context-os",
|
|
27
29
|
"context-optimization",
|
|
28
30
|
"entroly",
|
|
29
31
|
"ai",
|
|
30
|
-
"agents"
|
|
32
|
+
"agents",
|
|
33
|
+
"claude-code",
|
|
34
|
+
"cursor"
|
|
31
35
|
],
|
|
32
36
|
"author": "entroly",
|
|
33
37
|
"license": "Apache-2.0"
|