TaskFlow MCP

MIT License
186
2
  • Linux
  • Apple

mark_task_done

Update task status to 'done' in TaskFlow MCP by providing 'requestId' and 'taskId'. Optionally include 'completedDetails'. View updated progress and await user approval before proceeding.

Instructions

Mark a given task as done after you've completed it. Provide 'requestId' and 'taskId', and optionally 'completedDetails'.

After marking a task as done, a progress table will be displayed showing the updated status of all tasks.

After this, DO NOT proceed to 'get_next_task' again until the user has explicitly approved this completed task using 'approve_task_completion'.

Input Schema

NameRequiredDescriptionDefault
completedDetailsNo
requestIdYes
taskIdYes

Input Schema (JSON Schema)

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