(
id: string,
server: string,
enabled: boolean,
)
| 617 | } |
| 618 | |
| 619 | async setPluginMcpServerEnabled( |
| 620 | id: string, |
| 621 | server: string, |
| 622 | enabled: boolean, |
| 623 | ): Promise<void> { |
| 624 | const rpc = await this.getRpc(); |
| 625 | return rpc.setPluginMcpServerEnabled({ id, server, enabled }); |
| 626 | } |
| 627 | |
| 628 | async removePlugin(id: string): Promise<void> { |
| 629 | const rpc = await this.getRpc(); |
nothing calls this directly
no test coverage detected