Skip to content

Sentry Plugin

The Sentry plugin enables per-user OAuth so Slack users can run Sentry investigations through capability-scoped access.

Set redirect URL to:

<base-url>/api/oauth/callback/sentry

Set host env vars:

  • SENTRY_CLIENT_ID
  • SENTRY_CLIENT_SECRET
  1. User runs /sentry auth.
  2. Runtime sends private authorization link.
  3. OAuth callback stores token and can resume the original request.
Terminal window
jr-rpc config set sentry.org getsentry
jr-rpc config set sentry.project my-project
  • /sentry auth completes successfully.
  • A real query returns expected data.
  • Re-auth flow works after token invalidation.
  • 401/403 after issuance: token lacks org access or stale token.
  • Callback errors: redirect URL mismatch or invalid base URL.

Review Credentials & OAuth and Security Hardening.