Supercharge your error monitoring and application reliability with Sentry — the industry-leading platform for real-time error tracking, performance monitoring, and release management. Seamlessly integrate Sentry into your automated agent workflows to easily monitor issues, track critical events, manage projects, and orchestrate releases across all your applications and services.
With the Sentry tool, you can:
- Monitor and triage issues: Fetch comprehensive lists of issues using the
sentry_issues_list operation and retrieve detailed information on individual errors and bugs via sentry_issues_get. Instantly access metadata, tags, stack traces, and statistics to reduce mean time to resolution.
- Track event data: Analyze specific error and event instances with
sentry_events_list and sentry_events_get, providing deep insight into error occurrences and user impact.
- Manage projects and teams: Use
sentry_projects_list and sentry_project_get to enumerate and review all your Sentry projects, ensuring smooth team collaboration and centralized configuration.
- Coordinate releases: Automate version tracking, deployment health, and change management across your codebase with operations like
sentry_releases_list, sentry_release_get, and more.
- Gain powerful application insights: Leverage advanced filters and queries to find unresolved or high-priority issues, aggregate event statistics over time, and track regressions as your codebase evolves.
Sentry's integration empowers engineering and DevOps teams to detect issues early, prioritize the most impactful bugs, and continuously improve application health across development stacks. Programmatically orchestrate workflow automation for modern observability, incident response, and release lifecycle management—reducing downtime and increasing user satisfaction.
Key Sentry operations available:
sentry_issues_list: List Sentry issues for organizations and projects, with powerful search and filtering.
sentry_issues_get: Retrieve detailed information for a specific Sentry issue.
sentry_events_list: Enumerate the events for a particular issue for root-cause analysis.
sentry_events_get: Get full detail on an individual event, including stack traces, context, and metadata.
sentry_projects_list: List all Sentry projects within your organization.
sentry_project_get: Retrieve configuration and details for a specific project.
sentry_releases_list: List recent releases and their deployment status.
sentry_release_get: Retrieve detailed release information, including associated commits and issues.
Whether you're proactively managing app health, troubleshooting production errors, or automating release workflows, Sentry equips you with world-class monitoring, actionable alerts, and seamless DevOps integration. Boost your software quality and search visibility by leveraging Sentry for error tracking, observability, and release management—all from your agentic workflows.
Integrate Sentry into the workflow. Monitor issues, manage projects, track events, and coordinate releases across your applications.
List issues from Sentry for a specific organization and optionally a specific project. Returns issue details including status, error counts, and last seen timestamps.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Sentry API authentication token |
organizationSlug | string | Yes | The slug of the organization |
projectSlug | string | No | Filter issues by specific project slug (optional) |
query | string | No | Search query to filter issues. Supports Sentry search syntax (e.g., "is:unresolved", "level:error") |
statsPeriod | string | No | Time period for stats (e.g., "24h", "7d", "30d"). Defaults to 24h if not specified. |
cursor | string | No | Pagination cursor for retrieving next page of results |
limit | number | No | Number of issues to return per page (default: 25, max: 100) |
status | string | No | Filter by issue status: unresolved, resolved, ignored, or muted |
sort | string | No | Sort order: date, new, freq, priority, or user (default: date) |
| Parameter | Type | Description |
|---|
issues | array | List of Sentry issues |
Retrieve detailed information about a specific Sentry issue by its ID. Returns complete issue details including metadata, tags, and statistics.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Sentry API authentication token |
organizationSlug | string | Yes | The slug of the organization |
issueId | string | Yes | The unique ID of the issue to retrieve |
| Parameter | Type | Description |
|---|
issue | object | Detailed information about the Sentry issue |
Update a Sentry issue by changing its status, assignment, bookmark state, or other properties. Returns the updated issue details.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Sentry API authentication token |
organizationSlug | string | Yes | The slug of the organization |
issueId | string | Yes | The unique ID of the issue to update |
status | string | No | New status for the issue: resolved, unresolved, ignored, or resolvedInNextRelease |
assignedTo | string | No | User ID or email to assign the issue to. Use empty string to unassign. |
isBookmarked | boolean | No | Whether to bookmark the issue |
isSubscribed | boolean | No | Whether to subscribe to issue updates |
isPublic | boolean | No | Whether the issue should be publicly visible |
| Parameter | Type | Description |
|---|
issue | object | The updated Sentry issue |
List all projects in a Sentry organization. Returns project details including name, platform, teams, and configuration.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Sentry API authentication token |
organizationSlug | string | Yes | The slug of the organization |
cursor | string | No | Pagination cursor for retrieving next page of results |
limit | number | No | Number of projects to return per page (default: 25, max: 100) |
| Parameter | Type | Description |
|---|
projects | array | List of Sentry projects |
Retrieve detailed information about a specific Sentry project by its slug. Returns complete project details including teams, features, and configuration.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Sentry API authentication token |
organizationSlug | string | Yes | The slug of the organization |
projectSlug | string | Yes | The ID or slug of the project to retrieve |
| Parameter | Type | Description |
|---|
project | object | Detailed information about the Sentry project |
Create a new Sentry project in an organization. Requires a team to associate the project with. Returns the created project details.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Sentry API authentication token |
organizationSlug | string | Yes | The slug of the organization |
name | string | Yes | The name of the project |
teamSlug | string | Yes | The slug of the team that will own this project |
slug | string | No | URL-friendly project identifier (auto-generated from name if not provided) |
platform | string | No | Platform/language for the project (e.g., javascript, python, node, react-native). If not specified, defaults to "other" |
defaultRules | boolean | No | Whether to create default alert rules (default: true) |
| Parameter | Type | Description |
|---|
project | object | The newly created Sentry project |
Update a Sentry project by changing its name, slug, platform, or other settings. Returns the updated project details.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Sentry API authentication token |
organizationSlug | string | Yes | The slug of the organization |
projectSlug | string | Yes | The slug of the project to update |
name | string | No | New name for the project |
slug | string | No | New URL-friendly project identifier |
platform | string | No | New platform/language for the project (e.g., javascript, python, node) |
isBookmarked | boolean | No | Whether to bookmark the project |
digestsMinDelay | number | No | Minimum delay (in seconds) for digest notifications |
digestsMaxDelay | number | No | Maximum delay (in seconds) for digest notifications |
| Parameter | Type | Description |
|---|
project | object | The updated Sentry project |
List events from a Sentry project. Can be filtered by issue ID, query, or time period. Returns event details including context, tags, and user information.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Sentry API authentication token |
organizationSlug | string | Yes | The slug of the organization |
projectSlug | string | Yes | The slug of the project to list events from |
issueId | string | No | Filter events by a specific issue ID |
query | string | No | Search query to filter events. Supports Sentry search syntax (e.g., "user.email:*@example.com") |
cursor | string | No | Pagination cursor for retrieving next page of results |
limit | number | No | Number of events to return per page (default: 50, max: 100) |
statsPeriod | string | No | Time period to query (e.g., "24h", "7d", "30d"). Defaults to 90d if not specified. |
| Parameter | Type | Description |
|---|
events | array | List of Sentry events |
Retrieve detailed information about a specific Sentry event by its ID. Returns complete event details including stack traces, breadcrumbs, context, and user information.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Sentry API authentication token |
organizationSlug | string | Yes | The slug of the organization |
projectSlug | string | Yes | The slug of the project |
eventId | string | Yes | The unique ID of the event to retrieve |
| Parameter | Type | Description |
|---|
event | object | Detailed information about the Sentry event |
List releases for a Sentry organization or project. Returns release details including version, commits, deploy information, and associated projects.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Sentry API authentication token |
organizationSlug | string | Yes | The slug of the organization |
projectSlug | string | No | Filter releases by specific project slug (optional) |
query | string | No | Search query to filter releases (e.g., version name pattern) |
cursor | string | No | Pagination cursor for retrieving next page of results |
limit | number | No | Number of releases to return per page (default: 25, max: 100) |
| Parameter | Type | Description |
|---|
releases | array | List of Sentry releases |
Create a new release in Sentry. A release is a version of your code deployed to an environment. Can include commit information and associated projects. Returns the created release details.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Sentry API authentication token |
organizationSlug | string | Yes | The slug of the organization |
version | string | Yes | Version identifier for the release (e.g., "2.0.0", "my-app@1.0.0", or a git commit SHA) |
projects | string | Yes | Comma-separated list of project slugs to associate with this release |
ref | string | No | Git reference (commit SHA, tag, or branch) for this release |
url | string | No | URL pointing to the release (e.g., GitHub release page) |
dateReleased | string | No | ISO 8601 timestamp for when the release was deployed (defaults to current time) |
commits | string | No | JSON array of commit objects with id, repository (optional), and message (optional). Example: [{"id":"abc123","message":"Fix bug"}] |
| Parameter | Type | Description |
|---|
release | object | The newly created Sentry release |
Create a deploy record for a Sentry release in a specific environment. Deploys track when and where releases are deployed. Returns the created deploy details.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Sentry API authentication token |
organizationSlug | string | Yes | The slug of the organization |
version | string | Yes | Version identifier of the release being deployed |
environment | string | Yes | Environment name where the release is being deployed (e.g., "production", "staging") |
name | string | No | Optional name for this deploy (e.g., "Deploy v2.0 to Production") |
url | string | No | URL pointing to the deploy (e.g., CI/CD pipeline URL) |
dateStarted | string | No | ISO 8601 timestamp for when the deploy started (defaults to current time) |
dateFinished | string | No | ISO 8601 timestamp for when the deploy finished |
| Parameter | Type | Description |
|---|
deploy | object | The newly created deploy record |
- Category:
tools
- Type:
sentry