SentryCompanionMcp

Unofficial Sentry MCP that provide unavailable tools on the official MCP.

sentry-companion-mcp

MCP Badge License: MIT

Unofficial Sentry MCP that provide unavailable tools on the official MCP.

Tools

ToolDescription
get_release_healthCFU, crash-free sessions, session and user counts for a release
get_release_adoptionSession-based and user-based adoption %
compare_releasesSide-by-side CFU comparison between two releases
get_release_new_issuesIssues first seen in a specific release
get_release_regressed_issuesIssues that regressed in a specific release
get_release_deploysDeployment history for a release
add_issue_commentPost a comment on a Sentry issue

Installation

  1. Install uv if you haven't already.
  2. Run once to register with Claude Code:
claude mcp add sentry-companion \
  -e SENTRY_PERSONAL_TOKEN=your_token \
  -e SENTRY_ORG=your-org-slug \
  -e SENTRY_PROJECT=your-project-id \
  -e SENTRY_BASE_URL=https://us.sentry.io \
  -- uvx sentry-companion-mcp

Or add manually to your .mcp.json:

{
  "mcpServers": {
    "sentry-companion": {
      "type": "stdio",
      "command": "uvx",
      "args": ["sentry-companion-mcp"],
      "env": {
        "SENTRY_PERSONAL_TOKEN": "your_token",
        "SENTRY_ORG": "your-org-slug",
        "SENTRY_PROJECT": "your-project-id",
        "SENTRY_BASE_URL": "https://us.sentry.io"
      }
    }
  }
}

Server Terkait