Things MCP Server

by hald

search-advanced

Advanced todo search with multiple filters

Input Schema

NameRequiredDescriptionDefault
areaNoFilter by area UUID
deadlineNoFilter by deadline (YYYY-MM-DD)
start_dateNoFilter by start date (YYYY-MM-DD)
statusNoFilter by todo status
tagNoFilter by tag
typeNoFilter by item type

Input Schema (JSON Schema)

{ "properties": { "area": { "description": "Filter by area UUID", "type": "string" }, "deadline": { "description": "Filter by deadline (YYYY-MM-DD)", "type": "string" }, "start_date": { "description": "Filter by start date (YYYY-MM-DD)", "type": "string" }, "status": { "description": "Filter by todo status", "enum": [ "incomplete", "completed", "canceled" ], "type": "string" }, "tag": { "description": "Filter by tag", "type": "string" }, "type": { "description": "Filter by item type", "enum": [ "to-do", "project", "heading" ], "type": "string" } }, "required": [], "type": "object" }