tasks_read
Read tasks and task categories. action: tasks | categories (consolidated surface — same handlers as the legacy tools)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | [tasks] Maximum number of tasks to return (default: 25, max: 500) | |
| action | Yes | which operation to run | |
| offset | No | [tasks] Number of tasks to skip for pagination (default: 0). Use with limit to fetch additional pages. | |
| search | No | [tasks] Search keyword in task content and notes (case-insensitive partial match) | |
| status | No | [tasks] Filter by task status | |
| overdue | No | [tasks] Filter overdue incomplete tasks (due_date < today) | |
| sort_by | No | [tasks] Sort field (default: created_at) | |
| location | No | [tasks] Filter by location (partial match, e.g., '여의도', '서울') | |
| due_today | No | [tasks] Filter tasks due today | |
| sort_order | No | [tasks] Sort order (default: desc) | |
| category_id | No | [tasks] Filter by category UUID | |
| due_date_end | No | [tasks] Filter tasks with due_date <= this date (ISO 8601 format) | |
| is_important | No | [tasks] Filter by important tasks only | |
| due_date_start | No | [tasks] Filter tasks with due_date >= this date (ISO 8601 format) | |
| created_date_end | No | [tasks] Filter tasks created <= this date (ISO 8601 format) | |
| has_notification | No | [tasks] Filter by notification enabled status | |
| completed_date_end | No | [tasks] Filter tasks completed <= this date (ISO 8601 format) | |
| created_date_start | No | [tasks] Filter tasks created >= this date (ISO 8601 format) | |
| completed_date_start | No | [tasks] Filter tasks completed >= this date (ISO 8601 format) |