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

Function findToolRowsForConnection

packages/core/sdk/src/executor.ts:5720–5728  ·  view source on GitHub ↗
(
      parsed: ParsedToolAddress,
    )

Source from the content-addressed store, hash-verified

5718 });
5719
5720 const findToolRowsForConnection = (
5721 parsed: ParsedToolAddress,
5722 ): Effect.Effect<readonly ToolInvocationRow[], StorageFailure> =>
5723 core.findMany("tool", {
5724 where: toolRowsForConnectionWhere(parsed),
5725 orderBy: ["name", "asc"],
5726 limit: TOOL_SUGGESTION_LIMIT,
5727 select: TOOL_INVOCATION_COLUMNS,
5728 });
5729
5730 const execute = (
5731 address: ToolAddress,

Callers 1

executeFunction · 0.85

Calls 1

Tested by

no test coverage detected