Home/Servers/Sentry MCP Server

Sentry MCP Server

by Anthropic ยท โญ 987 stars ยท updated 4 months ago

Retrieve and analyze issues from Sentry.io. List issues, get error details, view stack traces, and manage error monitoring directly from your AI assistant.

81
Very Good

Quality Score Breakdown

maintenance82/100
community78/100
documentation82/100
compatibility82/100

Use Cases

  • โœ“view Sentry issues
  • โœ“analyze errors
  • โœ“inspect stack traces
  • โœ“error monitoring

โšก One-Click Install Configs

Copy the config below and paste it into your AI client's config file.

๐Ÿค– Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "sentry": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sentry"
      ],
      "env": {
        "SENTRY_AUTH_TOKEN": "YOUR_SENTRY_TOKEN",
        "SENTRY_ORG": "your-org"
      }
    }
  }
}
โšก Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "sentry": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sentry"
      ],
      "env": {
        "SENTRY_AUTH_TOKEN": "YOUR_SENTRY_TOKEN",
        "SENTRY_ORG": "your-org"
      }
    }
  }
}
๐Ÿ’™ VS Code
.vscode/mcp.json
{
  "mcp": {
    "servers": {
      "sentry": {
        "command": "npx",
        "args": [
          "-y",
          "@modelcontextprotocol/server-sentry"
        ],
        "env": {
          "SENTRY_AUTH_TOKEN": "YOUR_SENTRY_TOKEN",
          "SENTRY_ORG": "your-org"
        }
      }
    }
  }
}
โ† Back to all servers