MCPcopy Create free account
hub / github.com/RioArisk/claudecode_api_RemoteControl / getSavedServers

Function getSavedServers

app/src/modules/hub.js:65–70  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

63}
64
65export function getSavedServers() {
66 try {
67 const raw = JSON.parse(localStorage.getItem(STORAGE_KEY) || '[]');
68 return normalizeServerList(raw);
69 } catch { return []; }
70}
71
72function saveServerList(list) {
73 localStorage.setItem(STORAGE_KEY, JSON.stringify(normalizeServerList(list)));

Callers 11

connectFunction · 0.90
addServerFunction · 0.70
saveServerFunction · 0.70
removeServerFunction · 0.70
renderHubCardsFunction · 0.70
scheduleHubRetryFunction · 0.70
probeAllServersFunction · 0.70
connectToServerFunction · 0.70
openEditServerDialogFunction · 0.70
saveServerDialogFunction · 0.70
deleteServerFromDialogFunction · 0.70

Calls 1

normalizeServerListFunction · 0.70

Tested by

no test coverage detected