@intangle/mcp-server 2.1.5 → 2.1.6

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
@@ -129,7 +129,7 @@ try {
129
129
  if (!space_id) {
130
130
  throw new Error("space_id is required. Use view_spaces to see available options.");
131
131
  }
132
- return makeApiCall("list-topics", { space_id });
132
+ return makeApiCall("view-topics", { space_id });
133
133
  }
134
134
  async function handleViewTopic(args) {
135
135
  const { topic_id } = args;
package/index.ts CHANGED
@@ -177,7 +177,7 @@ try {
177
177
  "space_id is required. Use view_spaces to see available options.",
178
178
  );
179
179
  }
180
- return makeApiCall("list-topics", { space_id });
180
+ return makeApiCall("view-topics", { space_id });
181
181
  }
182
182
 
183
183
  async function handleViewTopic(args: any) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intangle/mcp-server",
3
- "version": "2.1.5",
3
+ "version": "2.1.6",
4
4
  "description": "Model Context Protocol server for Intangle - AI memory that persists across conversations",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",