Clickup
live ProductivityDataClickUp MCP — wraps the ClickUp REST API v2 (BYO API key)
Tools
clickup_list_tasks List tasks in a ClickUp list. Returns task ID, name, status, priority, assignees, due date, and URL.
No parameters required.
Try it
clickup_get_task Get 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_task Create a new task in a ClickUp list. Returns the created task ID, name, status, and URL.
No parameters required.
Try it
clickup_list_spaces List spaces in a ClickUp team/workspace. Returns space ID, name, and status info.
No parameters required.
Try it
clickup_list_folders List 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("clickup mcp — wraps the clickup rest api v2 (byo api key)"); Related packs
Other Pipeworx packs in the same categories (Productivity, Data):