@prmichaelsen/remember-mcp 3.14.3 → 3.14.4
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/dist/server-factory.js +2 -1
- package/dist/server.js +2 -1
- package/package.json +2 -2
package/dist/server-factory.js
CHANGED
|
@@ -1168,7 +1168,7 @@ var DEFAULT_PREFERENCES = {
|
|
|
1168
1168
|
};
|
|
1169
1169
|
|
|
1170
1170
|
// node_modules/@prmichaelsen/remember-core/dist/types/space.types.js
|
|
1171
|
-
var SUPPORTED_SPACES = ["the_void"];
|
|
1171
|
+
var SUPPORTED_SPACES = ["the_void", "profiles", "spaces"];
|
|
1172
1172
|
|
|
1173
1173
|
// node_modules/@prmichaelsen/remember-core/dist/constants/content-types.js
|
|
1174
1174
|
var CONTENT_TYPES = [
|
|
@@ -3202,6 +3202,7 @@ var SpaceService = class {
|
|
|
3202
3202
|
const fetchLimit = (limit + offset) * Math.max(1, groups.length + (spaces.length > 0 || groups.length === 0 ? 1 : 0));
|
|
3203
3203
|
const allObjects = [];
|
|
3204
3204
|
if (spaces.length > 0 || groups.length === 0) {
|
|
3205
|
+
await ensurePublicCollection(this.weaviateClient);
|
|
3205
3206
|
const spacesCollectionName = getCollectionName(CollectionType.SPACES);
|
|
3206
3207
|
const spacesCollection = this.weaviateClient.collections.get(spacesCollectionName);
|
|
3207
3208
|
const filterList = this.buildBaseFilters(spacesCollection, input);
|
package/dist/server.js
CHANGED
|
@@ -852,7 +852,7 @@ var DEFAULT_PREFERENCES = {
|
|
|
852
852
|
};
|
|
853
853
|
|
|
854
854
|
// node_modules/@prmichaelsen/remember-core/dist/types/space.types.js
|
|
855
|
-
var SUPPORTED_SPACES = ["the_void"];
|
|
855
|
+
var SUPPORTED_SPACES = ["the_void", "profiles", "spaces"];
|
|
856
856
|
|
|
857
857
|
// node_modules/@prmichaelsen/remember-core/dist/constants/content-types.js
|
|
858
858
|
var CONTENT_TYPES = [
|
|
@@ -2886,6 +2886,7 @@ var SpaceService = class {
|
|
|
2886
2886
|
const fetchLimit = (limit + offset) * Math.max(1, groups.length + (spaces.length > 0 || groups.length === 0 ? 1 : 0));
|
|
2887
2887
|
const allObjects = [];
|
|
2888
2888
|
if (spaces.length > 0 || groups.length === 0) {
|
|
2889
|
+
await ensurePublicCollection(this.weaviateClient);
|
|
2889
2890
|
const spacesCollectionName = getCollectionName(CollectionType.SPACES);
|
|
2890
2891
|
const spacesCollection = this.weaviateClient.collections.get(spacesCollectionName);
|
|
2891
2892
|
const filterList = this.buildBaseFilters(spacesCollection, input);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prmichaelsen/remember-mcp",
|
|
3
|
-
"version": "3.14.
|
|
3
|
+
"version": "3.14.4",
|
|
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,7 +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-core": "^0.16.
|
|
53
|
+
"@prmichaelsen/remember-core": "^0.16.9",
|
|
54
54
|
"@prmichaelsen/remember-mcp": "^2.7.3",
|
|
55
55
|
"dotenv": "^16.4.5",
|
|
56
56
|
"uuid": "^13.0.0",
|