Skip to main content
Glama

Knowledge MCP Server

by sven-borkert

create_todo

Generate and manage TODO lists with optional initial tasks for structured project organization. Supports markdown content for detailed task descriptions, ensuring clarity and efficiency in project workflows.

Instructions

Create a new TODO list with optional initial tasks. Tasks must be objects with title and content properties for full markdown support. Returns: {success: bool, todo_number: int, message: str, error?: str}

Input Schema

NameRequiredDescriptionDefault
descriptionYesDescription of the TODO list
project_idYesThe project identifier
tasksNoOptional initial tasks as {title, content} objects

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "description": { "description": "Description of the TODO list", "maxLength": 500, "minLength": 1, "type": "string" }, "project_id": { "description": "The project identifier", "maxLength": 100, "minLength": 1, "type": "string" }, "tasks": { "description": "Optional initial tasks as {title, content} objects", "items": { "additionalProperties": false, "properties": { "content": { "description": "Full markdown content with details", "maxLength": 102400, "type": "string" }, "title": { "description": "Brief task title (max 200 chars)", "maxLength": 200, "minLength": 1, "type": "string" } }, "required": [ "title" ], "type": "object" }, "type": "array" } }, "required": [ "project_id", "description" ], "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