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

Function findToolRowsForConnection

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

Source from the content-addressed store, hash-verified

4710 });
4711
4712 const findToolRowsForConnection = (
4713 parsed: ParsedToolAddress,
4714 ): Effect.Effect<readonly ToolInvocationRow[], StorageFailure> =>
4715 core.findMany("tool", {
4716 where: toolRowsForConnectionWhere(parsed),
4717 orderBy: ["name", "asc"],
4718 limit: TOOL_SUGGESTION_LIMIT,
4719 select: TOOL_INVOCATION_COLUMNS,
4720 });
4721
4722 const execute = (
4723 address: ToolAddress,

Callers 1

executeFunction · 0.85

Calls 1

Tested by

no test coverage detected