---
title: "Sentry MCP server – install in Claude Desktop and Cursor"
summary: "Sentry's official MCP server that lets an agent read issues, events, and release health from your Sentry organisation."
canonical: https://unlocksaas.com/mcp-tools/sentry
updated: 2026-05-22
publisher: "Unlock SaaS"
author: "Maryan"
license: All rights reserved. Quotation with attribution permitted.
---

# Sentry MCP server

> Sentry's official MCP server that lets an agent read issues, events, and release health from your Sentry organisation.

- Vendor: Sentry
- Vendor URL: https://docs.sentry.io
- Category: Indie SaaS infrastructure
- Distribution: npm package (runs locally)
- Install handle: @sentry/mcp-server
- Official: yes
- Access: Requires a Sentry auth token with read scopes.

## TL;DR

Sentry's official MCP server exposes your error-tracking project to MCP-aware clients. The agent can list new issues, inspect a stack trace, read release health, and reason about regressions without you tab-switching. The right server when something broke in production and you want Claude to help you triage.

## Why an indie SaaS founder cares

When a production error hits, the difference between five minutes and an hour is often whether the assistant can read the actual stack trace. This server gives Claude direct access to your Sentry issues – paste an error ID into the chat and let the agent walk the trace, recent commits, and likely cause.

## What an agent can do with it

- **List and inspect issues** – Read recent issues, stack traces, breadcrumbs, and event counts.
- **Read release health** – Compare error rates between releases to spot regressions.
- **Search by tag or fingerprint** – Slice issues by environment, release, or user tag.

## Install in Claude Desktop

```json
{
  "mcpServers": {
    "sentry": {
      "command": "npx",
      "args": ["-y", "@sentry/mcp-server"]
    }
  }
}
```

## Install in Cursor

```json
{
  "mcpServers": {
    "sentry": {
      "command": "npx",
      "args": ["-y", "@sentry/mcp-server"]
    }
  }
}
```

## FAQ

**Can the agent resolve or assign issues?**

Only if the auth token grants write scopes. Prefer read-only by default.

Last verified: 2026-05-22.

---

Canonical URL: https://unlocksaas.com/mcp-tools/sentry
Publisher: Unlock SaaS (https://unlocksaas.com)
Contact: maryan@unlocksaas.com