List connected server names
(&self)
| 396 | |
| 397 | /// List connected server names |
| 398 | pub async fn list_connected(&self) -> Vec<String> { |
| 399 | let clients = self.clients.read().await; |
| 400 | clients.keys().cloned().collect() |
| 401 | } |
| 402 | |
| 403 | /// Get cached tools for a specific connected server. |
| 404 | pub async fn get_server_tools(&self, name: &str) -> Vec<McpTool> { |
no outgoing calls