Todo List MCP Server

create-todo

Create a new todo item

Input Schema

NameRequiredDescriptionDefault
descriptionYes
titleYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "description": { "minLength": 1, "type": "string" }, "title": { "minLength": 1, "type": "string" } }, "required": [ "title", "description" ], "type": "object" }