list_tasks
Retrieve all tasks for a project using its ID. Filter by status or request full task details when compact rows are insufficient.
Instructions
List all tasks for a specific project. Returns compact rows (id, title, status, priority, estimated_minutes, time_spent, due_date, snippet) by default to keep payloads small; pass verbose:true for full rows including description, acceptance_criteria, tags, and assignments.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| status | No | Filter by task status. Omit for all tasks. Note this filters the STORED status; a task can also be showing as blocked because of an unmet dependency (see effective_status on each row). | |
| verbose | No | Return full task rows (description, acceptance_criteria, tags, assignments) instead of compact rows. Default false. | |
| project_id | Yes | The ID of the project whose tasks to list |