@prmichaelsen/remember-mcp 3.17.5 → 3.18.1
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/.github/workflows/bump-remember-core.yml +8 -1
- package/.github/workflows/publish.yml +10 -2
- package/CHANGELOG.md +13 -0
- package/dist/server-factory.js +189212 -242
- package/dist/server.js +189211 -241
- package/dist/tools/create-memory.d.ts +11 -0
- package/dist/tools/update-memory.d.ts +11 -0
- package/package.json +3 -2
- package/src/tools/create-memory.ts +11 -0
- package/src/tools/update-memory.ts +11 -0
|
@@ -77,6 +77,17 @@ export declare const createMemoryTool: {
|
|
|
77
77
|
description: string;
|
|
78
78
|
default: never[];
|
|
79
79
|
};
|
|
80
|
+
follow_up_date: {
|
|
81
|
+
type: string;
|
|
82
|
+
description: string;
|
|
83
|
+
};
|
|
84
|
+
follow_up_targets: {
|
|
85
|
+
type: string;
|
|
86
|
+
items: {
|
|
87
|
+
type: string;
|
|
88
|
+
};
|
|
89
|
+
description: string;
|
|
90
|
+
};
|
|
80
91
|
feel_emotional_significance: {
|
|
81
92
|
type: string;
|
|
82
93
|
minimum: number;
|
|
@@ -73,6 +73,17 @@ export declare const updateMemoryTool: {
|
|
|
73
73
|
};
|
|
74
74
|
description: string;
|
|
75
75
|
};
|
|
76
|
+
follow_up_date: {
|
|
77
|
+
type: string[];
|
|
78
|
+
description: string;
|
|
79
|
+
};
|
|
80
|
+
follow_up_targets: {
|
|
81
|
+
type: string;
|
|
82
|
+
items: {
|
|
83
|
+
type: string;
|
|
84
|
+
};
|
|
85
|
+
description: string;
|
|
86
|
+
};
|
|
76
87
|
feel_emotional_significance: {
|
|
77
88
|
type: string;
|
|
78
89
|
minimum: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prmichaelsen/remember-mcp",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.18.1",
|
|
4
4
|
"description": "Multi-tenant memory system MCP server with vector search and relationships",
|
|
5
5
|
"main": "dist/server.js",
|
|
6
6
|
"type": "module",
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"build:watch": "node esbuild.watch.js",
|
|
28
28
|
"clean": "rm -rf dist",
|
|
29
29
|
"dev": "tsx watch src/server.ts",
|
|
30
|
+
"core:update": "npm i @prmichaelsen/remember-core@latest && git add package* && git commit -m 'bump: remember-core'",
|
|
30
31
|
"start": "node dist/server.js",
|
|
31
32
|
"test": "jest",
|
|
32
33
|
"test:watch": "jest --watch",
|
|
@@ -52,7 +53,7 @@
|
|
|
52
53
|
"@google-cloud/vision": "^5.3.4",
|
|
53
54
|
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
54
55
|
"@prmichaelsen/firebase-admin-sdk-v8": "^2.2.0",
|
|
55
|
-
"@prmichaelsen/remember-core": "^0.
|
|
56
|
+
"@prmichaelsen/remember-core": "^0.70.11",
|
|
56
57
|
"dotenv": "^16.4.5",
|
|
57
58
|
"uuid": "^13.0.0",
|
|
58
59
|
"weaviate-client": "^3.2.0"
|
|
@@ -95,6 +95,15 @@ export const createMemoryTool = {
|
|
|
95
95
|
description: 'Per-space moderation flags (format: "{space_id}:{flag_type}"). Usually empty.',
|
|
96
96
|
default: [],
|
|
97
97
|
},
|
|
98
|
+
follow_up_date: {
|
|
99
|
+
type: 'string',
|
|
100
|
+
description: 'ISO 8601 datetime for when a follow-up reminder should trigger (e.g. "2026-03-12T21:00:00Z")',
|
|
101
|
+
},
|
|
102
|
+
follow_up_targets: {
|
|
103
|
+
type: 'array',
|
|
104
|
+
items: { type: 'string' },
|
|
105
|
+
description: 'Target recipients for follow-up notifications (e.g. ["user:abc", "group:xyz"]). Empty = owner only.',
|
|
106
|
+
},
|
|
98
107
|
// Emotional dimensions — create-time hints, REM re-scores authoritatively
|
|
99
108
|
// Layer 1: Discrete Emotions
|
|
100
109
|
feel_emotional_significance: { type: 'number', minimum: 0, maximum: 1, description: 'Overall emotional weight (0-1). REM re-scores.' },
|
|
@@ -199,6 +208,8 @@ export async function handleCreateMemory(
|
|
|
199
208
|
parent_id: args.parent_id,
|
|
200
209
|
thread_root_id: args.thread_root_id,
|
|
201
210
|
moderation_flags: args.moderation_flags,
|
|
211
|
+
follow_up_date: args.follow_up_date,
|
|
212
|
+
follow_up_targets: args.follow_up_targets,
|
|
202
213
|
context_summary: context?.summary || 'Memory created via MCP',
|
|
203
214
|
context_conversation_id: context?.conversation_id,
|
|
204
215
|
...feelFields,
|
|
@@ -83,6 +83,15 @@ export const updateMemoryTool = {
|
|
|
83
83
|
items: { type: 'string' },
|
|
84
84
|
description: 'Update moderation flags',
|
|
85
85
|
},
|
|
86
|
+
follow_up_date: {
|
|
87
|
+
type: ['string', 'null'],
|
|
88
|
+
description: 'ISO 8601 datetime for follow-up reminder. Set to null to clear.',
|
|
89
|
+
},
|
|
90
|
+
follow_up_targets: {
|
|
91
|
+
type: 'array',
|
|
92
|
+
items: { type: 'string' },
|
|
93
|
+
description: 'Target recipients for follow-up (e.g. ["user:abc"]). Empty = owner only.',
|
|
94
|
+
},
|
|
86
95
|
// Emotional dimensions — manual corrections, REM re-scores authoritatively
|
|
87
96
|
// Layer 1: Discrete Emotions
|
|
88
97
|
feel_emotional_significance: { type: 'number', minimum: 0, maximum: 1, description: 'Overall emotional weight (0-1). REM re-scores.' },
|
|
@@ -187,6 +196,8 @@ export async function handleUpdateMemory(
|
|
|
187
196
|
parent_id: args.parent_id,
|
|
188
197
|
thread_root_id: args.thread_root_id,
|
|
189
198
|
moderation_flags: args.moderation_flags,
|
|
199
|
+
follow_up_date: args.follow_up_date,
|
|
200
|
+
follow_up_targets: args.follow_up_targets,
|
|
190
201
|
...feelFields,
|
|
191
202
|
} as any);
|
|
192
203
|
|