Sentry
Pull live errors, issues, and replays from Sentry into Claude. Great for debugging sessions where the model can see what actually broke in prod.
Delv Safety Grade: A
Score 84/100 · assessed 2026-04-22
Sentry's official MCP server provides read-only access to production error data, issues, and session replays. The maintainer is Sentry itself, a well-established observability vendor with strong reputation in the developer tools space. Distribution via npm with standard package management is solid. The server requires a Sentry auth token which grants read access to potentially sensitive production data including stack traces, user sessions, and error context. Permissions are appropriately scoped to read-only API calls, though the data itself can be highly sensitive depending on what your application logs. No known security incidents. Transparency is good with open source code and documentation, though changelog and issue tracking could be more prominent. The main risk is credential management: a leaked SENTRY_AUTH_TOKEN exposes all error data the token can access.
Lethal Trifecta (prompt-injection exposure)
TRIFECTA RISKError payloads can include attacker-controlled strings (ingested untrusted input), project data is private, outbound via API.
Green flags
- Official vendor-maintained server from established observability company
- Read-only API access, no write or delete operations
- Standard npm distribution with versioning
- Open source with clear documentation
- Scoped to single domain (error monitoring)
Red flags
- Auth token grants access to potentially sensitive production error data
- Session replays may contain PII or sensitive user interactions
- Stack traces could expose internal architecture details
- No apparent token scoping guidance in quick-start docs
Permissions requested
Install
npx -y @sentry/mcp-server
{
"sentry": {
"command": "npx",
"args": ["-y", "@sentry/mcp-server"],
"env": { "SENTRY_AUTH_TOKEN": "sntrys_..." }
}
}SENTRY_AUTH_TOKENReview
Install this if you're already using Sentry in production and you want Claude to help triage errors during incidents or retrospectives. Skip it if you're not shipping live code or if you prefer the Sentry web UI for everything. It's a time-saver for teams who debug frequently, not a toy.
Good at
- Pulls live stack traces and replays directly into Claude, which beats copy-pasting from the Sentry UI during triage.
- Grouping errors by root cause is genuinely useful for post-deploy retrospectives or spotting patterns in a flood of alerts.
- Official vendor support means it tracks Sentry's API changes and won't break unexpectedly.
- Works across Claude Desktop, Cursor, and Windsurf without needing separate builds.
Watch out
- Read-only: you can't mark issues as resolved, assign them, or update Sentry state from Claude.
- Assumes you know your Sentry org and project slugs, which aren't always obvious if you work across multiple teams.
- If your Sentry instance is noisy with low-signal errors, Claude will surface that noise without filtering it for you.
- No built-in rate limiting guidance, so heavy querying might hit Sentry API limits on free tiers.
Use cases
- Asking Claude to debug a live error
- Surfacing a week's worth of regressions
- Pulling stack traces into a PR review
- Grouping related errors by root cause
Getting started
Works with
Similar MCPs
- GitHubFull GitHub API access - manage repos, issues, PRs, and code search. One of the most useful MCPs for any developer workflow.
- GrafanaGrafana Labs' official MCP. Read dashboards, datasources, alerts, and run Loki/Prometheus queries from inside your agent.
- MCP CLIInteractive CLI inspector for MCP servers supporting OAuth, tool calls, resource reads, and prompt runs.
- GitLabGitLab's hosted MCP server, built into GitLab 18.6+. Manage MRs, browse repos, work with CI pipelines from Claude.