local-memory-mcp 1.0.9 → 1.1.0-b
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/CHANGELOG.md +16 -0
- 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/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,22 @@ All notable changes to the @local-memory/server npm package will be documented i
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.1.0b] - 2025-09-26
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **Critical Windows YAML Parsing Issue**: Resolved "daemon did not become ready within 45s" timeout errors on Windows
|
|
12
|
+
- **Root Cause**: Windows file paths with backslashes were causing YAML parsing failures during configuration generation
|
|
13
|
+
- **Solution**: Added filepath.ToSlash() normalization in configuration generation paths
|
|
14
|
+
- **Impact**: Windows users can now successfully start the local-memory daemon without timeout errors
|
|
15
|
+
- **Testing**: Comprehensive native Windows testing and cross-platform validation completed
|
|
16
|
+
- **Security**: No new vulnerabilities introduced, maintains all existing security controls
|
|
17
|
+
|
|
18
|
+
### Technical Details
|
|
19
|
+
- Fixed configuration generation in config.go:902 and wizard.go:624
|
|
20
|
+
- Windows path separators (\\) now converted to forward slashes (/) before YAML generation
|
|
21
|
+
- Cross-platform compatibility maintained - forward slashes work on all operating systems
|
|
22
|
+
- Specific fix for Discord-reported issue with path `C:\Users\hyminix\.local-memory\unified-memories.db`
|
|
23
|
+
|
|
8
24
|
## [1.0.0] - 2025-08-26
|
|
9
25
|
|
|
10
26
|
### Added
|
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;
|