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

Function findToolRowsForConnection

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

Source from the content-addressed store, hash-verified

3708 });
3709
3710 const findToolRowsForConnection = (
3711 parsed: ParsedToolAddress,
3712 ): Effect.Effect<readonly ToolInvocationRow[], StorageFailure> =>
3713 core.findMany("tool", {
3714 where: toolRowsForConnectionWhere(parsed),
3715 orderBy: ["name", "asc"],
3716 limit: TOOL_SUGGESTION_LIMIT,
3717 select: TOOL_INVOCATION_COLUMNS,
3718 });
3719
3720 const execute = (
3721 address: ToolAddress,

Callers 1

executeFunction · 0.85

Calls 1

Tested by

no test coverage detected