Sentry MCP Server

get_sentry_issue

Retrieve and analyze a Sentry issue. Accepts issue URL or ID.

Input Schema

NameRequiredDescriptionDefault
formatNoOutput format (default: markdown)markdown
issue_id_or_urlYesEither a full Sentry issue URL or just the numeric issue ID
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_or_url": { "description": "Either a full Sentry issue URL or just the numeric issue ID", "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": [ "issue_id_or_url", "organization_slug" ], "type": "object" }