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

Function tool

packages/react/src/components/tool-tree.test.ts:14–26  ·  view source on GitHub ↗
(input: {
  readonly id: string;
  readonly name: string;
  readonly owner?: Owner;
  readonly connection?: string;
})

Source from the content-addressed store, hash-verified

12};
13
14const tool = (input: {
15 readonly id: string;
16 readonly name: string;
17 readonly owner?: Owner;
18 readonly connection?: string;
19}): ToolSummary => ({
20 id: input.id,
21 name: input.name,
22 description: undefined,
23 policy: approve,
24 owner: input.owner,
25 connection: input.connection,
26});
27
28describe("buildAccountGroups", () => {
29 it("groups tools by (owner, connection) and badges each section by owner", () => {

Callers 1

tool-tree.test.tsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected