BugSnag: List Releases
bugsnag_list_releasesList releases for a BugSnag project, filter by release stage or visibility, and paginate through results to correlate error spikes with deployments.
Instructions
List releases for a project
Toolset: Releases
Parameters:
projectId (string): Unique identifier of the project. This is optional if a current project is set and is used to set the current project for BugSnag tools.
releaseStage (string): Filter releases by this stage (e.g. production, staging), defaults to 'production' (default: "production")
visibleOnly (boolean): Whether to only include releases that are marked as visible in the dashboard (default: false)
perPage (number): How many results to return per page. (default: 30)
nextUrl (string): URL for retrieving the next page of results. Use the value in the previous response to get the next page when more results are available. Only values provided in the output from this tool can be used. Do not attempt to construct it manually.
Output Description: JSON array of release summary objects with metadata, with a URL to the next page if more results are available
Use Cases: 1. View recent releases to correlate with error spikes 2. Filter releases by stage (e.g. production, staging) for targeted analysis
Examples:
List production releases for a project
{}Expected Output: JSON array of release objects in the production stage
List staging releases for a project
{
"releaseStage": "staging"
}Expected Output: JSON array of release objects in the staging stage
Get the next page of results
{
"nextUrl": "/projects/515fb9337c1074f6fd000003/releases?offset=30&per_page=30"
}Expected Output: JSON array of release objects with metadata from the next page
Hints: 1. Use the Get Release tool to get more details on a specific release, including the builds it contains 2. The release stage defaults to 'production' if not specified 3. Use visibleOnly to filter out releases that have been marked as hidden in the dashboard
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| nextUrl | No | URL for retrieving the next page of results. Use the value in the previous response to get the next page when more results are available. Only values provided in the output from this tool can be used. Do not attempt to construct it manually. | |
| perPage | No | How many results to return per page. | |
| projectId | No | Unique identifier of the project. This is optional if a current project is set and is used to set the current project for BugSnag tools. | |
| visibleOnly | No | Whether to only include releases that are marked as visible in the dashboard | |
| releaseStage | No | Filter releases by this stage (e.g. production, staging), defaults to 'production' | production |