local-memory-mcp 1.3.1 → 1.3.3
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 +59 -0
- package/README.md +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,62 @@
|
|
|
1
|
+
# Local Memory v1.3.3
|
|
2
|
+
|
|
3
|
+
**Release Date**: 2026-02-05
|
|
4
|
+
**Compatibility**: Fully backwards compatible
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## Summary
|
|
9
|
+
|
|
10
|
+
Critical fixes for World Memory fields not returning in search/list API responses, plus domain persistence fixes.
|
|
11
|
+
|
|
12
|
+
## In Development
|
|
13
|
+
|
|
14
|
+
- **Desktop Dashboard**: Native Electron app in active development, will be bundled with core binary in v1.4.0
|
|
15
|
+
|
|
16
|
+
## Fixed
|
|
17
|
+
|
|
18
|
+
- **Search/list endpoints missing World Memory fields**: `weight`, `level`, `confidence` now returned correctly
|
|
19
|
+
- **Domain not persisting on memory updates**: Fixed UPDATE query to include domain column
|
|
20
|
+
- **Domain validation**: Added domain sanitization in memory validator
|
|
21
|
+
- **Graph API response structure**: Fixed relationship/edge mapping in memory graph endpoint
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
*See CHANGELOG_v1.3.3.md in the repository for full details.*
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
# Local Memory v1.3.2
|
|
30
|
+
|
|
31
|
+
**Release Date**: 2026-02-02
|
|
32
|
+
**Compatibility**: Fully backwards compatible
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## Summary
|
|
37
|
+
|
|
38
|
+
Critical fixes for MCP stability and Windows compatibility. Addresses timeouts with large memory collections (1000+ items) and daemon status reliability issues on Windows.
|
|
39
|
+
|
|
40
|
+
## Fixed
|
|
41
|
+
|
|
42
|
+
- **MCP timeout with large collections**: Added 512KB buffered stdout to prevent blocking on large responses (e.g., 1700+ PDFs)
|
|
43
|
+
- **MCP tool execution timeout**: Added 90-second context timeout to prevent infinite hangs
|
|
44
|
+
- **Qdrant timeout too short**: Increased default from 10s to 30s for large vector searches
|
|
45
|
+
- **Session listing discrepancy**: Status now reports `unassigned_memories` count for memories with NULL session_id
|
|
46
|
+
- **Windows daemon status**: Fixed unreliable process checking using `tasklist` instead of `Signal(0)`
|
|
47
|
+
|
|
48
|
+
## Changed
|
|
49
|
+
|
|
50
|
+
- Qdrant default timeout: 10s → 30s
|
|
51
|
+
- MCP stdout: Direct → 512KB buffered
|
|
52
|
+
- MCP tool calls: No timeout → 90s context timeout
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
56
|
+
*See CHANGELOG_v1.3.2.md in the repository for full details.*
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
1
60
|
# Local Memory v1.3.1
|
|
2
61
|
|
|
3
62
|
**Release Date**: 2026-01-23
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Local Memory (localmemory.co)
|
|
2
2
|
|
|
3
|
-
**Version 1.3.
|
|
3
|
+
**Version 1.3.3** - AI-powered persistent memory system for developers working with Claude Code, Claude Desktop, Gemini, Codex, Cursor, and other coding agents.
|
|
4
4
|
|
|
5
5
|
Transform your AI interactions with intelligent memory that grows smarter over time. Build persistent knowledge bases, track learning progression, and maintain context across conversations. Local Memory provides MCP, REST API, and Command-line interfaces for you and your coding agents to store, retrieve, discover, and analyze memories to give your agent the right context for it's work and tasks.
|
|
6
6
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "local-memory-mcp",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.3",
|
|
4
4
|
"description": "Local Memory MCP Server - AI-powered persistent memory system for Claude Code, Claude Desktop, Gemini, Codex, OpenCode and other MCP-compatible tools",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|