@prmichaelsen/remember-mcp 2.6.4 → 2.6.5

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,25 @@ All notable changes to this project will be documented in this file.
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
+ ## [2.6.5] - 2026-02-16
9
+
10
+ ### 🐛 Fixed
11
+
12
+ - **CRITICAL: Fixed Schema Property Mismatch in fetchMemoryWithAllProperties**
13
+ - `ALL_MEMORY_PROPERTIES` constant had `trust_level` but schema has `trust`
14
+ - Caused publish operations to fail with schema validation error
15
+ - Fixed property name to match actual schema: `trust_level` → `trust`
16
+ - Added missing `confidence` property to the list
17
+ - Publish functionality now works correctly
18
+
19
+ ### 🎯 Impact
20
+
21
+ - **Fixes**: Publishing memories to shared spaces now works
22
+ - **Unblocks**: Core publish/space functionality restored
23
+ - **Note**: This was introduced in v2.6.3 when creating the utility function
24
+
25
+ ---
26
+
8
27
  ## [2.6.4] - 2026-02-16
9
28
 
10
29
  ### 🔧 Improved
@@ -574,7 +574,9 @@ var ALL_MEMORY_PROPERTIES = [
574
574
  "tags",
575
575
  "weight",
576
576
  "base_weight",
577
- "trust_level",
577
+ "trust",
578
+ // ✅ Fixed: was 'trust_level', schema has 'trust'
579
+ "confidence",
578
580
  "context",
579
581
  "location",
580
582
  "relationships",
package/dist/server.js CHANGED
@@ -620,7 +620,9 @@ var ALL_MEMORY_PROPERTIES = [
620
620
  "tags",
621
621
  "weight",
622
622
  "base_weight",
623
- "trust_level",
623
+ "trust",
624
+ // ✅ Fixed: was 'trust_level', schema has 'trust'
625
+ "confidence",
624
626
  "context",
625
627
  "location",
626
628
  "relationships",
@@ -37,7 +37,7 @@ export declare function getAuditCollectionName(userId: string): string;
37
37
  * List of all memory properties to fetch
38
38
  * Centralized to ensure consistency across all tools
39
39
  */
40
- export declare const ALL_MEMORY_PROPERTIES: readonly ["user_id", "doc_type", "type", "title", "content", "tags", "weight", "base_weight", "trust_level", "context", "location", "relationships", "created_at", "updated_at", "version", "attribution", "source_url", "author", "parent_id", "thread_root_id", "moderation_flags"];
40
+ export declare const ALL_MEMORY_PROPERTIES: readonly ["user_id", "doc_type", "type", "title", "content", "tags", "weight", "base_weight", "trust", "confidence", "context", "location", "relationships", "created_at", "updated_at", "version", "attribution", "source_url", "author", "parent_id", "thread_root_id", "moderation_flags"];
41
41
  /**
42
42
  * Fetch a memory object by ID with all properties
43
43
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prmichaelsen/remember-mcp",
3
- "version": "2.6.4",
3
+ "version": "2.6.5",
4
4
  "description": "Multi-tenant memory system MCP server with vector search and relationships",
5
5
  "main": "dist/server.js",
6
6
  "type": "module",
@@ -152,7 +152,8 @@ export const ALL_MEMORY_PROPERTIES = [
152
152
  'tags',
153
153
  'weight',
154
154
  'base_weight',
155
- 'trust_level',
155
+ 'trust', // ✅ Fixed: was 'trust_level', schema has 'trust'
156
+ 'confidence',
156
157
  'context',
157
158
  'location',
158
159
  'relationships',