delete_task
Remove a specific task from a project in TickTick by providing the task ID and project ID. Use this tool to manage and organize tasks efficiently within the TickTick MCP Server.
Instructions
Delete a task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | Yes | Project ID containing the task (required) | |
taskId | Yes | Task ID to delete (required) |
Input Schema (JSON Schema)
{
"properties": {
"projectId": {
"description": "Project ID containing the task (required)",
"type": "string"
},
"taskId": {
"description": "Task ID to delete (required)",
"type": "string"
}
},
"required": [
"taskId",
"projectId"
],
"type": "object"
}