Sentry MCP Server

resolve_short_id

Retrieve details about an issue using its short ID. Maps short IDs to issue details, project context, and status.

Input Schema

NameRequiredDescriptionDefault
formatNoOutput format (default: markdown)markdown
organization_slugYesThe slug of the organization the issue belongs to
short_idYesThe short ID of the issue to resolve (e.g., PROJECT-123)

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" }, "organization_slug": { "description": "The slug of the organization the issue belongs to", "type": "string" }, "short_id": { "description": "The short ID of the issue to resolve (e.g., PROJECT-123)", "type": "string" } }, "required": [ "organization_slug", "short_id" ], "type": "object" }