get_sentry_issue
Retrieve detailed information about a Sentry issue, including stack traces, with filtering options to control response size.
Instructions
Retrieve details for a specific Sentry issue by ID or URL, including the stacktrace from the latest event. Supports filtering and automatic truncation to reduce response size.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| grep_pattern | No | Optional: Regex pattern to filter response content. | |
| exclude_fields | No | Optional: List of fields to exclude (blacklist). Use dot notation for nested fields. | |
| include_fields | No | Optional: List of fields to include (whitelist). Use dot notation for nested fields (e.g., "latest_event.entries"). | |
| issue_id_or_url | Yes | Sentry issue ID or full issue URL. Issue ID is a number e.g: 123456 | |
| max_stack_frames | No | Optional: Maximum number of stack trace frames to return (default: all). | |
| include_latest_event | No | Include latest event details (default: false to reduce response size) |