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

Function findToolRowsForConnection

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

Source from the content-addressed store, hash-verified

3361 });
3362
3363 const findToolRowsForConnection = (
3364 parsed: ParsedToolAddress,
3365 ): Effect.Effect<readonly ToolInvocationRow[], StorageFailure> =>
3366 core.findMany("tool", {
3367 where: toolRowsForConnectionWhere(parsed),
3368 orderBy: ["name", "asc"],
3369 limit: TOOL_SUGGESTION_LIMIT,
3370 select: TOOL_INVOCATION_COLUMNS,
3371 });
3372
3373 const execute = (
3374 address: ToolAddress,

Callers 1

executeFunction · 0.85

Calls 1

Tested by

no test coverage detected