Sentry MCP Rs MCP Server

A fast, lightweight [MCP](https://modelcontextprotocol.io/) server for Sentry, written in Rust.

Local serverstdio

What is the Sentry MCP Rs MCP server?

A fast, lightweight MCP server for Sentry, written in Rust. That is what the sentry mcp rs mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

  • Memory: — 10x less RAM usage
  • Startup: — instant cold start
  • Disk: — single binary, no runtime dependencies
  • Tokens: — fewer tools = smaller tool list in context

The tools it exposes

The server publishes 3 tools. What each one is for:

  • get_issue_details — Retrieve detailed information about a specific Sentry issue
  • get_trace_details — The get_trace_details tool exposed by this server
  • search_issue_events — The search_issue_events tool exposed by this server

Getting it running

Installation goes through your MCP client rather than a global install: point it at @modelcontextprotocol/inspector on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

What it needs from you

Configuration is passed through the environment: SENTRY_AUTH_TOKEN, SENTRY_HOST. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

How it compares

Plenty of monitoring and observability servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Sentry MCP Rs's toolset — get_issue_details, get_trace_details, search_issue_events — is a fair guide to whether it matches your workflow. It is maintained by utapyngo; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
get_issue_detailsRetrieve detailed information about a specific Sentry issue.
get_trace_detailsThe get_trace_details tool exposed by this server.
search_issue_eventsThe search_issue_events tool exposed by this server.

How to install the Sentry MCP Rs MCP server

Or without installation using mise:

```json
{
  "mcpServers": {
    "sentry": {
      "command": "mise",
      "args": ["x", "github:utapyngo/sentry-mcp-rs", "--", "sentry-mcp"],
      "env": {
        "SENTRY_AUTH_TOKEN": "your_token_here",
        "SENTRY_HOST": "sentry.io"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
SENTRY_AUTH_TOKENCredential the server authenticates with.Yes
SENTRY_HOSTEndpoint or connection string the server talks to.Optional

Example prompts to try

  • Use Sentry MCP Rs to get issue details.
  • Use Sentry MCP Rs to get trace details.
  • Use Sentry MCP Rs to search issue events.

Frequently asked questions

It connects Sentry MCP Rs to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (get_issue_details, get_trace_details, search_issue_events) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Sentry MCP Rs directly.