delete_task
Remove a specific task from a project by providing the project ID and task ID in the taskqueue-mcp server.
Instructions
Remove a task from a project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | Yes | The ID of the project containing the task (e.g., proj-1). | |
taskId | Yes | The ID of the task to delete (e.g., task-1). |
Input Schema (JSON Schema)
{
"properties": {
"projectId": {
"description": "The ID of the project containing the task (e.g., proj-1).",
"type": "string"
},
"taskId": {
"description": "The ID of the task to delete (e.g., task-1).",
"type": "string"
}
},
"required": [
"projectId",
"taskId"
],
"type": "object"
}