(id: string, updated: MCPServerConfig)
| 138 | }); |
| 139 | |
| 140 | function updateServer(id: string, updated: MCPServerConfig) { |
| 141 | updateSettings({ |
| 142 | mcpServers: settings.mcpServers.map((s) => (s.id === id ? updated : s)), |
| 143 | }); |
| 144 | } |
| 145 | |
| 146 | function deleteServer(id: string) { |
| 147 | updateSettings({ |
no outgoing calls
no test coverage detected