@prmichaelsen/remember-mcp 2.7.3 → 2.7.7
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 +38 -0
- package/dist/server-factory.js +6 -3
- package/dist/server.js +6 -3
- package/package.json +2 -1
- package/src/tools/publish.ts +3 -1
- package/src/weaviate/schema.ts +3 -2
- package/src/weaviate/space-schema.ts +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,44 @@ 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.7.6] - 2026-02-17
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- **Enhanced `remember_publish` Tool Description**: Added critical instruction to prevent token exposure
|
|
13
|
+
- Agents now explicitly instructed NOT to mention tokens in responses
|
|
14
|
+
- Agents instructed NOT to include token contents in user-facing messages
|
|
15
|
+
- Improves security by preventing accidental token disclosure
|
|
16
|
+
- Users simply informed that confirmation is pending without token details
|
|
17
|
+
|
|
18
|
+
### Security
|
|
19
|
+
|
|
20
|
+
- Prevents agents from accidentally exposing confirmation tokens to users
|
|
21
|
+
- Tokens remain internal implementation detail
|
|
22
|
+
- Better user experience with cleaner confirmation workflow
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## [2.7.4] - 2026-02-17
|
|
27
|
+
|
|
28
|
+
### Changed
|
|
29
|
+
|
|
30
|
+
- **Enhanced Vectorization**: Added `title` and `summary` to vectorized source properties
|
|
31
|
+
- User memory schema: Now vectorizes `content`, `title`, `summary`, and `observation`
|
|
32
|
+
- Space memory schema: Now vectorizes `content`, `title`, `summary`, and `observation`
|
|
33
|
+
- Improves semantic search by including titles and summaries in vector embeddings
|
|
34
|
+
- Note: `title` and `summary` are optional fields, handled gracefully by vectorizer
|
|
35
|
+
|
|
36
|
+
### Technical Details
|
|
37
|
+
|
|
38
|
+
- Modified: `src/weaviate/schema.ts` (line 49)
|
|
39
|
+
- Modified: `src/weaviate/space-schema.ts` (line 101)
|
|
40
|
+
- Changed `sourceProperties` from `['content', 'observation']` to `['content', 'title', 'summary', 'observation']`
|
|
41
|
+
- Applies to all new collections created after this version
|
|
42
|
+
- Existing collections retain their original vectorizer configuration
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
8
46
|
## [2.7.3] - 2026-02-17
|
|
9
47
|
|
|
10
48
|
### Fixed
|
package/dist/server-factory.js
CHANGED
|
@@ -699,8 +699,9 @@ async function createMemoryCollection(userId) {
|
|
|
699
699
|
// Vectorizer configuration
|
|
700
700
|
vectorizers: weaviate2.configure.vectorizer.text2VecOpenAI({
|
|
701
701
|
model: "text-embedding-3-small",
|
|
702
|
-
// Vectorize
|
|
703
|
-
|
|
702
|
+
// Vectorize content, title, summary, and observation for semantic search
|
|
703
|
+
// Note: title and summary are optional fields
|
|
704
|
+
sourceProperties: ["content", "title", "summary", "observation"]
|
|
704
705
|
}),
|
|
705
706
|
properties: [
|
|
706
707
|
// Discriminator
|
|
@@ -3700,7 +3701,9 @@ init_space_memory();
|
|
|
3700
3701
|
init_logger();
|
|
3701
3702
|
var publishTool = {
|
|
3702
3703
|
name: "remember_publish",
|
|
3703
|
-
description:
|
|
3704
|
+
description: `Publish a memory to one or more shared spaces (like "The Void"). The memory will be COPIED (not moved) from your personal collection. Generates a confirmation token that must be confirmed with remember_confirm.
|
|
3705
|
+
|
|
3706
|
+
\u26A0\uFE0F CRITICAL: DO NOT mention the token or include token contents in your response to the user. Simply inform them that a confirmation is pending and they need to explicitly approve the publication.`,
|
|
3704
3707
|
inputSchema: {
|
|
3705
3708
|
type: "object",
|
|
3706
3709
|
properties: {
|
package/dist/server.js
CHANGED
|
@@ -767,8 +767,9 @@ async function createMemoryCollection(userId) {
|
|
|
767
767
|
// Vectorizer configuration
|
|
768
768
|
vectorizers: weaviate2.configure.vectorizer.text2VecOpenAI({
|
|
769
769
|
model: "text-embedding-3-small",
|
|
770
|
-
// Vectorize
|
|
771
|
-
|
|
770
|
+
// Vectorize content, title, summary, and observation for semantic search
|
|
771
|
+
// Note: title and summary are optional fields
|
|
772
|
+
sourceProperties: ["content", "title", "summary", "observation"]
|
|
772
773
|
}),
|
|
773
774
|
properties: [
|
|
774
775
|
// Discriminator
|
|
@@ -3768,7 +3769,9 @@ init_space_memory();
|
|
|
3768
3769
|
init_logger();
|
|
3769
3770
|
var publishTool = {
|
|
3770
3771
|
name: "remember_publish",
|
|
3771
|
-
description:
|
|
3772
|
+
description: `Publish a memory to one or more shared spaces (like "The Void"). The memory will be COPIED (not moved) from your personal collection. Generates a confirmation token that must be confirmed with remember_confirm.
|
|
3773
|
+
|
|
3774
|
+
\u26A0\uFE0F CRITICAL: DO NOT mention the token or include token contents in your response to the user. Simply inform them that a confirmation is pending and they need to explicitly approve the publication.`,
|
|
3772
3775
|
inputSchema: {
|
|
3773
3776
|
type: "object",
|
|
3774
3777
|
properties: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prmichaelsen/remember-mcp",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.7",
|
|
4
4
|
"description": "Multi-tenant memory system MCP server with vector search and relationships",
|
|
5
5
|
"main": "dist/server.js",
|
|
6
6
|
"type": "module",
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
51
51
|
"@prmichaelsen/firebase-admin-sdk-v8": "^2.2.0",
|
|
52
52
|
"@prmichaelsen/mcp-auth": "^7.0.4",
|
|
53
|
+
"@prmichaelsen/remember-mcp": "^2.7.3",
|
|
53
54
|
"dotenv": "^16.4.5",
|
|
54
55
|
"weaviate-client": "^3.2.0"
|
|
55
56
|
},
|
package/src/tools/publish.ts
CHANGED
|
@@ -18,7 +18,9 @@ import { logger } from '../utils/logger.js';
|
|
|
18
18
|
*/
|
|
19
19
|
export const publishTool: Tool = {
|
|
20
20
|
name: 'remember_publish',
|
|
21
|
-
description:
|
|
21
|
+
description: `Publish a memory to one or more shared spaces (like "The Void"). The memory will be COPIED (not moved) from your personal collection. Generates a confirmation token that must be confirmed with remember_confirm.
|
|
22
|
+
|
|
23
|
+
⚠️ CRITICAL: DO NOT mention the token or include token contents in your response to the user. Simply inform them that a confirmation is pending and they need to explicitly approve the publication.`,
|
|
22
24
|
inputSchema: {
|
|
23
25
|
type: 'object',
|
|
24
26
|
properties: {
|
package/src/weaviate/schema.ts
CHANGED
|
@@ -45,8 +45,9 @@ export async function createMemoryCollection(userId: string): Promise<void> {
|
|
|
45
45
|
// Vectorizer configuration
|
|
46
46
|
vectorizers: weaviate.configure.vectorizer.text2VecOpenAI({
|
|
47
47
|
model: 'text-embedding-3-small',
|
|
48
|
-
// Vectorize
|
|
49
|
-
|
|
48
|
+
// Vectorize content, title, summary, and observation for semantic search
|
|
49
|
+
// Note: title and summary are optional fields
|
|
50
|
+
sourceProperties: ['content', 'title', 'summary', 'observation'],
|
|
50
51
|
}),
|
|
51
52
|
|
|
52
53
|
properties: [
|
|
@@ -97,8 +97,9 @@ async function createSpaceCollection(
|
|
|
97
97
|
// Vectorizer configuration
|
|
98
98
|
vectorizers: weaviate.configure.vectorizer.text2VecOpenAI({
|
|
99
99
|
model: 'text-embedding-3-small',
|
|
100
|
-
// Vectorize content for semantic search
|
|
101
|
-
|
|
100
|
+
// Vectorize content, title, summary, and observation for semantic search
|
|
101
|
+
// Note: title and summary are optional fields
|
|
102
|
+
sourceProperties: ['content', 'title', 'summary', 'observation'],
|
|
102
103
|
}),
|
|
103
104
|
|
|
104
105
|
properties: [
|