@intangle/mcp-server 2.3.7 → 2.3.8

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/index.js CHANGED
@@ -137,9 +137,8 @@ try {
137
137
  if (!space_id) {
138
138
  throw new Error("space_id is required. Use list_spaces to see available options.");
139
139
  }
140
- return makeApiCall("search-memories", {
140
+ return makeApiCall("search", {
141
141
  space_id,
142
- space_ids: [space_id], // Convert to array for backend compatibility
143
142
  query,
144
143
  topics,
145
144
  });
package/index.ts CHANGED
@@ -186,9 +186,8 @@ try {
186
186
  )
187
187
  }
188
188
 
189
- return makeApiCall("search-memories", {
189
+ return makeApiCall("search", {
190
190
  space_id,
191
- space_ids: [space_id], // Convert to array for backend compatibility
192
191
  query,
193
192
  topics,
194
193
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intangle/mcp-server",
3
- "version": "2.3.7",
3
+ "version": "2.3.8",
4
4
  "description": "Model Context Protocol server for Intangle - AI context that persists across conversations",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",