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"
}
}
}
}
}