Get the status for a single server.
(&self, name: &str)
| 682 | |
| 683 | /// Get the status for a single server. |
| 684 | pub async fn get_status(&self, name: &str) -> Option<McpStatus> { |
| 685 | self.statuses.read().await.get(name).cloned() |
| 686 | } |
| 687 | |
| 688 | /// Return all servers with their current status (including those that |
| 689 | /// are not connected). |