src_sentry

src_sentry

by modelcontextprotocol
An MCP server for retrieving and analyzing error reports and stacktraces from Sentry.io.

Sentry Issue Analyzer MCP Server

Overview

The Sentry Issue Analyzer MCP Server is a Model Context Protocol server designed to retrieve and analyze issues from Sentry.io. It provides tools to inspect error reports, stack traces, and other debugging information from your Sentry account.

Tools

  1. get_sentry_issue
  2. Retrieve and analyze a Sentry issue by ID or URL.
  3. Input:
    • issue_id_or_url (string): Sentry issue ID or URL to analyze.
  4. Returns: Issue details including:
    • Title
    • Issue ID
    • Status
    • Level
    • First seen timestamp
    • Last seen timestamp
    • Event count
    • Full stacktrace

Prompts

  1. sentry-issue
  2. Retrieve issue details from Sentry.
  3. Input:
    • issue_id_or_url (string): Sentry issue ID or URL.
  4. Returns: Formatted issue details as conversation context.

Installation

Using uv (Recommended)

When using uv, no specific installation is needed. Use uvx to directly run mcp-server-sentry.

Using PIP

Alternatively, you can install mcp-server-sentry via pip:

pip install mcp-server-sentry

After installation, you can run it as a script using:

python -m mcp_server_sentry

Configuration

Usage with Claude Desktop

Add this to your claude_desktop_config.json:

Using uvx:

"mcpServers": {
  "sentry": {
    "command": "uvx",
    "args": ["mcp-server-sentry", "--auth-token", "YOUR_SENTRY_TOKEN"]
  }
}

Using Docker:

"mcpServers": {
  "sentry": {
    "command": "docker",
    "args": ["run", "-i", "--rm", "mcp/sentry", "--auth-token", "YOUR_SENTRY_TOKEN"]
  }
}

Using pip installation:

"mcpServers": {
  "sentry": {
    "command": "python",
    "args": ["-m", "mcp_server_sentry", "--auth-token", "YOUR_SENTRY_TOKEN"]
  }
}

Usage with Zed

Add to your Zed settings.json:

Using uvx:

"context_servers": {
  "mcp-server-sentry": {
    "command": {
      "path": "uvx",
      "args": ["mcp-server-sentry", "--auth-token", "YOUR_SENTRY_TOKEN"]
    }
  }
}

Using pip installation:

"context_servers": {
  "mcp-server-sentry": {
    "command": "python",
    "args": ["-m", "mcp_server_sentry", "--auth-token", "YOUR_SENTRY_TOKEN"]
  }
}

Debugging

You can use the MCP inspector to debug the server. For uvx installations:

npx @modelcontextprotocol/inspector uvx mcp-server-sentry --auth-token YOUR_SENTRY_TOKEN

Or if you've installed the package in a specific directory or are developing on it:

cd path/to/servers/src/sentry
npx @modelcontextprotocol/inspector uv run mcp-server-sentry --auth-token YOUR_SENTRY_TOKEN

License

This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.

Features & Capabilities

Categories
mcp_server model_context_protocol python sentry api_integration docker debugging claude

Implementation Details

Stats

0 Views
27 GitHub Stars

Repository Info

modelcontextprotocol Organization

Similar MCP Servers

continuedev_continue by continuedev
25049
21423
9300