Things MCP Server

by hald

add-todo

Create a new todo in Things

Input Schema

NameRequiredDescriptionDefault
checklist_itemsNoChecklist items to add
deadlineNoDeadline for the todo (YYYY-MM-DD)
headingNoHeading to add under
list_idNoID of project/area to add to
list_titleNoTitle of project/area to add to
notesNoNotes for the todo
tagsNoTags to apply to the todo
titleYesTitle of the todo
whenNoWhen to schedule the todo (today, tomorrow, evening, anytime, someday, or YYYY-MM-DD)

Input Schema (JSON Schema)

{ "properties": { "checklist_items": { "description": "Checklist items to add", "items": { "type": "string" }, "type": "array" }, "deadline": { "description": "Deadline for the todo (YYYY-MM-DD)", "type": "string" }, "heading": { "description": "Heading to add under", "type": "string" }, "list_id": { "description": "ID of project/area to add to", "type": "string" }, "list_title": { "description": "Title of project/area to add to", "type": "string" }, "notes": { "description": "Notes for the todo", "type": "string" }, "tags": { "description": "Tags to apply to the todo", "items": { "type": "string" }, "type": "array" }, "title": { "description": "Title of the todo", "type": "string" }, "when": { "description": "When to schedule the todo (today, tomorrow, evening, anytime, someday, or YYYY-MM-DD)", "type": "string" } }, "required": [ "title" ], "type": "object" }