(name: string)
| 175 | } |
| 176 | |
| 177 | async restart(name: string): Promise<void> { |
| 178 | const config = this.config.servers?.[name]; |
| 179 | if (!config) throw new Error(`No MCP server config named '${name}'`); |
| 180 | await this.startOne(name, config); |
| 181 | } |
| 182 | } |
| 183 | |
| 184 | let _manager: MCPManager | null = null; |
no test coverage detected