| 363 | /// High-level authentication status for an MCP server. |
| 364 | #[derive(Debug, Clone, Copy, PartialEq, Eq)] |
| 365 | pub enum AuthStatus { |
| 366 | Authenticated, |
| 367 | Expired, |
| 368 | NotAuthenticated, |
| 369 | } |
| 370 | |
| 371 | /// Registry of OAuth managers, keyed by MCP server name. |
| 372 | pub struct OAuthRegistry { |
nothing calls this directly
no outgoing calls
no test coverage detected