Structurally distinguish a pool (has getServers) from a single client.
(entry: MCPClient | MCPClients)
| 83 | |
| 84 | /** Structurally distinguish a pool (has getServers) from a single client. */ |
| 85 | function isPool(entry: MCPClient | MCPClients): entry is MCPClients { |
| 86 | return 'getServers' in entry |
| 87 | } |
| 88 | |
| 89 | /** |
| 90 | * The flattened view of the `clients` input used to resolve a `serverId` to a |