Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
SENTRY_DSN | Yes | Sentry Data Source Name for your project | |
SENTRY_ORG | Yes | Your Sentry organization slug | |
SENTRY_API_URL | No | Sentry API URL | https://sentry.io/api/0/ |
SENTRY_RELEASE | No | Release identifier for Sentry | |
SENTRY_AUTH_TOKEN | Yes | Authentication token for Sentry API | |
SENTRY_ENVIRONMENT | No | Environment name for Sentry | production |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
sentry_capture_exception | Capture and send an exception to Sentry |
sentry_capture_message | Capture and send a message to Sentry |
sentry_add_breadcrumb | Add a breadcrumb for debugging context |
sentry_set_user | Set user context for Sentry |
sentry_set_tag | Set a tag that will be sent with all events |
sentry_set_context | Set custom context data |
sentry_start_transaction | Start a performance monitoring transaction |
sentry_finish_transaction | Finish the current transaction |
sentry_start_session | Start a new session for release health monitoring |
sentry_end_session | End the current session with a specific status |
sentry_set_release | Set the release version for release health tracking |
sentry_capture_session | Manually capture a session for server-mode/request-mode |
sentry_list_projects | List all projects in the organization |
sentry_list_issues | List issues for a project |
sentry_create_release | Create a new release |
sentry_list_releases | List releases for a project |
sentry_get_organization_stats | Get organization statistics |
sentry_create_alert_rule | Create an alert rule for a project |
sentry_resolve_short_id | Retrieve details about an issue using its short ID. Maps short IDs to issue details, project context and status. |
sentry_get_event | Retrieve a specific Sentry event from an issue. Requires issue ID/URL and event ID. |
sentry_list_error_events_in_project | List error events from a specific Sentry project. View recent errors, frequency patterns and occurrence timestamps. |
sentry_create_project | Create a new project in Sentry. Track deployments, releases and health metrics. |
sentry_list_issue_events | List events for a specific Sentry issue. Analyze event details, metadata and patterns. |
sentry_get_issue | Retrieve and analyze a Sentry issue. Accepts issue URL or ID. |
sentry_list_organization_replays | List replays from a Sentry organization. Monitor user sessions, interactions, errors and experience issues. |
sentry_setup_project | Set up Sentry for a project returning a DSN and instructions for setup. |
sentry_search_errors_in_file | Search for Sentry errors occurring in a specific file. Find all issues related to a particular file path or filename. |