get_error_details
Retrieve detailed error information and stacktraces from Sentry using an Issue ID or URL to investigate and resolve production errors efficiently.
Instructions
Retrieve error details from Sentry for a specific Issue ID, including the stacktrace and error message. Either issueId or issueUrl MUST be provided.
Use this tool when you need to:
Investigate a specific production error
Access detailed error information and stacktraces from Sentry
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issueId | No | The Issue ID. e.g. `PROJECT-1Z43` | |
issueUrl | No | The URL of the issue to retrieve details for. | |
organizationSlug | No | The organization's slug. This will default to the first org you have access to. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"issueId": {
"description": "The Issue ID. e.g. `PROJECT-1Z43`",
"type": "string"
},
"issueUrl": {
"description": "The URL of the issue to retrieve details for.",
"format": "uri",
"type": "string"
},
"organizationSlug": {
"description": "The organization's slug. This will default to the first org you have access to.",
"type": "string"
}
},
"type": "object"
}