local-memory-mcp 1.0.7 → 1.0.9-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 +21 -15
- package/package.json +1 -1
- package/scripts/install.js +1 -1
package/README.md
CHANGED
|
@@ -1,23 +1,30 @@
|
|
|
1
1
|
# Local Memory MCP Server
|
|
2
2
|
|
|
3
|
-
**Enterprise-
|
|
3
|
+
**Version 1.0.9a** - Enterprise-ready AI memory system with Anthropic-aligned tool consolidation and intelligent optimization. **HOTFIX**: Fixed critical SQLite migration bug causing infinite loop on fresh installations.
|
|
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
|
-
##
|
|
7
|
+
## Key Benefits (v1.0.9)
|
|
8
8
|
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
-
|
|
9
|
+
- **Anthropic-Aligned Design**: 9.2/10 rating for agent tool excellence with 50% tool reduction
|
|
10
|
+
- **One-Command Install**: `npm install -g local-memory-mcp`
|
|
11
|
+
- **Response Optimization**: 60-95% token efficiency with intelligent format controls
|
|
12
|
+
- **Human-Readable IDs**: Natural slugs like "golang-architecture-2024" replace UUIDs
|
|
13
|
+
- **Enterprise Scale**: Handles millions of memories with cross-session knowledge sharing
|
|
14
|
+
- **Security First**: Local processing, enterprise compliance ready
|
|
15
|
+
- **Commercial License**: Includes terms and support options
|
|
14
16
|
|
|
15
|
-
##
|
|
17
|
+
## Features
|
|
18
|
+
|
|
19
|
+
## Configuration
|
|
20
|
+
|
|
21
|
+
**Version 1.x.x** features comprehensive configuration with environment variable overrides.
|
|
22
|
+
|
|
23
|
+
## Licensing & Commercial Use
|
|
16
24
|
|
|
17
25
|
### License Options
|
|
18
|
-
- **
|
|
19
|
-
- **
|
|
20
|
-
- **Enterprise License**: Includes priority support and SLA
|
|
26
|
+
- **Commercial License**: Required for individuals, businesses, and proprietary software
|
|
27
|
+
- **Enterprise License**: Contact for detailed pricing and support options
|
|
21
28
|
|
|
22
29
|
### Activation
|
|
23
30
|
```bash
|
|
@@ -32,11 +39,10 @@ open https://localmemory.co/terms
|
|
|
32
39
|
```
|
|
33
40
|
|
|
34
41
|
### Support Channels
|
|
35
|
-
- **Community**:
|
|
42
|
+
- **Discord Community**: Updates, issues, and feature requests
|
|
36
43
|
- **Commercial**: Priority support included with license
|
|
37
|
-
- **Enterprise**: Dedicated support team and SLA
|
|
38
44
|
|
|
39
|
-
##
|
|
45
|
+
## Troubleshooting
|
|
40
46
|
|
|
41
47
|
### Common Issues
|
|
42
48
|
```bash
|
|
@@ -56,7 +62,7 @@ npm run update
|
|
|
56
62
|
- **Windows**: Run PowerShell as Administrator if needed
|
|
57
63
|
- **Linux**: Ensure executable permissions on binary
|
|
58
64
|
|
|
59
|
-
##
|
|
65
|
+
## License & Terms
|
|
60
66
|
|
|
61
67
|
This software is subject to the terms at [localmemory.co/terms](https://localmemory.co/terms).
|
|
62
68
|
|
package/package.json
CHANGED
package/scripts/install.js
CHANGED
|
@@ -16,7 +16,7 @@ const os = require('os');
|
|
|
16
16
|
const { execSync } = require('child_process');
|
|
17
17
|
|
|
18
18
|
// Configuration
|
|
19
|
-
const GITHUB_RELEASES_BASE = 'https://github.com/danieleugenewilliams/local-memory-releases/releases/
|
|
19
|
+
const GITHUB_RELEASES_BASE = 'https://github.com/danieleugenewilliams/local-memory-releases/releases/download/v1.0.9a';
|
|
20
20
|
|
|
21
21
|
// Get expected version from package.json
|
|
22
22
|
const packageJsonPath = path.join(__dirname, '..', 'package.json');
|