Skip to main content
Glama

Knowledge MCP Server

by sven-borkert

add_todo_task

Add a new task with markdown support to a TODO list on the Knowledge MCP Server. Include titles, content, code blocks, and links for detailed project tracking and organization.

Instructions

Add a new task to an existing TODO list with full markdown support. Task content can include code blocks, lists, links, and any markdown formatting. 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