@prmichaelsen/remember-mcp 1.0.2 → 1.0.3

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.
@@ -1613,6 +1613,11 @@ async function handleSearchMemory(args, userId) {
1613
1613
  if (filters) {
1614
1614
  searchOptions.filters = filters;
1615
1615
  }
1616
+ logger.info("Weaviate query", {
1617
+ query: args.query,
1618
+ searchOptions: JSON.stringify(searchOptions, null, 2),
1619
+ hasFilters: !!filters
1620
+ });
1616
1621
  const results = await collection.query.hybrid(args.query, searchOptions);
1617
1622
  const paginatedResults = results.objects.slice(offset);
1618
1623
  const memories = [];
package/dist/server.js CHANGED
@@ -1542,6 +1542,11 @@ async function handleSearchMemory(args, userId) {
1542
1542
  if (filters) {
1543
1543
  searchOptions.filters = filters;
1544
1544
  }
1545
+ logger.info("Weaviate query", {
1546
+ query: args.query,
1547
+ searchOptions: JSON.stringify(searchOptions, null, 2),
1548
+ hasFilters: !!filters
1549
+ });
1545
1550
  const results = await collection.query.hybrid(args.query, searchOptions);
1546
1551
  const paginatedResults = results.objects.slice(offset);
1547
1552
  const memories = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prmichaelsen/remember-mcp",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Multi-tenant memory system MCP server with vector search and relationships",
5
5
  "main": "dist/server.js",
6
6
  "type": "module",
@@ -137,6 +137,13 @@ export async function handleSearchMemory(
137
137
  searchOptions.filters = filters;
138
138
  }
139
139
 
140
+ // Log the query for debugging
141
+ logger.info('Weaviate query', {
142
+ query: args.query,
143
+ searchOptions: JSON.stringify(searchOptions, null, 2),
144
+ hasFilters: !!filters,
145
+ });
146
+
140
147
  // Perform hybrid search with Weaviate v3 API
141
148
  const results = await collection.query.hybrid(args.query, searchOptions);
142
149