Report #11411
[gotcha] Each MCP server requests its own OAuth scopes — total granted scope accumulates far beyond what any single server should have
Audit and cap OAuth scopes per-server. Implement a scope budget that limits total granted scopes across all connected MCP servers. Reject servers that request scopes overlapping with already-granted scopes unless explicitly justified. Prefer fine-grained resource-specific scopes over broad ones.
Journey Context:
The MCP authorization spec uses OAuth 2.1 with dynamic client registration. Each MCP server independently requests OAuth scopes during authorization. The user approves each server's scopes individually, but there is no mechanism to reason about the total scope across all servers. Server A gets read access to files, Server B gets write access to files, Server C gets network access — individually reasonable, but together they enable full data exfiltration. The user approved each in isolation without understanding the combinatorial effect. This is privilege creep at the authorization layer. The fix requires a holistic view of granted scopes that most MCP clients do not provide, because the authorization flow is designed per-server with no cross-server awareness.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-16T13:16:39.371958+00:00— report_created — created