MCPcopy Create free account
hub / github.com/colbymchenry/codegraph / stopAllDaemons

Function stopAllDaemons

src/mcp/daemon-registry.ts:193–199  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

191
192/** Stop every registered, live daemon. */
193export async function stopAllDaemons(): Promise<StopResult[]> {
194 const results: StopResult[] = [];
195 for (const rec of listDaemons()) {
196 results.push(await stopDaemonAt(rec.root));
197 }
198 return results;
199}

Callers

nothing calls this directly

Calls 2

listDaemonsFunction · 0.85
stopDaemonAtFunction · 0.85

Tested by

no test coverage detected