Skip to main content
Glama
brysontang

DeltaTask MCP Server

by brysontang

finish_task

Mark tasks as completed in a task management system by providing the task ID, enabling users to track progress and maintain organized workflows.

Instructions

Mark a task as completed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
task_idYes

Implementation Reference

  • server.py:95-98 (handler)
    The finish_task tool handler, decorated with @mcp.tool() for registration, marks a task as completed by calling TaskService.update_task_by_id.
    @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})

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/brysontang/DeltaTask'

If you have feedback or need assistance with the MCP directory API, please join our Discord server