MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / publishLocalServerManifest

Function publishLocalServerManifest

apps/cli/src/main.ts:410–417  ·  view source on GitHub ↗
(input: {
  readonly kind: ExecutorLocalServerKind;
  readonly connection: ExecutorServerConnection;
})

Source from the content-addressed store, hash-verified

408 });
409
410const publishLocalServerManifest = (input: {
411 readonly kind: ExecutorLocalServerKind;
412 readonly connection: ExecutorServerConnection;
413}): Effect.Effect<void, PlatformError, FileSystem.FileSystem | PlatformPath.Path> =>
414 Effect.gen(function* () {
415 const manifest = yield* makeLocalServerManifest(input);
416 yield* writeLocalServerManifest(manifest);
417 });
418
419const installDefaultExecutorWebBaseUrl = (baseUrl: string): (() => void) => {
420 if (process.env.EXECUTOR_WEB_BASE_URL !== undefined) {

Callers 2

runForegroundSessionFunction · 0.85
runDaemonSessionFunction · 0.85

Calls 2

writeLocalServerManifestFunction · 0.90
makeLocalServerManifestFunction · 0.85

Tested by

no test coverage detected