local-memory-mcp 1.1.4 → 1.1.6

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 CHANGED
@@ -5,6 +5,35 @@ 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.6] - 2025-11-12
9
+
10
+ ### Fixed
11
+ - **MCP Integration with Claude Desktop**: Fixed MCP server configuration for Claude Desktop by adding missing full path, --mcp argument, and transport field to ensure proper JSON-RPC communication
12
+ - **CLI --tags Flag**: Fixed CLI --tags flag functionality by switching to unified search API for tag filtering and allowing tag-only searches without requiring a query parameter
13
+ - **MCP Server Issues**: Resolved critical MCP server issues including tag filtering, domain filtering, custom field selection, AI backend configuration, relationship creation confirmation, summarization tool execution, and metadata date issues
14
+
15
+ ### Added
16
+ - **CLI Domain Support**: Added CLI support for domain filtering in search operations and domain management commands to enable domain-based organization and filtering of memories
17
+ - **CLI Custom Fields Support**: Implemented CLI support for custom field selection and response formatting options (--fields, --response-format, --max-content-length) to match MCP server capabilities
18
+ - **Comprehensive Documentation**: Updated the Local Memory documentation to describe the tools, parameter options, response formats, and usage patterns for local-memory across MCP, REST API, and CLI
19
+
20
+ ### Enhanced
21
+ - **AI Analysis Reliability**: Improved AI analysis reliability, search result quality, knowledge gap detection noise, and feature enhancement opportunities for bulk operations, memory versioning, and smart deduplication
22
+ - **Search Capabilities**: Enhanced search capabilities with improved filtering and result quality
23
+
24
+ ## [1.1.5] - 2025-11-10
25
+
26
+ ### Fixed
27
+ - **Windows npm Installation**: Resolved issue where Windows users had to manually rename `local-memory-windows.exe` to `local-memory.exe` after installation
28
+ - **Binary Linking**: Install script now automatically creates generic binary for npm bin linking on all platforms
29
+ - **Cross-Platform Compatibility**: Enhanced install script handles both fresh downloads and existing version scenarios
30
+
31
+ ### Technical
32
+ - Modified `scripts/install.js` to create platform-appropriate generic binary after download
33
+ - Windows: Creates `local-memory.exe` from `local-memory-windows.exe`
34
+ - macOS/Linux: Creates `local-memory` from platform-specific binary
35
+ - Maintains executable permissions and version validation
36
+
8
37
  ## [1.1.3] - 2025-11-07
9
38
  ✅ **Critical First-Run License/Terms Integration Fixed**
10
39
  ✅ **Critical License Security Vulnerability Resolved**
package/README.md CHANGED
@@ -1,10 +1,10 @@
1
1
  # Local Memory MCP Server
2
2
 
3
- **Version 1.1.4** - Critical NPM package binary fix. All platform binaries now include working setup command + all v1.1.3 features (license/terms integration, security fixes).
3
+ **Version 1.1.6** - Comprehensive CLI enhancements with tag filtering, domain support, custom fields, and MCP integration fixes. Resolves critical MCP server configuration issues and adds complete CLI search capabilities.
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 Features and Enhancements (v1.1.1a)
7
+ ## Key Features
8
8
 
9
9
  - **One-Command Install**: `npm install -g local-memory-mcp`
10
10
  - **Token Optimization**: 95% response size reduction prevents context overflow
@@ -14,6 +14,17 @@ Local Memory transforms AI interactions with persistent, searchable memory that
14
14
  - **Enterprise Scale**: Handles millions of memories with cross-session knowledge sharing
15
15
  - **Commercial License**: Includes terms and support options
16
16
 
17
+ ## Recent Updates (v1.1.6)
18
+
19
+ **Comprehensive CLI and MCP Enhancements**
20
+
21
+ - **CLI Tag Filtering**: Fixed `--tags` flag functionality with unified search API support and tag-only searches
22
+ - **Domain Support**: Added CLI domain filtering and management commands for organized memory access
23
+ - **Custom Fields**: Implemented `--fields` and `--response-format` options for optimized output and token usage
24
+ - **MCP Integration**: Resolved Claude Desktop configuration issues with proper JSON-RPC transport setup
25
+ - **Search Capabilities**: Enhanced search with multiple operation types (semantic, tags, date_range, hybrid)
26
+ - **Documentation**: Updated comprehensive tool documentation for MCP, REST API, and CLI interfaces
27
+
17
28
  ## Recent Updates (v1.1.4)
18
29
 
19
30
  **Critical NPM Package Binary Fix (v1.1.4)**
package/bin/local-memory CHANGED
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "local-memory-mcp",
3
- "version": "1.1.4",
3
+ "version": "1.1.6",
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",
@@ -305,6 +305,18 @@ async function install() {
305
305
  if (isVersionMatch(binaryPath)) {
306
306
  log('✅ Correct version already installed, skipping download');
307
307
  setExecutablePermissions(binaryPath);
308
+
309
+ // Ensure generic binary exists for npm bin linking
310
+ const genericBinaryName = os.platform() === 'win32' ? 'local-memory.exe' : 'local-memory';
311
+ const genericBinaryPath = path.join(binDir, genericBinaryName);
312
+
313
+ if (!fs.existsSync(genericBinaryPath)) {
314
+ log('🔗 Creating generic binary for npm linking...');
315
+ fs.copyFileSync(binaryPath, genericBinaryPath);
316
+ setExecutablePermissions(genericBinaryPath);
317
+ log(`✅ Created ${genericBinaryName} -> ${binaryName}`);
318
+ }
319
+
308
320
  const stats = fs.statSync(binaryPath);
309
321
  log(`✅ Binary verified (${(stats.size / 1024 / 1024).toFixed(1)}MB)`);
310
322
  log('✅ Local Memory Server installation complete!');
@@ -325,7 +337,22 @@ async function install() {
325
337
  // Set permissions
326
338
  log('🔐 Setting executable permissions...');
327
339
  setExecutablePermissions(binaryPath);
328
-
340
+
341
+ // Create generic binary for npm bin linking
342
+ log('🔗 Creating generic binary for npm linking...');
343
+ const genericBinaryName = os.platform() === 'win32' ? 'local-memory.exe' : 'local-memory';
344
+ const genericBinaryPath = path.join(binDir, genericBinaryName);
345
+
346
+ // Remove existing generic binary if it exists
347
+ if (fs.existsSync(genericBinaryPath)) {
348
+ fs.unlinkSync(genericBinaryPath);
349
+ }
350
+
351
+ // Copy platform-specific binary to generic name
352
+ fs.copyFileSync(binaryPath, genericBinaryPath);
353
+ setExecutablePermissions(genericBinaryPath);
354
+ log(`✅ Created ${genericBinaryName} -> ${binaryName}`);
355
+
329
356
  // Verify downloaded version matches expected
330
357
  const downloadedVersion = getBinaryVersion(binaryPath);
331
358
  if (downloadedVersion !== EXPECTED_VERSION) {