* 更新客户端配置
(config: Partial<MCPClientConfig>)
| 114 | * 更新客户端配置 |
| 115 | */ |
| 116 | updateClientConfig(config: Partial<MCPClientConfig>): void { |
| 117 | this.config.client = { |
| 118 | ...this.config.client, |
| 119 | ...config, |
| 120 | }; |
| 121 | this.saveConfig(); |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * 获取客户端配置 |
nothing calls this directly
no test coverage detected