Labsco
utapyngo logo

sentry-mcp-rs

โ˜… 8

from utapyngo

A fast, lightweight MCP server for Sentry, written in Rust.

๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅโœ“ VerifiedAccount requiredAdvanced setup

sentry-mcp

A fast, lightweight MCP server for Sentry, written in Rust.

Why sentry-mcp?

Compared to the official Node.js server:

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

Features

This MCP server provides tools to interact with Sentry's API:

  • get_issue_details - Retrieve detailed information about a Sentry issue including metadata, tags, stacktraces, and optionally a specific event
  • get_trace_details - Retrieve trace details including span tree and timing information for distributed tracing analysis
  • search_issue_events - Search events within an issue using Sentry's query syntax

Development

Clone the repository and create a .env file:

git clone https://github.com/utapyngo/sentry-mcp-rs.git
cd sentry-mcp-rs
cp .env.example .env
# Edit .env with your credentials

Build and test with MCP Inspector:

cargo build --release
npx @modelcontextprotocol/inspector ./run.sh

Or configure MCP client to use the script:

{
  "mcpServers": {
    "sentry": {
      "command": "/path/to/sentry-mcp-rs/run.sh"
    }
  }
}

Tools

get_issue_details

Retrieve detailed information about a specific Sentry issue.

Parameters:

  • issue_url - Full Sentry issue URL (alternative to the parameters below)
  • organization_slug - Organization slug (required if issue_url not provided)
  • issue_id - Issue ID like PROJECT-123 or numeric ID (required if issue_url not provided)
  • event_id - Specific event ID to fetch instead of latest (optional)

get_trace_details

Retrieve trace details for distributed tracing analysis.

Parameters:

  • organization_slug - Organization slug
  • trace_id - 32-character hex trace ID

search_issue_events

Search events within an issue using Sentry's query syntax.

Parameters:

  • organization_slug - Organization slug
  • issue_id - Issue ID (e.g., PROJECT-123)
  • query - Optional Sentry search query
  • limit - Maximum events to return (default: 10, max: 100)
  • sort - Sort order: newest (default) or oldest