@dalmia/calibrate-mcp 0.0.58 → 0.0.60
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 +15 -10
- 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/benchmarkrequest.js +1 -1
- package/esm/models/benchmarkrequest.js.map +1 -1
- package/esm/models/benchmarkstatusresponse.d.ts +3 -1
- package/esm/models/benchmarkstatusresponse.d.ts.map +1 -1
- package/esm/models/benchmarkstatusresponse.js +3 -1
- package/esm/models/benchmarkstatusresponse.js.map +1 -1
- package/esm/models/modelresult.d.ts +2 -0
- package/esm/models/modelresult.d.ts.map +1 -1
- package/esm/models/modelresult.js +2 -0
- package/esm/models/modelresult.js.map +1 -1
- package/esm/models/testrunstatusresponse.d.ts +1 -1
- package/esm/models/testrunstatusresponse.d.ts.map +1 -1
- package/esm/models/testrunstatusresponse.js +1 -1
- 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/benchmarkrequest.ts +1 -1
- package/src/models/benchmarkstatusresponse.ts +12 -2
- package/src/models/modelresult.ts +8 -0
- package/src/models/testrunstatusresponse.ts +4 -2
package/bin/mcp-server.js
CHANGED
|
@@ -52761,9 +52761,9 @@ var init_config = __esm(() => {
|
|
|
52761
52761
|
SDK_METADATA = {
|
|
52762
52762
|
language: "typescript",
|
|
52763
52763
|
openapiDocVersion: "0.1.0",
|
|
52764
|
-
sdkVersion: "0.0.
|
|
52764
|
+
sdkVersion: "0.0.60",
|
|
52765
52765
|
genVersion: "2.915.1",
|
|
52766
|
-
userAgent: "speakeasy-sdk/mcp-typescript 0.0.
|
|
52766
|
+
userAgent: "speakeasy-sdk/mcp-typescript 0.0.60 2.915.1 0.1.0 @dalmia/calibrate-mcp"
|
|
52767
52767
|
};
|
|
52768
52768
|
});
|
|
52769
52769
|
|
|
@@ -55613,7 +55613,7 @@ var init_benchmarkrequest = __esm(() => {
|
|
|
55613
55613
|
init_zod();
|
|
55614
55614
|
BenchmarkRequest$zodSchema = object({
|
|
55615
55615
|
models: array(string2()).describe("Model names to benchmark"),
|
|
55616
|
-
parallel_models: boolean2().default(true).describe("
|
|
55616
|
+
parallel_models: boolean2().default(true).describe("How to run the models. `true` runs several at a time, `false` runs each one only after the one before it has finished. Use `false` to keep the load on your own agent down"),
|
|
55617
55617
|
test_uuids: array(string2()).nullable().optional().describe("A subset of the agent's linked tests to benchmark. Each ID must be linked to the agent. Omit to run all linked tests")
|
|
55618
55618
|
});
|
|
55619
55619
|
});
|
|
@@ -55987,10 +55987,12 @@ var init_modelresult = __esm(() => {
|
|
|
55987
55987
|
message: string2().describe("Status or result message for this model"),
|
|
55988
55988
|
model: string2().describe("Model name these results are for"),
|
|
55989
55989
|
passed: int().nullable().optional().describe("Number of test cases that passed"),
|
|
55990
|
+
stopped_early: boolean2().default(false).describe("Whether this model's run stopped before starting every test case, after too many failed in a row"),
|
|
55990
55991
|
success: boolean2().nullable().optional().describe("Whether this model's run succeeded"),
|
|
55991
55992
|
test_results: array(TestCaseResult$zodSchema).nullable().optional().describe("Results for each test case for this model"),
|
|
55992
55993
|
total_tests: int().nullable().optional().describe("Total test cases for this model"),
|
|
55993
|
-
total_tokens: record(string2(), any()).nullable().optional().describe("Aggregated token usage as `{mean, min, max, count}`")
|
|
55994
|
+
total_tokens: record(string2(), any()).nullable().optional().describe("Aggregated token usage as `{mean, min, max, count}`"),
|
|
55995
|
+
unanswered_tests: int().nullable().optional().describe("Number of test cases that produced no answer because the agent or the judge could not be reached, which makes the pass rate an unfair measure of the agent")
|
|
55994
55996
|
});
|
|
55995
55997
|
});
|
|
55996
55998
|
|
|
@@ -56036,14 +56038,16 @@ var init_benchmarkstatusresponse = __esm(() => {
|
|
|
56036
56038
|
init_testrunevaluator();
|
|
56037
56039
|
BenchmarkStatusResponse$zodSchema = object({
|
|
56038
56040
|
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"),
|
|
56039
|
-
error:
|
|
56041
|
+
error: string2().nullable().optional().describe("Why the run could not be carried out, when it failed before producing any result"),
|
|
56040
56042
|
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`"),
|
|
56041
56043
|
is_public: boolean2().default(false).describe("Whether the run is shared publicly"),
|
|
56042
56044
|
leaderboard_summary: array(record(string2(), any())).nullable().optional().describe("Leaderboard comparing the models, one row per model. Columns vary by benchmark: a `model` column plus pass/fail counts, latency, cost, and one score column per evaluator, keyed by evaluator name"),
|
|
56043
56045
|
model_results: array(ModelResult$zodSchema).nullable().optional().describe("Results for each model"),
|
|
56044
56046
|
name: string2().describe("Name of the run. A run nobody has renamed shows its number instead, such as `Run 1` for a test run or `Benchmark 1` for a benchmark"),
|
|
56047
|
+
parallel_models: boolean2().nullable().optional().describe("How the models were run. `true` means several ran at a time, `false` means each one ran only after the one before it had finished"),
|
|
56045
56048
|
share_token: string2().nullable().optional().describe("Token for building the public share URL"),
|
|
56046
56049
|
status: TaskStatus$zodSchema,
|
|
56050
|
+
stopped_early: boolean2().default(false).describe("Whether any model's run stopped before starting every test case, after too many failed in a row"),
|
|
56047
56051
|
task_id: string2().describe("Benchmark run job ID"),
|
|
56048
56052
|
test_uuids: array(string2()).nullable().optional().describe("IDs of the tests this benchmark executed, in run order")
|
|
56049
56053
|
});
|
|
@@ -56205,7 +56209,7 @@ var init_testrunstatusresponse = __esm(() => {
|
|
|
56205
56209
|
TestRunStatusResponse$zodSchema = object({
|
|
56206
56210
|
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"),
|
|
56207
56211
|
cost: record(string2(), any()).nullable().optional().describe("Aggregated cost as `{mean, min, max, count}` (USD)"),
|
|
56208
|
-
error:
|
|
56212
|
+
error: string2().nullable().optional().describe("Why the run could not be carried out, when it failed before producing any result"),
|
|
56209
56213
|
evaluator_summary: array(record(string2(), any())).nullable().optional().describe("Totals for each evaluator over the whole run, matching the shape a benchmark reports for each model. Only evaluators that returned a verdict appear"),
|
|
56210
56214
|
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`"),
|
|
56211
56215
|
failed: int().nullable().optional().describe("Number of test cases that failed"),
|
|
@@ -56931,6 +56935,7 @@ var init_agenttestrunlistitem = __esm(() => {
|
|
|
56931
56935
|
results: array(TestRunCaseSummary$zodSchema).nullable().optional().describe("Flat pass/fail summary for each test case (fetch the run detail for full results)"),
|
|
56932
56936
|
share_token: string2().nullable().optional().describe("Token for building the public share URL"),
|
|
56933
56937
|
status: TaskStatus$zodSchema,
|
|
56938
|
+
stopped_early: boolean2().default(false).describe("Whether the run stopped before starting every test case, after too many failed in a row"),
|
|
56934
56939
|
total_tests: int().nullable().optional().describe("Total number of test cases"),
|
|
56935
56940
|
total_tokens: record(string2(), any()).nullable().optional().describe("Aggregated token usage as `{mean, min, max, count}`"),
|
|
56936
56941
|
type: AgentTestRunListItemType$zodSchema.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"),
|
|
@@ -61559,7 +61564,7 @@ hits its trace limit.
|
|
|
61559
61564
|
function createMCPServer(deps) {
|
|
61560
61565
|
const server = new McpServer({
|
|
61561
61566
|
name: "CalibrateMcp",
|
|
61562
|
-
version: "0.0.
|
|
61567
|
+
version: "0.0.60"
|
|
61563
61568
|
});
|
|
61564
61569
|
const getClient = deps.getSDK || (() => new CalibrateMcpCore({
|
|
61565
61570
|
security: deps.security,
|
|
@@ -62848,7 +62853,7 @@ http_headers = { "api-key-auth" = "YOUR_API_KEY_AUTH" }`;
|
|
|
62848
62853
|
<h1>Instructions</h1>
|
|
62849
62854
|
<p>One-click installation for Claude Desktop users</p>
|
|
62850
62855
|
<div class="instruction-item">
|
|
62851
|
-
<a href="https://github.com/dalmia/calibrate-mcp/releases/download/v0.0.
|
|
62856
|
+
<a href="https://github.com/dalmia/calibrate-mcp/releases/download/v0.0.60/mcp-server.mcpb" download="mcp-server.mcpb" class="action-button header-action" style="display: inline-flex; margin-bottom: 16px;">
|
|
62852
62857
|
\uD83D\uDCE5 Download MCP Bundle
|
|
62853
62858
|
</a>
|
|
62854
62859
|
</div>
|
|
@@ -65732,7 +65737,7 @@ var routes = buildRouteMap({
|
|
|
65732
65737
|
var app = buildApplication(routes, {
|
|
65733
65738
|
name: "mcp",
|
|
65734
65739
|
versionInfo: {
|
|
65735
|
-
currentVersion: "0.0.
|
|
65740
|
+
currentVersion: "0.0.60"
|
|
65736
65741
|
}
|
|
65737
65742
|
});
|
|
65738
65743
|
run(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -65740,5 +65745,5 @@ export {
|
|
|
65740
65745
|
app
|
|
65741
65746
|
};
|
|
65742
65747
|
|
|
65743
|
-
//# debugId=
|
|
65748
|
+
//# debugId=BD138050FC63ADA764756E2164756E21
|
|
65744
65749
|
//# sourceMappingURL=mcp-server.js.map
|