delete_task
Remove a task by specifying the workspace ID, project ID, and task ID to streamline task management in the Clockify MCP Server.
Instructions
Delete a task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | Yes | Project ID | |
taskId | Yes | Task ID | |
workspaceId | Yes | Workspace ID |
Input Schema (JSON Schema)
{
"properties": {
"projectId": {
"description": "Project ID",
"type": "string"
},
"taskId": {
"description": "Task ID",
"type": "string"
},
"workspaceId": {
"description": "Workspace ID",
"type": "string"
}
},
"required": [
"workspaceId",
"projectId",
"taskId"
],
"type": "object"
}