clickup_get_task
Pack: clickup · Endpoint: https://gateway.pipeworx.io/clickup/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/clickup_get_task for the schema, then POST the same URL with its arguments for the data.
Fetch full task details including name, description, status, priority, assignees, tags, and time tracking. Provide task ID (e.g., “9hz6c”).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | ClickUp API token |
task_id | string | yes | Task ID |
Example call
Arguments
{
"_apiKey": "your-clickup-api-key",
"task_id": "9hz6c"
}
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_get_task","arguments":{"_apiKey":"your-clickup-api-key","task_id":"9hz6c"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('clickup_get_task', {
"_apiKey": "your-clickup-api-key",
"task_id": "9hz6c"
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Full task details including name, description, status, priority, assignees, tags, and time tracking"
}
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.