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

Function findToolRowsForConnection

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

Source from the content-addressed store, hash-verified

4167 });
4168
4169 const findToolRowsForConnection = (
4170 parsed: ParsedToolAddress,
4171 ): Effect.Effect<readonly ToolInvocationRow[], StorageFailure> =>
4172 core.findMany("tool", {
4173 where: toolRowsForConnectionWhere(parsed),
4174 orderBy: ["name", "asc"],
4175 limit: TOOL_SUGGESTION_LIMIT,
4176 select: TOOL_INVOCATION_COLUMNS,
4177 });
4178
4179 const execute = (
4180 address: ToolAddress,

Callers 1

executeFunction · 0.85

Calls 1

Tested by

no test coverage detected