delete_task
Remove a specific task from ClickUp by providing its Task ID. This function is part of the ClickUp MCP Server, enabling AI assistants to manage project workflows efficiently.
Instructions
Delete a task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
task_id | Yes | Task ID to delete |
Input Schema (JSON Schema)
{
"properties": {
"task_id": {
"description": "Task ID to delete",
"type": "string"
}
},
"required": [
"task_id"
],
"type": "object"
}