list_tasks
Retrieve tasks from a project with filters for keyword, tag, status, assignee, and parent. Supports pagination with limit and offset.
Instructions
List tasks in a project with optional filters. Results are paginated (default 50). Use q to keyword-search titles/descriptions, and limit/offset to page through large projects instead of fetching everything.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | Keyword filter over title/description. Multi-term: every word must match (order-independent). | |
| tag | No | Only tasks carrying this tag name (case-insensitive) | |
| limit | No | Max results per page (default 50, max 200) | |
| offset | No | Number of results to skip, for paging (default 0) | |
| parent | No | "none" for top-level only (default), "all" for all tasks, or a task UUID for subtasks | |
| status | No | Comma-separated status filter: open, in_progress, done | |
| assignee | No | "me" to filter to current user only | |
| project_uuid | Yes | UUID of the project |