Sentry MCP Server

list_error_events_in_project

List error events from a specific Sentry project. View recent errors, frequency patterns, and occurrence timestamps.

Input Schema

NameRequiredDescriptionDefault
formatNoOutput format (default: markdown)markdown
organization_slugYesThe slug of the organization the project belongs to
project_slugYesThe slug of the project to list events from
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" }, "organization_slug": { "description": "The slug of the organization the project belongs to", "type": "string" }, "project_slug": { "description": "The slug of the project to list events from", "type": "string" }, "view": { "default": "detailed", "description": "View type (default: detailed)", "enum": [ "summary", "detailed" ], "type": "string" } }, "required": [ "organization_slug", "project_slug" ], "type": "object" }