get_task_count
Count tasks matching specified filters like completion status, tags, due dates, or project. Provides a quick total without retrieving task details.
Instructions
Get count of tasks matching filters without fetching full data. Faster than list_tasks when you only need the count.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| completed | No | Filter by completion status | |
| flagged | No | Filter by flagged status | |
| available | No | Only count available (actionable) tasks | |
| inInbox | No | Only count inbox tasks | |
| projectId | No | Filter by project ID | |
| projectName | No | Filter by project name | |
| tagNames | No | Filter by tag names (all must match) | |
| dueAfter | No | Filter tasks due after this ISO date | |
| dueBefore | No | Filter tasks due before this ISO date | |
| deferAfter | No | Filter tasks deferred after this ISO date | |
| deferBefore | No | Filter tasks deferred before this ISO date | |
| plannedAfter | No | Filter tasks planned after this ISO date | |
| plannedBefore | No | Filter tasks planned before this ISO date | |
| search | No | Full-text search in task name and note | |
| taskStatus | No | Filter by task status |