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

Function findToolRowsForConnection

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

Source from the content-addressed store, hash-verified

3625 });
3626
3627 const findToolRowsForConnection = (
3628 parsed: ParsedToolAddress,
3629 ): Effect.Effect<readonly ToolInvocationRow[], StorageFailure> =>
3630 core.findMany("tool", {
3631 where: toolRowsForConnectionWhere(parsed),
3632 orderBy: ["name", "asc"],
3633 limit: TOOL_SUGGESTION_LIMIT,
3634 select: TOOL_INVOCATION_COLUMNS,
3635 });
3636
3637 const execute = (
3638 address: ToolAddress,

Callers 1

executeFunction · 0.85

Calls 1

Tested by

no test coverage detected