Skip to main content
Glama

Knowledge MCP Server

by sven-borkert

add_todo_task

Add new tasks to an existing TODO list with full markdown support, code examples, and logical sequencing. Use to expand, clarify, or append tasks in project workflows on the Knowledge MCP Server.

Instructions

Add a new task to an existing TODO list with full markdown support.

When to use this tool:

  • Expanding existing TODO with new tasks
  • Adding discovered subtasks during work
  • Including additional requirements
  • Appending follow-up tasks
  • Adding clarifications or details

Key features:

  • Full markdown support in content
  • Can include code blocks and examples
  • Auto-incrementing task numbers
  • Preserves existing task order
  • Rich formatting capabilities

You should:

  1. Verify TODO exists first
  2. Use clear, actionable task titles (max 200 chars)
  3. Include implementation details in content
  4. Add code examples where helpful
  5. Position task logically in sequence
  6. Keep task scope focused
  7. Use markdown formatting effectively

DO NOT use when:

  • TODO doesn't exist
  • Task duplicates existing one
  • Task is too vague or broad

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

Input Schema

NameRequiredDescriptionDefault
contentNoFull markdown content with implementation details, code examples, etc.
project_idYesThe project identifier
titleYesBrief task title (max 200 chars, used in filename)
todo_numberYesThe TODO list number

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "content": { "description": "Full markdown content with implementation details, code examples, etc.", "maxLength": 102400, "type": "string" }, "project_id": { "description": "The project identifier", "maxLength": 100, "minLength": 1, "type": "string" }, "title": { "description": "Brief task title (max 200 chars, used in filename)", "maxLength": 200, "minLength": 1, "type": "string" }, "todo_number": { "description": "The TODO list number", "exclusiveMinimum": 0, "maximum": 99999, "type": "integer" } }, "required": [ "project_id", "todo_number", "title" ], "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