Skip to main content
Glama

Knowledge MCP Server

by sven-borkert

complete_todo_task

Mark a task as completed in a TODO list to update progress, record completion timestamp, and track project status. Ensure task requirements are fully met before marking it complete.

Instructions

Mark a task as completed in a TODO list.

When to use this tool:

  • Task implementation is fully complete
  • Task requirements are met
  • Moving to next task in sequence
  • Updating progress status
  • Recording completion for tracking

Key features:

  • Marks task with completion timestamp
  • Updates TODO completion percentage
  • Preserves task content and history
  • Cannot be undone

You should:

  1. ONLY mark complete when truly finished
  2. Verify task is actually done
  3. Test/validate before marking complete
  4. Complete tasks as you finish them
  5. Don't batch completions
  6. Move to next task after completing

DO NOT use when:

  • Task is partially complete
  • Work is blocked or paused
  • Need to revisit later
  • Implementation failed

Returns: {success: bool, message: str, error?: str}

Input Schema

NameRequiredDescriptionDefault
project_idYesThe project identifier
task_numberYesThe task number to complete
todo_numberYesThe TODO list number

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "project_id": { "description": "The project identifier", "maxLength": 100, "minLength": 1, "type": "string" }, "task_number": { "description": "The task number to complete", "exclusiveMinimum": 0, "maximum": 99999, "type": "integer" }, "todo_number": { "description": "The TODO list number", "exclusiveMinimum": 0, "maximum": 99999, "type": "integer" } }, "required": [ "project_id", "todo_number", "task_number" ], "type": "object" }

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/sven-borkert/knowledge-mcp'

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