Sentry MCP
Sentry.io integration for error tracking, issue management, and application monitoring.
автор: Sentry
curl -fsSL https://vibebaza.com/i/sentry | bash
The Sentry MCP server provides integration with Sentry.io for error tracking and application monitoring. It enables Claude to view issues, analyze errors, and help with debugging.
Installation
Using uvx (recommended):
bash
uvx mcp-server-sentry
Using pip:
bash
pip install mcp-server-sentry
Configuration
Add to your Claude Code settings:
{
"mcpServers": {
"sentry": {
"command": "uvx",
"args": ["mcp-server-sentry"],
"env": {
"SENTRY_AUTH_TOKEN": "your_auth_token_here"
}
}
}
}
Getting an Auth Token
- Log in to Sentry.io
- Go to Settings → Auth Tokens
- Create a new token with the following scopes:
project:readissue:readevent:readorg:read
Available Tools
list_organizations
List all organizations you have access to.
list_organizations(): OrganizationList
list_projects
List projects in an organization.
list_projects(organization_slug: string): ProjectList
list_issues
List issues for a project.
list_issues(
organization_slug: string,
project_slug: string,
query?: string
): IssueList
get_issue
Get detailed information about an issue.
get_issue(issue_id: string): IssueDetails
get_issue_events
Get events associated with an issue.
get_issue_events(issue_id: string): EventList
resolve_issue
Resolve an issue.
resolve_issue(issue_id: string): ResolveResult
Features
- View unresolved issues
- Analyze error stack traces
- See error frequency and impact
- Track issue status and assignments
- Access event details and breadcrumbs
Usage Example
Claude, show me the most recent unresolved issues in our
production project and analyze the top error's stack trace.
Use Cases
- Debugging production errors
- Prioritizing bug fixes
- Understanding error patterns
- Monitoring application health
- Investigating user-reported issues