MCP Task Manager Server

deleteTask

Remove one or more tasks from a specified project by providing the project ID and task IDs. Deleting a task also removes its subtasks and dependency links. Returns the count of successfully deleted tasks.

Instructions

Deletes one or more tasks within a specified project. Requires the project ID and an array of task IDs to delete. Note: Deleting a task also deletes its subtasks and dependency links due to database cascade rules. Returns the count of successfully deleted tasks.

Input Schema

NameRequiredDescriptionDefault
project_idYesThe unique identifier (UUID) of the project containing the tasks to delete. This project must exist.
task_idsYesAn array of task IDs (UUIDs, 1-100) to be deleted from the specified project.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "project_id": { "description": "The unique identifier (UUID) of the project containing the tasks to delete. This project must exist.", "format": "uuid", "type": "string" }, "task_ids": { "description": "An array of task IDs (UUIDs, 1-100) to be deleted from the specified project.", "items": { "description": "A unique identifier (UUID) of a task to delete.", "format": "uuid", "type": "string" }, "maxItems": 100, "minItems": 1, "type": "array" } }, "required": [ "project_id", "task_ids" ], "type": "object" }

You must be authenticated.

Other Tools from MCP Task Manager Server

Related Tools

ID: iidipqwk2z