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

Function findToolRowsForConnection

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

Source from the content-addressed store, hash-verified

3609 });
3610
3611 const findToolRowsForConnection = (
3612 parsed: ParsedToolAddress,
3613 ): Effect.Effect<readonly ToolInvocationRow[], StorageFailure> =>
3614 core.findMany("tool", {
3615 where: toolRowsForConnectionWhere(parsed),
3616 orderBy: ["name", "asc"],
3617 limit: TOOL_SUGGESTION_LIMIT,
3618 select: TOOL_INVOCATION_COLUMNS,
3619 });
3620
3621 const execute = (
3622 address: ToolAddress,

Callers 1

executeFunction · 0.85

Calls 1

Tested by

no test coverage detected