drio
Open app

Sentry Issue Collector

Source

Catalog onlyCatalog onlySTDIO

Overview

Sentry Issue Collector is a server designed to retrieve a list of issues from Sentry, facilitating the management and monitoring of application errors.

To use the Sentry Issue Collector, follow these steps:

  1. Build the tool using the command: go build cmd/server/main.go.
  2. Set up the MCP server configuration with the required parameters such as token, organization, and project.
  3. Run the server to collect issues from Sentry.
  • Retrieves issue lists from Sentry. - Configurable via JSON setup for different projects. - Integrates with the Model Context Protocol (MCP) for enhanced functionality.
  1. Monitoring application errors in real-time.
  2. Collecting and analyzing issues for debugging purposes.
  3. Integrating with other tools for comprehensive error management.

Add to your AI client

Use these steps to connect Sentry Issue Collector in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "go-sentry-mcp-server-obutora": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-go-sentry-mcp-server-obutora"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "go-sentry-mcp-server-obutora": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-go-sentry-mcp-server-obutora"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "go-sentry-mcp-server-obutora": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-go-sentry-mcp-server-obutora"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "go-sentry-mcp-server-obutora": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-go-sentry-mcp-server-obutora"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "go-sentry-mcp-server-obutora": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-go-sentry-mcp-server-obutora"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "go-sentry-mcp-server-obutora": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-go-sentry-mcp-server-obutora"
      ]
    }
  }
}

FAQ

What is the purpose of the Sentry Issue Collector?

It is used to collect and manage issues from Sentry for better error tracking and resolution.

Is there a specific setup required?

Yes, you need to configure the MCP server with the appropriate parameters before use.

Can it be used with any Sentry project?

Yes, as long as you provide the correct organization and project details in the configuration.