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

Function findToolRowsForConnection

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

Source from the content-addressed store, hash-verified

4280 });
4281
4282 const findToolRowsForConnection = (
4283 parsed: ParsedToolAddress,
4284 ): Effect.Effect<readonly ToolInvocationRow[], StorageFailure> =>
4285 core.findMany("tool", {
4286 where: toolRowsForConnectionWhere(parsed),
4287 orderBy: ["name", "asc"],
4288 limit: TOOL_SUGGESTION_LIMIT,
4289 select: TOOL_INVOCATION_COLUMNS,
4290 });
4291
4292 const execute = (
4293 address: ToolAddress,

Callers 1

executeFunction · 0.85

Calls 1

Tested by

no test coverage detected