@kazuph/mcp-taskmanager

delete_task

Delete a specific task from a request. Only uncompleted tasks can be deleted.

A progress table will be displayed showing the remaining tasks after deletion.

Input Schema

NameRequiredDescriptionDefault
requestIdYes
taskIdYes

Input Schema (JSON Schema)

{ "properties": { "requestId": { "type": "string" }, "taskId": { "type": "string" } }, "required": [ "requestId", "taskId" ], "type": "object" }