(id: string, enabled: boolean)
| 612 | } |
| 613 | |
| 614 | async setPluginEnabled(id: string, enabled: boolean): Promise<void> { |
| 615 | const rpc = await this.getRpc(); |
| 616 | return rpc.setPluginEnabled({ id, enabled }); |
| 617 | } |
| 618 | |
| 619 | async setPluginMcpServerEnabled( |
| 620 | id: string, |
nothing calls this directly
no test coverage detected