ClickUp MCP Server

by v4lheru
Verified

get_task

Retrieve comprehensive details about a specific ClickUp task. Use this tool when you need in-depth information about a particular task, including its description, custom fields, attachments, and other metadata. Before calling, check if you already have the necessary task ID from previous responses in the conversation, as this avoids redundant lookups.

Input Schema

NameRequiredDescriptionDefault
listNameNoOptional: Name of the list to narrow down task search when multiple tasks have the same name
taskIdNoID of the task to retrieve (optional if using taskName instead). If you have this ID from a previous response, use it directly rather than looking up by name.
taskNameNoName of the task to retrieve - will automatically find the task by name (optional if using taskId instead). Only use this if you don't already have the task ID from previous responses.

Input Schema (JSON Schema)

{ "oneOf": [ { "required": [ "taskId" ] }, { "required": [ "taskName" ] } ], "properties": { "listName": { "description": "Optional: Name of the list to narrow down task search when multiple tasks have the same name", "type": "string" }, "taskId": { "description": "ID of the task to retrieve (optional if using taskName instead). If you have this ID from a previous response, use it directly rather than looking up by name.", "type": "string" }, "taskName": { "description": "Name of the task to retrieve - will automatically find the task by name (optional if using taskId instead). Only use this if you don't already have the task ID from previous responses.", "type": "string" } }, "type": "object" }