Sentry MCP Server

list_issue_events

List events for a specific Sentry issue. Analyze event details, metadata, and patterns.

Input Schema

NameRequiredDescriptionDefault
formatNoOutput format (default: markdown)markdown
issue_idYesThe ID of the issue to list events for
organization_slugYesThe slug of the organization the issue belongs to
viewNoView type (default: detailed)detailed

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "format": { "default": "markdown", "description": "Output format (default: markdown)", "enum": [ "plain", "markdown" ], "type": "string" }, "issue_id": { "description": "The ID of the issue to list events for", "type": "string" }, "organization_slug": { "description": "The slug of the organization the issue belongs to", "type": "string" }, "view": { "default": "detailed", "description": "View type (default: detailed)", "enum": [ "summary", "detailed" ], "type": "string" } }, "required": [ "organization_slug", "issue_id" ], "type": "object" }