sentry-mcp

sentry-mcp

0

Sentry MCP Server allows users to interact with the Sentry API to manage issues and events within Sentry projects. It supports various tools to fetch and list project data, and can be configured easily with environment variables.

Sentry MCP Server

@zereight/sentry-server

Sentry MCP(Model Context Protocol) Server. Allows interaction with the Sentry API to fetch issue and event details.

Usage

Using with Claude, Roo Code, Cline, etc.

Add the following configuration to your MCP settings file (e.g., mcp_settings.json):

{
  "mcpServers": {
    "sentry-server-npm": {
      "command": "npx",
      "args": [
        "-y",
        "@zereight/sentry-server"
      ],
      "env": {
        "SENTRY_AUTH_TOKEN": "YOUR_SENTRY_AUTH_TOKEN", // Required
        "SENTRY_ORG_SLUG": "YOUR_ORG_SLUG",         // Required: Your Sentry organization slug
        "SENTRY_PROJECT_NAMES": "YOUR_PROJECT1,YOUR_PROJECT2", // Required: Comma-separated Sentry project slugs
        "SENTRY_BASE_URL": "YOUR_SENTRY_BASE_URL"   // Optional: Defaults to https://sentry.io
      },
      "disabled": false
    }
  }
}

Replace placeholder values like "YOUR_SENTRY_AUTH_TOKEN", "YOUR_ORG_SLUG", and "YOUR_PROJECT1,YOUR_PROJECT2" with your actual Sentry details. Provide project slugs separated by commas. Project slugs are used in Sentry URLs (e.g., https://<org-slug>.sentry.io/settings/projects/<project-slug>/). Auth tokens can be generated in User Settings > Auth Tokens.

Using with Cursor (or direct CLI)

When using with Cursor or running directly, you can set up environment variables and run the server as follows:

env SENTRY_AUTH_TOKEN=YOUR_SENTRY_AUTH_TOKEN \
    SENTRY_ORG_SLUG=YOUR_ORG_SLUG \
    SENTRY_PROJECT_NAMES=YOUR_PROJECT1,YOUR_PROJECT2 \
    SENTRY_BASE_URL=YOUR_SENTRY_BASE_URL \
    npx @zereight/sentry-server
  • SENTRY_AUTH_TOKEN (Required): Your Sentry authentication token.
  • SENTRY_ORG_SLUG (Required): The slug of your Sentry organization.
  • SENTRY_PROJECT_NAMES (Required): Comma-separated names (slugs) of your Sentry projects.
  • SENTRY_BASE_URL (Optional): The base URL for your Sentry instance (e.g., for self-hosted). Defaults to https://sentry.io.

Tools đŸ› ī¸

  1. get_sentry_issue

    • Fetches details for a specific Sentry issue. â„šī¸
    • Inputs:
      • issue_id_or_url (string, required): The Sentry issue ID or the full URL of the issue page.
    • Returns: Detailed information about the issue (JSON string).
  2. list_organization_projects

    • Lists all projects for the configured Sentry organization. 📂
    • Inputs: None
    • Returns: A list of project objects (JSON string).
  3. list_project_issues

    • Lists issues for a specific project, with optional filtering. 🐛
    • Inputs:
      • organization_slug (string, optional): The slug of the organization. Defaults to SENTRY_ORG_SLUG env var.
      • project_slug (string, required): The slug of the project to list issues for.
      • query (string, optional): Sentry search query to filter issues (e.g., "is:unresolved", "assignee:me").
      • statsPeriod (string, optional): Time period for statistics (e.g., "24h", "14d", "auto").
      • cursor (string, optional): Pagination cursor for fetching next/previous page.
    • Returns: A list of issue objects and pagination information (JSON string).
  4. get_event_details

    • Gets details for a specific event within a project. 📄
    • Inputs:
      • organization_slug (string, optional): The slug of the organization. Defaults to SENTRY_ORG_SLUG env var.
      • project_slug (string, required): The slug of the project the event belongs to.
      • event_id (string, required): The ID of the event to retrieve.
    • Returns: Detailed information about the specific event (JSON string).

Environment Variable Configuration

Before running the server, you must set the following environment variables:

SENTRY_AUTH_TOKEN=YOUR_SENTRY_AUTH_TOKEN
SENTRY_ORG_SLUG=YOUR_ORG_SLUG
SENTRY_PROJECT_NAMES=YOUR_PROJECT_NAME1,YOUR_PROJECT_NAME2

Optionally, you can also set:

SENTRY_BASE_URL=YOUR_SENTRY_BASE_URL # Default: https://sentry.io

The Inspector will provide a URL to access debugging tools in your browser.

License

MIT License