MCPcopy Create free account
hub / github.com/Acode-Foundation/Acode / getServerBundle

Function getServerBundle

src/cm/lsp/serverCatalog.ts:115–119  ·  view source on GitHub ↗
(id: string)

Source from the content-addressed store, hash-verified

113}
114
115export function getServerBundle(id: string): LspServerBundle | null {
116 const owner = serverOwners.get(toKey(id));
117 if (!owner) return null;
118 return bundles.get(owner) || null;
119}
120
121export function ensureBuiltinBundlesRegistered(): void {
122 if (builtinsRegistered) return;

Callers 5

getProviderExecutableFunction · 0.90
checkServerInstallationFunction · 0.90
installServerFunction · 0.90
uninstallServerFunction · 0.90
getForServerFunction · 0.90

Calls 2

toKeyFunction · 0.70
getMethod · 0.45

Tested by

no test coverage detected