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 CHANGED
@@ -1,23 +1,30 @@
1
1
  # Local Memory MCP Server
2
2
 
3
- **Enterprise-Ready AI Memory System** - NPM package for seamless installation and MCP integration.
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
- ## 🎯 Key Benefits
7
+ ## Key Benefits (v1.0.9)
8
8
 
9
- - **⚡ One-Command Install**: `npm install -g local-memory-mcp`
10
- - **🔧 Auto-Configuration**: MCP integration setup included
11
- - **📈 Enterprise Scale**: Handles millions of memories efficiently
12
- - **🔒 Security First**: Local processing, enterprise compliance ready
13
- - **💼 Commercial License**: Includes terms and support options
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
- ## 💼 Licensing & Commercial Use
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
- - **Personal Use**: Free for individuals and open source projects
19
- - **Commercial License**: Required for businesses and proprietary software
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**: GitHub Issues for open source users
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
- ## 🔧 Troubleshooting
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
- ## 📄 License & Terms
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "local-memory-mcp",
3
- "version": "1.0.7",
3
+ "version": "1.0.9a",
4
4
  "description": "Local Memory MCP Server - AI-powered persistent memory system for Claude Desktop and other MCP-compatible tools",
5
5
  "keywords": [
6
6
  "mcp",
@@ -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/latest/download';
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');