@taazkareem/clickup-mcp-server 0.4.29 → 0.4.31
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/build/index.js +10 -1
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -44,7 +44,16 @@ catch (error) {
|
|
|
44
44
|
logDebug('mcp', { status: 'creating' });
|
|
45
45
|
const mcpServer = new McpServer({
|
|
46
46
|
name: "clickup-mcp-server",
|
|
47
|
-
version: "0.4.
|
|
47
|
+
version: "0.4.30"
|
|
48
|
+
});
|
|
49
|
+
// Register a simple test tool first to verify functionality
|
|
50
|
+
mcpServer.tool('ping', 'A simple ping tool that returns pong', {}, async () => {
|
|
51
|
+
return {
|
|
52
|
+
content: [{
|
|
53
|
+
type: "text",
|
|
54
|
+
text: "pong"
|
|
55
|
+
}]
|
|
56
|
+
};
|
|
48
57
|
});
|
|
49
58
|
// Tool schemas as raw shapes
|
|
50
59
|
const workspaceHierarchySchema = {
|
package/package.json
CHANGED