@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 +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
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("
|
|
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("
|
|
180
|
+
return makeApiCall("view-topics", { space_id });
|
|
181
181
|
}
|
|
182
182
|
|
|
183
183
|
async function handleViewTopic(args: any) {
|