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

Function hiddenPersonalSpec

e2e/selfhost/toolkits-ui.test.ts:15–28  ·  view source on GitHub ↗
(baseUrl: string)

Source from the content-addressed store, hash-verified

13const api = composePluginApi([toolkitsPlugin(), openApiHttpPlugin()] as const);
14
15const hiddenPersonalSpec = (baseUrl: string): string =>
16 JSON.stringify({
17 openapi: "3.0.3",
18 info: { title: "Personal Hidden API", version: "1.0.0" },
19 servers: [{ url: baseUrl }],
20 paths: {
21 "/personal-only": {
22 get: {
23 operationId: "personalOnly",
24 responses: { "200": { description: "Personal-only response" } },
25 },
26 },
27 },
28 });
29
30scenario(
31 "Toolkits · self-host UI creates a toolkit and configures tools",

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected