Things MCP Server

by hald

add-todo

Create and manage todos in Things app by adding titles, deadlines, checklist items, notes, and tags. Organize tasks under specific projects or areas with ease using this tool.

Instructions

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" }
ID: t9cgixg2ah