Some checks failed
CI / Check / macos-latest (push) Has been cancelled
CI / Check / ubuntu-latest (push) Has been cancelled
CI / Check / windows-latest (push) Has been cancelled
CI / Test / macos-latest (push) Has been cancelled
CI / Test / ubuntu-latest (push) Has been cancelled
CI / Test / windows-latest (push) Has been cancelled
CI / Clippy (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / Security Audit (push) Has been cancelled
CI / Secrets Scan (push) Has been cancelled
CI / Install Script Smoke Test (push) Has been cancelled
36 lines
1.1 KiB
TOML
36 lines
1.1 KiB
TOML
id = "sentry"
|
|
name = "Sentry"
|
|
description = "Monitor and manage Sentry error tracking, issues, and releases through the MCP server"
|
|
category = "devtools"
|
|
icon = "🐛"
|
|
tags = ["monitoring", "errors", "debugging", "observability", "apm"]
|
|
|
|
[transport]
|
|
type = "stdio"
|
|
command = "npx"
|
|
args = ["@modelcontextprotocol/server-sentry"]
|
|
|
|
[[required_env]]
|
|
name = "SENTRY_AUTH_TOKEN"
|
|
label = "Sentry Auth Token"
|
|
help = "An authentication token with project:read and event:read scopes"
|
|
is_secret = true
|
|
get_url = "https://sentry.io/settings/account/api/auth-tokens/"
|
|
|
|
[[required_env]]
|
|
name = "SENTRY_ORG_SLUG"
|
|
label = "Sentry Organization Slug"
|
|
help = "Your Sentry organization slug (found in Settings > General)"
|
|
is_secret = false
|
|
get_url = ""
|
|
|
|
[health_check]
|
|
interval_secs = 60
|
|
unhealthy_threshold = 3
|
|
|
|
setup_instructions = """
|
|
1. Go to Sentry > Settings > Auth Tokens (https://sentry.io/settings/account/api/auth-tokens/) and create a new token with 'project:read' and 'event:read' scopes.
|
|
2. Find your organization slug in Sentry > Settings > General Settings.
|
|
3. Paste the auth token and organization slug into the fields above.
|
|
"""
|