local-memory-mcp 1.0.9 → 1.1.0-a
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 +3 -2
- package/bin/local-memory-macos-arm +0 -0
- package/package.json +1 -1
- package/scripts/install.js +2 -2
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# Local Memory MCP Server
|
|
2
2
|
|
|
3
|
-
**Version 1.0
|
|
3
|
+
**Version 1.1.0** - Enterprise-ready AI memory system with Anthropic-aligned tool consolidation, intelligent optimization, and Phase 4 agent experience enhancements.
|
|
4
4
|
|
|
5
5
|
Local Memory transforms AI interactions with persistent, searchable memory that grows smarter over time. This package provides everything needed for production deployments with Claude Desktop, Cursor, and other MCP-compatible tools.
|
|
6
6
|
|
|
7
|
-
## Key Benefits (v1.0
|
|
7
|
+
## Key Benefits (v1.1.0)
|
|
8
8
|
|
|
9
9
|
- **Anthropic-Aligned Design**: 9.2/10 rating for agent tool excellence with 50% tool reduction
|
|
10
10
|
- **One-Command Install**: `npm install -g local-memory-mcp`
|
|
@@ -13,6 +13,7 @@ Local Memory transforms AI interactions with persistent, searchable memory that
|
|
|
13
13
|
- **Enterprise Scale**: Handles millions of memories with cross-session knowledge sharing
|
|
14
14
|
- **Security First**: Local processing, enterprise compliance ready
|
|
15
15
|
- **Commercial License**: Includes terms and support options
|
|
16
|
+
- **Phase 4 Agent Experience**: Enhanced parameter validation, workflow documentation, and intelligent error recovery
|
|
16
17
|
|
|
17
18
|
## Features
|
|
18
19
|
|
|
Binary file
|
package/package.json
CHANGED
package/scripts/install.js
CHANGED
|
@@ -227,8 +227,8 @@ function getBinaryVersion(binaryPath) {
|
|
|
227
227
|
stdio: ['pipe', 'pipe', 'ignore'] // Suppress stderr
|
|
228
228
|
});
|
|
229
229
|
|
|
230
|
-
// Parse version from output like "local-memory version 1.0.5"
|
|
231
|
-
const match = output.match(/version\s+(\d+\.\d+\.\d+)/);
|
|
230
|
+
// Parse version from output like "local-memory version 1.0.5" or "local-memory version 1.1.0a"
|
|
231
|
+
const match = output.match(/version\s+(\d+\.\d+\.\d+[a-zA-Z]*)/);
|
|
232
232
|
return match ? match[1] : null;
|
|
233
233
|
} catch (error) {
|
|
234
234
|
return null;
|