MCPcopy Create free account
hub / github.com/getsentry/XcodeBuildMCP / listDaemonRegistryEntries

Function listDaemonRegistryEntries

src/daemon/daemon-registry.ts:306–313  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

304 * List all daemon registry entries.
305 */
306export function listDaemonRegistryEntries(): DaemonRegistryEntry[] {
307 const entriesByWorkspaceKey = new Map<string, DaemonRegistryEntry>();
308 for (const entry of listWorkspaceRegistryEntries()) {
309 entriesByWorkspaceKey.set(entry.workspaceKey, entry);
310 }
311
312 return Array.from(entriesByWorkspaceKey.values());
313}
314
315export function findDaemonRegistryEntryBySocketPath(
316 socketPath: string,

Callers 3

handleListFunction · 0.90

Calls 1

Tested by

no test coverage detected