Why does Sentry MCP report no unresolved issues when my dashboard shows hundreds?
This is the classic silent failure: no error is thrown because authentication succeeded — but you are querying the wrong data plane. Sentry shards data by region (US vs EU) and by organization slug; a token issued against sentry.io cannot see eu.sentry.io events, and the server returns an empty list instead of a 401. The engineering fix: pin the correct host (SENTRY_HOST=https://eu.sentry.io or your self-hosted domain), explicitly pass the project slug in your prompt, and confirm the token org scope. If issues appear immediately after the host override, you were silently querying an empty region.