list_issues
Retrieve project issues, optionally filtered by status, priority, type, or reporter. Supports pagination and includes archived issues when requested.
Instructions
List issues (cards) in a project, optionally filtered. By default returns ACTIVE issues only (new / in_progress / in_review). Set include_archived=true (or status=done/wont_fix) to look at the Archive. Result is paginated; use limit/offset to walk it.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | Free-text filter over title + description (applied client-side after fetch). | |
| type | No | ||
| limit | No | Max rows. Default 25, capped at 100. Only honored in archive mode. | |
| offset | No | Pagination offset. Default 0. Only honored in archive mode. | |
| status | No | ||
| project | Yes | Project id (number) or name (string). | |
| priority | No | ||
| reporter | No | Email or display name to match against the card's reporter. | |
| include_archived | No | Include Done / Won't Fix issues. Default false. |