local-memory-mcp 1.0.9-a → 1.1.0

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,10 +1,10 @@
1
1
  # Local Memory MCP Server
2
2
 
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.
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.9)
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "local-memory-mcp",
3
- "version": "1.0.9a",
3
+ "version": "1.1.0",
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/download/v1.0.9a';
19
+ const GITHUB_RELEASES_BASE = 'https://github.com/danieleugenewilliams/local-memory-releases/releases/latest/download';
20
20
 
21
21
  // Get expected version from package.json
22
22
  const packageJsonPath = path.join(__dirname, '..', 'package.json');