Clickup
liveProductivitySaaSList tasks in a ClickUp list.
Tools
clickup_list_tasksList tasks in a ClickUp list. Returns task ID, name, status, priority, assignees, due date, and URL.
No parameters required.
Try it
clickup_get_taskGet a single ClickUp task by ID. Returns full task details including name, description, status, priority, assignees, tags, and time tracking.
No parameters required.
Try it
clickup_create_taskCreate a new task in a ClickUp list. Returns the created task ID, name, status, and URL.
No parameters required.
Try it
clickup_list_spacesList spaces in a ClickUp team/workspace. Returns space ID, name, and status info.
No parameters required.
Try it
clickup_list_foldersList folders in a ClickUp space. Returns folder ID, name, and list count.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/clickup/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/clickup/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"clickup_list_tasks","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("clickup_list_tasks", {});// Or ask in plain English:
const answer = await px.ask("list tasks in a clickup list");