karea_list_tasks
List tasks in a project, filtering by status like open, done, or all. Optionally limit results or show tasks closed within a time window.
Instructions
List tasks in a project. Defaults to open tasks (open, in_progress, blocked, review, backlog) capped at 200 to keep responses small. To see closed tasks pass status="done" and optionally closedSince (e.g. "14d", "7d", "24h"). To list everything, pass status="all".
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | No | Project name or ID (omit for default project) | |
| status | No | Filter by status: open, in_progress, blocked, review, backlog, done, cancelled. Comma-separated allowed (e.g. "open,in_progress"). "all" returns every status. | |
| closedSince | No | Only return tasks closed since this window. Relative (e.g. "14d", "7d", "24h") or ISO date. Implies status=done unless status is set. | |
| limit | No | Max tasks to return (default 200, cap 1000). |