sentry

List and retrieve Sentry issues and events via REST API.

5.0k|454|Updated Jan 19, 2026
One-click install
npx skills add https://github.com/tech-leads-club/agent-skills --skill sentry-tech-leads-club
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: sentry
Source: https://github.com/tech-leads-club/agent-skills/tree/main/packages/skills-catalog/skills/%28monitoring%29/sentry
Command: npx skills add https://github.com/tech-leads-club/agent-skills --skill sentry-tech-leads-club

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This skill provides read-only access to Sentry issues and events via a simple, script-driven interface, enabling faster triage and health checks without modifying data.

Core Features & Use Cases

  • List issues: retrieve recent issues with filters such as org, project, environment, and time range.
  • Issue detail & events: fetch detailed information and related events for a specific issue.
  • Use Case: On-call engineers surface recent errors for a project to triage incidents quickly.

Quick Start

  • Set SENTRY_AUTH_TOKEN in your environment and export SENTRY_BASE_URL if needed.
  • Use the bundled script at scripts/sentry_api.py to interact with Sentry's API.
  • Example commands: python3 scripts/sentry_api.py list-issues --org my-org --project my-project --environment prod --time-range 24h --limit 20

Frequently Asked Questions about sentry

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I list recent Sentry issues for a specific project in production?

To list recent Sentry issues, use the bundled Python script to call Sentry's REST API with filters for org, project, environment, and time range. It provides read-only access to recent errors for quick triage without modifying data.

How do I fetch detailed event data for a specific Sentry issue?

Fetch detailed Sentry issue information and related events by executing the bundled Python script against Sentry's REST endpoints. This read-only method retrieves specific issue details and event data for incident review without modifying the original records.

Do I need an auth token to access Sentry issues and events?

Yes, you need to set the SENTRY_AUTH_TOKEN in your environment to access Sentry issues and events. You can optionally export SENTRY_BASE_URL if needed, ensuring deterministic API calls to Sentry's REST endpoints for read-only data retrieval.

Can I use this approach for read-only incident review without modifying Sentry data?

Yes, this approach provides strictly read-only access to Sentry issues and events for incident review and health checks. It uses a bundled Python script for deterministic API calls, ensuring you can triage incidents quickly without modifying any data.

What's the best way to triage Sentry errors across multiple projects quickly?

The best way to triage Sentry errors quickly is using a script-driven interface that lists issues with filters like org, project, environment, and time range. This read-only method enables on-call engineers to surface recent errors for fast incident triage.

Are there limitations to accessing Sentry issues via a read-only API script?

The main limitation of accessing Sentry issues via a read-only API script is the inability to modify, resolve, or update issue statuses. It is designed strictly for listing issues, retrieving details, and accessing events for health checks and incident review.