@prmichaelsen/remember-mcp 2.7.3 → 2.7.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,26 @@ 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.4] - 2026-02-17
9
+
10
+ ### Changed
11
+
12
+ - **Enhanced Vectorization**: Added `title` and `summary` to vectorized source properties
13
+ - User memory schema: Now vectorizes `content`, `title`, `summary`, and `observation`
14
+ - Space memory schema: Now vectorizes `content`, `title`, `summary`, and `observation`
15
+ - Improves semantic search by including titles and summaries in vector embeddings
16
+ - Note: `title` and `summary` are optional fields, handled gracefully by vectorizer
17
+
18
+ ### Technical Details
19
+
20
+ - Modified: `src/weaviate/schema.ts` (line 49)
21
+ - Modified: `src/weaviate/space-schema.ts` (line 101)
22
+ - Changed `sourceProperties` from `['content', 'observation']` to `['content', 'title', 'summary', 'observation']`
23
+ - Applies to all new collections created after this version
24
+ - Existing collections retain their original vectorizer configuration
25
+
26
+ ---
27
+
8
28
  ## [2.7.3] - 2026-02-17
9
29
 
10
30
  ### Fixed
@@ -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 both memory content and relationship observations
703
- sourceProperties: ["content", "observation"]
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
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 both memory content and relationship observations
771
- sourceProperties: ["content", "observation"]
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prmichaelsen/remember-mcp",
3
- "version": "2.7.3",
3
+ "version": "2.7.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",
@@ -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
  },
@@ -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 both memory content and relationship observations
49
- sourceProperties: ['content', 'observation'],
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
- sourceProperties: ['content', 'observation'],
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: [