The file path where a server's config lives (for the TUI detail view).
(name: string)
| 283 | |
| 284 | /** The file path where a server's config lives (for the TUI detail view). */ |
| 285 | getConfigPath(name: string): string | undefined { |
| 286 | const cfg = this.configs.get(name) |
| 287 | if (!cfg) return undefined |
| 288 | return configPathForScope(this.cwd, cfg.scope) |
| 289 | } |
| 290 | |
| 291 | /** True if a server uses OAuth (explicitly configured or auto-detected from |
| 292 | * a 401/needs-auth state). Remote servers in needs-auth state are treated |
no test coverage detected