smart-context-mcp 1.8.0 → 1.8.1
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 +1 -1
- package/package.json +3 -1
- package/server.json +21 -0
package/README.md
CHANGED
|
@@ -56,7 +56,7 @@ Restart your AI client. Done.
|
|
|
56
56
|
# Check installed version
|
|
57
57
|
npm list -g smart-context-mcp
|
|
58
58
|
|
|
59
|
-
# Should show: smart-context-mcp@1.
|
|
59
|
+
# Should show: smart-context-mcp@1.8.1 (or later)
|
|
60
60
|
|
|
61
61
|
# Update to latest version
|
|
62
62
|
npm update -g smart-context-mcp
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "smart-context-mcp",
|
|
3
|
-
"
|
|
3
|
+
"mcpName": "io.github.Arrayo/smart-context-mcp",
|
|
4
|
+
"version": "1.8.1",
|
|
4
5
|
"description": "MCP server that reduces agent token usage by 90% with intelligent context compression, task checkpoint persistence, and workflow-aware agent guidance.",
|
|
5
6
|
"author": "Francisco Caballero Portero <fcp1978@hotmail.com>",
|
|
6
7
|
"type": "module",
|
|
@@ -27,6 +28,7 @@
|
|
|
27
28
|
},
|
|
28
29
|
"files": [
|
|
29
30
|
"README.md",
|
|
31
|
+
"server.json",
|
|
30
32
|
"src/",
|
|
31
33
|
"scripts/claude-hook.js",
|
|
32
34
|
"scripts/check-repo-safety.js",
|
package/server.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.Arrayo/smart-context-mcp",
|
|
4
|
+
"description": "Reduces AI agent token usage by 90% via context compression and task checkpoint persistence.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/Arrayo/smart-context-mcp",
|
|
7
|
+
"source": "github"
|
|
8
|
+
},
|
|
9
|
+
"version": "1.8.1",
|
|
10
|
+
"packages": [
|
|
11
|
+
{
|
|
12
|
+
"registryType": "npm",
|
|
13
|
+
"identifier": "smart-context-mcp",
|
|
14
|
+
"version": "1.8.1",
|
|
15
|
+
"transport": {
|
|
16
|
+
"type": "stdio"
|
|
17
|
+
},
|
|
18
|
+
"installationInstructions": "npm install -g smart-context-mcp && npx smart-context-init --target . --clients cursor"
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
}
|