finish_task
Mark tasks as completed within the DeltaTask MCP Server to manage and organize workflows efficiently. Input task_id to update task status.
Instructions
Mark a task as completed.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes |
Implementation Reference
- server.py:95-98 (handler)The 'finish_task' tool handler function. It is registered via the @mcp.tool() decorator and implements the logic by calling the TaskService to update the task as completed.@mcp.tool() async def finish_task(task_id: str) -> dict[str, Any]: """Mark a task as completed.""" return service.update_task_by_id(task_id, {"completed": True})