@dalmia/calibrate-mcp 0.0.48 → 0.0.50
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 +14 -9
- package/bin/mcp-server.js.map +11 -11
- 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.js +1 -1
- package/esm/models/agenttestrunlistitem.d.ts +1 -0
- package/esm/models/agenttestrunlistitem.d.ts.map +1 -1
- package/esm/models/agenttestrunlistitem.js +1 -0
- package/esm/models/agenttestrunlistitem.js.map +1 -1
- package/esm/models/batchtestskip.d.ts +4 -0
- package/esm/models/batchtestskip.d.ts.map +1 -1
- package/esm/models/batchtestskip.js +5 -2
- package/esm/models/batchtestskip.js.map +1 -1
- package/esm/models/benchmarkstatusresponse.d.ts +1 -0
- package/esm/models/benchmarkstatusresponse.d.ts.map +1 -1
- package/esm/models/benchmarkstatusresponse.js +1 -0
- package/esm/models/benchmarkstatusresponse.js.map +1 -1
- package/esm/models/testcaseresult.d.ts +1 -0
- package/esm/models/testcaseresult.d.ts.map +1 -1
- package/esm/models/testcaseresult.js +1 -0
- package/esm/models/testcaseresult.js.map +1 -1
- package/esm/models/testrunstatusresponse.d.ts +1 -0
- package/esm/models/testrunstatusresponse.d.ts.map +1 -1
- package/esm/models/testrunstatusresponse.js +1 -0
- package/esm/models/testrunstatusresponse.js.map +1 -1
- package/package.json +1 -1
- 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 +1 -1
- package/src/models/agenttestrunlistitem.ts +4 -0
- package/src/models/batchtestskip.ts +6 -2
- package/src/models/benchmarkstatusresponse.ts +4 -0
- package/src/models/testcaseresult.ts +4 -0
- package/src/models/testrunstatusresponse.ts +4 -0
package/bin/mcp-server.js
CHANGED
|
@@ -53020,9 +53020,9 @@ var init_config = __esm(() => {
|
|
|
53020
53020
|
SDK_METADATA = {
|
|
53021
53021
|
language: "typescript",
|
|
53022
53022
|
openapiDocVersion: "0.1.0",
|
|
53023
|
-
sdkVersion: "0.0.
|
|
53023
|
+
sdkVersion: "0.0.50",
|
|
53024
53024
|
genVersion: "2.915.1",
|
|
53025
|
-
userAgent: "speakeasy-sdk/mcp-typescript 0.0.
|
|
53025
|
+
userAgent: "speakeasy-sdk/mcp-typescript 0.0.50 2.915.1 0.1.0 @dalmia/calibrate-mcp"
|
|
53026
53026
|
};
|
|
53027
53027
|
});
|
|
53028
53028
|
|
|
@@ -56214,6 +56214,7 @@ var init_testcaseresult = __esm(() => {
|
|
|
56214
56214
|
judge_results: array(JudgeResult$zodSchema).nullable().optional().describe("One verdict for each evaluator"),
|
|
56215
56215
|
latency_ms: number2().nullable().optional().describe("How long the agent took to respond, in milliseconds"),
|
|
56216
56216
|
name: string2().nullable().optional().describe("Name of the test"),
|
|
56217
|
+
not_run: boolean2().default(false).describe("Whether this case never started, because a user stopped the run first. It is counted neither as passed nor as failed"),
|
|
56217
56218
|
output: TestOutput$zodSchema.nullable().optional().describe("The agent's output for this case"),
|
|
56218
56219
|
passed: boolean2().nullable().optional().describe("Whether the case passed"),
|
|
56219
56220
|
reasoning: string2().nullable().optional().describe("The judge's reasoning, or the tool-call diff for a tool-call test"),
|
|
@@ -56284,6 +56285,7 @@ var init_benchmarkstatusresponse = __esm(() => {
|
|
|
56284
56285
|
init_taskstatus();
|
|
56285
56286
|
init_testrunevaluator();
|
|
56286
56287
|
BenchmarkStatusResponse$zodSchema = object({
|
|
56288
|
+
aborted: boolean2().default(false).describe("Whether a user stopped this run before it finished. The results collected up to that point are kept, and test cases that never ran are counted neither as passed nor as failed"),
|
|
56287
56289
|
error: boolean2().default(false).describe("True if the run failed"),
|
|
56288
56290
|
evaluators: array(TestRunEvaluator$zodSchema).nullable().optional().describe("The evaluators used in this run. Each verdict in `judge_results` links to one of these by `evaluator_uuid`"),
|
|
56289
56291
|
is_public: boolean2().default(false).describe("Whether the run is shared publicly"),
|
|
@@ -56444,6 +56446,7 @@ var init_testrunstatusresponse = __esm(() => {
|
|
|
56444
56446
|
init_testcaseresult();
|
|
56445
56447
|
init_testrunevaluator();
|
|
56446
56448
|
TestRunStatusResponse$zodSchema = object({
|
|
56449
|
+
aborted: boolean2().default(false).describe("Whether a user stopped this run before it finished. The results collected up to that point are kept, and test cases that never ran are counted neither as passed nor as failed"),
|
|
56447
56450
|
cost: record(string2(), any()).nullable().optional().describe("Aggregated cost as `{mean, min, max, count}` (USD)"),
|
|
56448
56451
|
error: boolean2().default(false).describe("True if the run failed"),
|
|
56449
56452
|
evaluators: array(TestRunEvaluator$zodSchema).nullable().optional().describe("The evaluators used in this run. Each verdict in `judge_results` links to one of these by `evaluator_uuid`"),
|
|
@@ -57002,6 +57005,7 @@ var init_agenttestrunlistitem = __esm(() => {
|
|
|
57002
57005
|
"llm-benchmark"
|
|
57003
57006
|
]).describe("What kind of run this is:\n- `llm-unit-test`: a single run of the agent's tests\n- `llm-benchmark`: a multi-model comparison");
|
|
57004
57007
|
AgentTestRunListItem$zodSchema = object({
|
|
57008
|
+
aborted: boolean2().default(false).describe("Whether a user stopped this run before it finished. The results collected up to that point are kept, and test cases that never ran are counted neither as passed nor as failed"),
|
|
57005
57009
|
cost: record(string2(), any()).nullable().optional().describe("Aggregated cost as `{mean, min, max, count}` (USD)"),
|
|
57006
57010
|
created_at: string2().describe("When the run was created (ISO 8601 UTC)"),
|
|
57007
57011
|
error: boolean2().default(false).describe("True if the run failed"),
|
|
@@ -57370,12 +57374,13 @@ var init_batchtestskip = __esm(() => {
|
|
|
57370
57374
|
init_zod();
|
|
57371
57375
|
Reason$zodSchema = _enum([
|
|
57372
57376
|
"no_linked_tests",
|
|
57373
|
-
"connection_not_verified"
|
|
57374
|
-
|
|
57377
|
+
"connection_not_verified",
|
|
57378
|
+
"over_row_limit"
|
|
57379
|
+
]).describe("Why this agent was not run:\n- `no_linked_tests`: the agent has no tests linked\n- `connection_not_verified`: the agent's connection is not verified\n- `over_row_limit`: the agent has more linked tests than this workspace allows in one run");
|
|
57375
57380
|
BatchTestSkip$zodSchema = object({
|
|
57376
57381
|
agent_name: string2().describe("Name of the skipped agent"),
|
|
57377
57382
|
agent_uuid: string2().describe("ID of the skipped agent"),
|
|
57378
|
-
reason: Reason$zodSchema.describe("Why this agent was not run:\n- `no_linked_tests`: the agent has no tests linked\n- `connection_not_verified`: the agent's connection is not verified")
|
|
57383
|
+
reason: Reason$zodSchema.describe("Why this agent was not run:\n- `no_linked_tests`: the agent has no tests linked\n- `connection_not_verified`: the agent's connection is not verified\n- `over_row_limit`: the agent has more linked tests than this workspace allows in one run")
|
|
57379
57384
|
});
|
|
57380
57385
|
});
|
|
57381
57386
|
|
|
@@ -61642,7 +61647,7 @@ hits its trace limit.
|
|
|
61642
61647
|
function createMCPServer(deps) {
|
|
61643
61648
|
const server = new McpServer({
|
|
61644
61649
|
name: "CalibrateMcp",
|
|
61645
|
-
version: "0.0.
|
|
61650
|
+
version: "0.0.50"
|
|
61646
61651
|
});
|
|
61647
61652
|
const getClient = deps.getSDK || (() => new CalibrateMcpCore({
|
|
61648
61653
|
security: deps.security,
|
|
@@ -62920,7 +62925,7 @@ http_headers = { "api-key-auth" = "YOUR_API_KEY_AUTH" }`;
|
|
|
62920
62925
|
<h1>Instructions</h1>
|
|
62921
62926
|
<p>One-click installation for Claude Desktop users</p>
|
|
62922
62927
|
<div class="instruction-item">
|
|
62923
|
-
<a href="https://github.com/dalmia/calibrate-mcp/releases/download/v0.0.
|
|
62928
|
+
<a href="https://github.com/dalmia/calibrate-mcp/releases/download/v0.0.50/mcp-server.mcpb" download="mcp-server.mcpb" class="action-button header-action" style="display: inline-flex; margin-bottom: 16px;">
|
|
62924
62929
|
\uD83D\uDCE5 Download MCP Bundle
|
|
62925
62930
|
</a>
|
|
62926
62931
|
</div>
|
|
@@ -65807,7 +65812,7 @@ var routes = buildRouteMap({
|
|
|
65807
65812
|
var app = buildApplication(routes, {
|
|
65808
65813
|
name: "mcp",
|
|
65809
65814
|
versionInfo: {
|
|
65810
|
-
currentVersion: "0.0.
|
|
65815
|
+
currentVersion: "0.0.50"
|
|
65811
65816
|
}
|
|
65812
65817
|
});
|
|
65813
65818
|
run(app, process4.argv.slice(2), buildContext(process4));
|
|
@@ -65815,5 +65820,5 @@ export {
|
|
|
65815
65820
|
app
|
|
65816
65821
|
};
|
|
65817
65822
|
|
|
65818
|
-
//# debugId=
|
|
65823
|
+
//# debugId=C9B13E4BDAC1050764756E2164756E21
|
|
65819
65824
|
//# sourceMappingURL=mcp-server.js.map
|