Things MCP Server

by hald

add-project

Create a new project in Things

Input Schema

NameRequiredDescriptionDefault
area_idNoID of area to add to
area_titleNoTitle of area to add to
deadlineNoDeadline for the project
notesNoNotes for the project
tagsNoTags to apply to the project
titleYesTitle of the project
todosNoInitial todos to create in the project
whenNoWhen to schedule the project

Input Schema (JSON Schema)

{ "properties": { "area_id": { "description": "ID of area to add to", "type": "string" }, "area_title": { "description": "Title of area to add to", "type": "string" }, "deadline": { "description": "Deadline for the project", "type": "string" }, "notes": { "description": "Notes for the project", "type": "string" }, "tags": { "description": "Tags to apply to the project", "items": { "type": "string" }, "type": "array" }, "title": { "description": "Title of the project", "type": "string" }, "todos": { "description": "Initial todos to create in the project", "items": { "type": "string" }, "type": "array" }, "when": { "description": "When to schedule the project", "type": "string" } }, "required": [ "title" ], "type": "object" }