Todo List MCP Server

update-todo

Update a todo title or description

Input Schema

NameRequiredDescriptionDefault
descriptionNo
idYes
titleNo

Input Schema (JSON Schema)

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