(config: ConfigV1.Info)
| 60 | } |
| 61 | |
| 62 | function oauthServers(config: ConfigV1.Info) { |
| 63 | return configuredServers(config).filter( |
| 64 | (entry): entry is [string, McpRemote] => isMcpRemote(entry[1]) && entry[1].oauth !== false, |
| 65 | ) |
| 66 | } |
| 67 | |
| 68 | function listState() { |
| 69 | return Effect.gen(function* () { |
no test coverage detected