List bug reports
feedbug_list_bugsList bug reports from Feedbug, newest first. Filter by status or page URL to find open issues or review reports for a specific page without needing a bug ID.
Instructions
List the bug reports captured by the Feedbug widget, newest first.
Returns: a JSON array carrying, per bug, its UUID, tracker identifier (e.g. PRE-13), title, status, page URL, framework component path, session replay URL and creation date. Use when: you are looking for a bug to work on, checking what is still open, or reviewing every report filed on one page. Do not use when: you already hold a bug id — feedbug_get_bug returns that one report with its screenshot and DOM context. Behavior: read-only and idempotent. The server authenticates with the FEEDBUG_PROJECT_KEY environment variable and can only ever see that single project. There is no pagination: the API truncates to limit, so narrow the set with status or page_url instead of paging. No match returns an empty array, not an error.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | How many bugs to return, newest first. Integer between 1 and 50, defaults to 20; the API clamps anything higher to 50. | |
| status | No | Feedbug status to keep. Omit to get every status. 'in-progress' only ever occurs on bugs tracked in Linear, since a GitHub issue is either open or closed. | |
| page_url | No | Substring matched case-insensitively against the whole page URL of the report — '/checkout' to inspect one route, 'staging.' to inspect one environment. Omit to search every page. |