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

Function findToolRowsForConnection

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

Source from the content-addressed store, hash-verified

4254 });
4255
4256 const findToolRowsForConnection = (
4257 parsed: ParsedToolAddress,
4258 ): Effect.Effect<readonly ToolInvocationRow[], StorageFailure> =>
4259 core.findMany("tool", {
4260 where: toolRowsForConnectionWhere(parsed),
4261 orderBy: ["name", "asc"],
4262 limit: TOOL_SUGGESTION_LIMIT,
4263 select: TOOL_INVOCATION_COLUMNS,
4264 });
4265
4266 const execute = (
4267 address: ToolAddress,

Callers 1

executeFunction · 0.85

Calls 1

Tested by

no test coverage detected