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

Function forwardMessage

apps/cli/src/main.ts:1388–1394  ·  view source on GitHub ↗
(send: (message: JSONRPCMessage) => Promise<void>, context: string)

Source from the content-addressed store, hash-verified

1386
1387 const forwardMessage =
1388 (send: (message: JSONRPCMessage) => Promise<void>, context: string) =>
1389 (message: JSONRPCMessage) => {
1390 void send(message).then(undefined, (cause: unknown) => {
1391 reportError(context, cause);
1392 shutdown();
1393 });
1394 };
1395
1396 process.once("SIGINT", shutdown);
1397 process.once("SIGTERM", shutdown);

Callers 1

runMcpHttpBridgeFunction · 0.85

Calls 3

sendFunction · 0.85
reportErrorFunction · 0.85
shutdownFunction · 0.70

Tested by

no test coverage detected