(id: string, enabled: boolean)
| 446 | } |
| 447 | |
| 448 | async setPluginEnabled(id: string, enabled: boolean): Promise<void> { |
| 449 | this.ensureOpen(); |
| 450 | await this.rpc.setPluginEnabled(id, enabled); |
| 451 | } |
| 452 | |
| 453 | async setPluginMcpServerEnabled( |
| 454 | id: string, |
no test coverage detected