(config: ConfigV1.Info)
| 56 | } |
| 57 | |
| 58 | function configuredServers(config: ConfigV1.Info) { |
| 59 | return Object.entries(config.mcp ?? {}).filter((entry): entry is [string, McpConfigured] => isMcpConfigured(entry[1])) |
| 60 | } |
| 61 | |
| 62 | function oauthServers(config: ConfigV1.Info) { |
| 63 | return configuredServers(config).filter( |
no test coverage detected