clickup_list_tasks
Pack: clickup · Endpoint: https://gateway.pipeworx.io/clickup/mcp
List all tasks in a ClickUp list. Returns task ID, name, status, priority, assignees, due date, and URL. Provide list ID (e.g., “123456”).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | ClickUp API token |
list_id | string | yes | List ID to fetch tasks from |
page | number | no | Page number (0-indexed, default 0) |
Example call
Arguments
{
"_apiKey": "your-clickup-api-key",
"list_id": "123456"
}
curl
curl -X POST https://gateway.pipeworx.io/clickup/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"clickup_list_tasks","arguments":{"_apiKey":"your-clickup-api-key","list_id":"123456"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('clickup_list_tasks', {
"_apiKey": "your-clickup-api-key",
"list_id": "123456"
});
More examples
{
"_apiKey": "your-clickup-api-key",
"list_id": "123456",
"page": 1
}
Response shape
Always returns: tasks
| Field | Type | Description |
|---|---|---|
tasks | array | Array of task objects |
Full JSON Schema
{
"type": "object",
"properties": {
"tasks": {
"type": "array",
"description": "Array of task objects",
"items": {
"type": "object",
"description": "Task object with ID, name, status, priority, assignees, due date, and URL"
}
}
},
"required": [
"tasks"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"clickup": {
"url": "https://gateway.pipeworx.io/clickup/mcp"
}
}
}
See Getting Started for client-specific install steps.