A config by name (for the TUI detail view).
(name: string)
| 278 | |
| 279 | /** A config by name (for the TUI detail view). */ |
| 280 | getConfig(name: string): ScopedMcpServerConfig | undefined { |
| 281 | return this.configs.get(name) |
| 282 | } |
| 283 | |
| 284 | /** The file path where a server's config lives (for the TUI detail view). */ |
| 285 | getConfigPath(name: string): string | undefined { |