entroly-mcp 0.19.11 → 0.19.12
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 +2 -2
- package/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# entroly-mcp
|
|
2
2
|
|
|
3
3
|
An MCP (Model Context Protocol) server for information-theoretic context optimization.
|
|
4
4
|
Use it to optimize Claude/Cursor's context window by selecting only the most relevant, high-entropy, and critical code fragments based on a Knapsack constraint.
|
|
@@ -32,7 +32,7 @@ You can use it directly in any MCP-compatible client like Cursor or Claude Deskt
|
|
|
32
32
|
"command": "npx",
|
|
33
33
|
"args": [
|
|
34
34
|
"-y",
|
|
35
|
-
"
|
|
35
|
+
"entroly-mcp",
|
|
36
36
|
"serve"
|
|
37
37
|
],
|
|
38
38
|
"env": {
|
package/index.js
CHANGED
|
@@ -14,7 +14,7 @@ if (checkStatus.status !== 0) {
|
|
|
14
14
|
console.error("=====================================================================");
|
|
15
15
|
console.error(" Error: 'entroly' Python package is not installed.");
|
|
16
16
|
console.error("");
|
|
17
|
-
console.error(" The
|
|
17
|
+
console.error(" The entroly-mcp package is a bridge. To use it,");
|
|
18
18
|
console.error(" you must have the Python engine installed on your system.");
|
|
19
19
|
console.error("");
|
|
20
20
|
console.error(" Please run:");
|