sentry_get_event
Retrieve specific Sentry event details by providing the project slug and event ID. Ideal for debugging and analyzing application errors and performance issues.
Instructions
Retrieve a specific Sentry event from an issue. Requires issue ID/URL and event ID.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| eventId | Yes | Event ID | |
| projectSlug | Yes | Project slug/identifier | 
Input Schema (JSON Schema)
{
  "properties": {
    "eventId": {
      "description": "Event ID",
      "type": "string"
    },
    "projectSlug": {
      "description": "Project slug/identifier",
      "type": "string"
    }
  },
  "required": [
    "projectSlug",
    "eventId"
  ],
  "type": "object"
}