Read a bug report
feedbug_get_bugRetrieve the full details of a single visual bug report by its ID, including title, screenshot, session replay, DOM context, and tracker status, so you can reproduce or fix the issue directly from your editor.
Instructions
Read one bug report in full.
Returns: a JSON object with the title, the Feedbug and tracker statuses, the tracker issue URL, the page URL, the screenshot URL, the session replay URL, the viewport, the user agent, the click coordinates as percentages, and the captured DOM context. Use when: you picked a bug out of feedbug_list_bugs and are about to reproduce or fix it. Do not use when: you only need the DOM tree (feedbug_get_html_context), only the browser environment (feedbug_get_diagnostics) or only the replay link (feedbug_get_replay). Behavior: read-only and idempotent, scoped by FEEDBUG_PROJECT_KEY to a single project. An unknown id, or one belonging to another project, returns a "Bug not found" error.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Bug UUID as returned by feedbug_list_bugs, or the tracker identifier such as PRE-13, matched case-insensitively. Ids belonging to another project are rejected. |