@dalmia/calibrate-mcp 0.0.26 → 0.0.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/mcp-server.js +617 -299
- package/bin/mcp-server.js.map +20 -12
- package/esm/funcs/agentsLinkEvaluators.d.ts +16 -0
- package/esm/funcs/agentsLinkEvaluators.d.ts.map +1 -0
- package/esm/funcs/agentsLinkEvaluators.js +92 -0
- package/esm/funcs/agentsLinkEvaluators.js.map +1 -0
- package/esm/funcs/agentsListEvaluators.d.ts +16 -0
- package/esm/funcs/agentsListEvaluators.d.ts.map +1 -0
- package/esm/funcs/agentsListEvaluators.js +97 -0
- package/esm/funcs/agentsListEvaluators.js.map +1 -0
- package/esm/landing-page.js +1 -1
- package/esm/lib/config.d.ts +2 -2
- package/esm/lib/config.js +2 -2
- package/esm/mcp-server/mcp-server.js +1 -1
- package/esm/mcp-server/server.d.ts.map +1 -1
- package/esm/mcp-server/server.js +5 -1
- package/esm/mcp-server/server.js.map +1 -1
- package/esm/mcp-server/tools/agentsLinkEvaluators.d.ts +7 -0
- package/esm/mcp-server/tools/agentsLinkEvaluators.d.ts.map +1 -0
- package/esm/mcp-server/tools/agentsLinkEvaluators.js +36 -0
- package/esm/mcp-server/tools/agentsLinkEvaluators.js.map +1 -0
- package/esm/mcp-server/tools/agentsListEvaluators.d.ts +7 -0
- package/esm/mcp-server/tools/agentsListEvaluators.d.ts.map +1 -0
- package/esm/mcp-server/tools/agentsListEvaluators.js +35 -0
- package/esm/mcp-server/tools/agentsListEvaluators.js.map +1 -0
- package/esm/models/evaluatorcreate.d.ts +1 -1
- package/esm/models/evaluatordetailresponsecompact.d.ts +1 -1
- package/esm/models/linkevaluatorstoagentagentsagentuuidevaluatorspostop.d.ts +13 -0
- package/esm/models/linkevaluatorstoagentagentsagentuuidevaluatorspostop.d.ts.map +1 -0
- package/esm/models/linkevaluatorstoagentagentsagentuuidevaluatorspostop.js +19 -0
- package/esm/models/linkevaluatorstoagentagentsagentuuidevaluatorspostop.js.map +1 -0
- package/esm/models/listagentevaluatorsagentsagentuuidevaluatorsgetop.d.ts +14 -0
- package/esm/models/listagentevaluatorsagentsagentuuidevaluatorsgetop.d.ts.map +1 -0
- package/esm/models/listagentevaluatorsagentsagentuuidevaluatorsgetop.js +18 -0
- package/esm/models/listagentevaluatorsagentsagentuuidevaluatorsgetop.js.map +1 -0
- package/esm/models/listevaluatorsevaluatorsgetop.d.ts +1 -1
- package/esm/models/routersagentsevaluatorlinkrequest.d.ts +6 -0
- package/esm/models/routersagentsevaluatorlinkrequest.d.ts.map +1 -0
- package/esm/models/routersagentsevaluatorlinkrequest.js +8 -0
- package/esm/models/routersagentsevaluatorlinkrequest.js.map +1 -0
- package/esm/models/routersagentsevaluatorlinkresponse.d.ts +8 -0
- package/esm/models/routersagentsevaluatorlinkresponse.d.ts.map +1 -0
- package/esm/models/routersagentsevaluatorlinkresponse.js +10 -0
- package/esm/models/routersagentsevaluatorlinkresponse.js.map +1 -0
- package/esm/models/routersevaluatorsevaluatorresponse.d.ts +1 -1
- package/esm/tool-names.d.ts.map +1 -1
- package/esm/tool-names.js +8 -0
- package/esm/tool-names.js.map +1 -1
- package/package.json +1 -1
- package/src/funcs/agentsLinkEvaluators.ts +160 -0
- package/src/funcs/agentsListEvaluators.ts +165 -0
- package/src/landing-page.ts +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +5 -1
- package/src/mcp-server/tools/agentsLinkEvaluators.ts +45 -0
- package/src/mcp-server/tools/agentsListEvaluators.ts +44 -0
- package/src/models/linkevaluatorstoagentagentsagentuuidevaluatorspostop.ts +42 -0
- package/src/models/listagentevaluatorsagentsagentuuidevaluatorsgetop.ts +46 -0
- package/src/models/routersagentsevaluatorlinkrequest.ts +17 -0
- package/src/models/routersagentsevaluatorlinkresponse.ts +23 -0
- package/src/tool-names.ts +8 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as z from "zod";
|
|
6
|
+
|
|
7
|
+
export type RoutersAgentsEvaluatorLinkResponse = {
|
|
8
|
+
message: string;
|
|
9
|
+
linked: Array<string>;
|
|
10
|
+
already_linked: Array<string>;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
export const RoutersAgentsEvaluatorLinkResponse$zodSchema: z.ZodType<
|
|
14
|
+
RoutersAgentsEvaluatorLinkResponse
|
|
15
|
+
> = z.object({
|
|
16
|
+
already_linked: z.array(z.string()).describe(
|
|
17
|
+
"Evaluator IDs skipped because they were already linked",
|
|
18
|
+
),
|
|
19
|
+
linked: z.array(z.string()).describe(
|
|
20
|
+
"Evaluator IDs newly linked by this request",
|
|
21
|
+
),
|
|
22
|
+
message: z.string().describe("Confirmation that the evaluators were linked"),
|
|
23
|
+
});
|
package/src/tool-names.ts
CHANGED
|
@@ -24,6 +24,14 @@ export const toolNames: Array<{ name: string; description: string }>= [
|
|
|
24
24
|
"name": "update-agent",
|
|
25
25
|
"description": "Update an existing agent by UUID within the caller's org. Supply the\nfields to change (name, type, config). Returns the updated agent.\nFails with 404 if the agent does not exist or belongs to another org.\n"
|
|
26
26
|
},
|
|
27
|
+
{
|
|
28
|
+
"name": "list-agent-evaluators",
|
|
29
|
+
"description": "List the evaluators linked to an agent, most recently linked first.\nReturns each evaluator's UUID, name, type, and live version summary.\n"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "link-evaluators-to-agent",
|
|
33
|
+
"description": "Link one or more evaluators to an agent, skipping any already linked.\nEach evaluator must be one you created or a built-in default, and the\nagent must be in your workspace.\n"
|
|
34
|
+
},
|
|
27
35
|
{
|
|
28
36
|
"name": "bulk-create-tests",
|
|
29
37
|
"description": "Create multiple tests in the caller's organization in one call. Provide\na list of test definitions (name, type, config). Returns the created\ntests including their UUIDs.\n"
|