ticktick_filter_tasks
Filter tasks by keywords, tags, priority, or due dates within the TickTick MCP Server to streamline task management and improve productivity.
Instructions
Filter tasks by various criteria
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| due_after | No | Tasks due after this date | |
| due_before | No | Tasks due before this date | |
| keywords | No | Keywords to search for in task titles/content | |
| priority | No | Filter by priority level | |
| tags | No | Filter by tags |
Input Schema (JSON Schema)
{
"properties": {
"due_after": {
"description": "Tasks due after this date",
"type": "string"
},
"due_before": {
"description": "Tasks due before this date",
"type": "string"
},
"keywords": {
"description": "Keywords to search for in task titles/content",
"type": "string"
},
"priority": {
"description": "Filter by priority level",
"type": "number"
},
"tags": {
"description": "Filter by tags",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}