list_bugs
Retrieve a filtered list of bugs for a specified project. Use optional filters to narrow by status, kind, severity, or tag, with pagination support.
Instructions
List bugs within a project with optional filtering and pagination.
Returns lightweight BugSummary items (omitting full description and notes) for progressive
disclosure. Use get_bug to retrieve complete details for a specific bug.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tag | No | Filter by tag name. | |
| kind | No | Filter by kind ('bug', 'improvement', or 'all'). | |
| limit | No | Max number of items to return. Defaults to 50. | |
| offset | No | Pagination offset. Defaults to 0. | |
| status | No | Filter by status ('open', 'fixed', or 'all'). Defaults to 'open'. | open |
| project | Yes | Name identifying the project to list bugs for. Required — only bugs logged under this exact project name are returned. | |
| severity | No | Filter by severity ('minor', 'major', 'blocking'). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| items | Yes | ||
| total | Yes | ||
| has_more | Yes |