Recent bug reports
get_recent_reportsRetrieve a list of recent bug reports in a project, sorted by newest first. Filter by status, category, or severity to focus on specific issues.
Instructions
List recent bug reports for a project, newest first. Returns { reports: [{ id, status, category, severity, summary, created_at }], total }. Optional filters: status (new|classified|grouped|fixing|fixed|verified|reopened|dismissed), category (bug|slow|visual|confusing|other), severity (critical|high|medium|low), limit (default 20, max 100). Use to survey open reports; for one report use get_report_detail, to find a bug by text use search_reports.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max reports to return (default 20, max 100) | |
| status | No | Filter by status: new, classified, grouped, fixing, fixed, dismissed | |
| category | No | Filter by category: bug, slow, visual, confusing, other | |
| severity | No | Filter by severity: critical, high, medium, low | |
| project_id | No | Project UUID — defaults to the server-configured project. Useful when you have multiple projects and want to query a specific one by its ID. Get IDs by calling list_projects or get_account_overview first. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| total | Yes | ||
| reports | Yes |