@dalmia/calibrate-mcp 0.0.58 → 0.0.59
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 +13 -9
- package/bin/mcp-server.js.map +10 -10
- 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/benchmarkstatusresponse.d.ts +2 -1
- package/esm/models/benchmarkstatusresponse.d.ts.map +1 -1
- package/esm/models/benchmarkstatusresponse.js +2 -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/benchmarkstatusresponse.ts +8 -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.59",
|
|
52765
52765
|
genVersion: "2.915.1",
|
|
52766
|
-
userAgent: "speakeasy-sdk/mcp-typescript 0.0.
|
|
52766
|
+
userAgent: "speakeasy-sdk/mcp-typescript 0.0.59 2.915.1 0.1.0 @dalmia/calibrate-mcp"
|
|
52767
52767
|
};
|
|
52768
52768
|
});
|
|
52769
52769
|
|
|
@@ -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,7 +56038,7 @@ 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"),
|
|
@@ -56044,6 +56046,7 @@ var init_benchmarkstatusresponse = __esm(() => {
|
|
|
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"),
|
|
56045
56047
|
share_token: string2().nullable().optional().describe("Token for building the public share URL"),
|
|
56046
56048
|
status: TaskStatus$zodSchema,
|
|
56049
|
+
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
56050
|
task_id: string2().describe("Benchmark run job ID"),
|
|
56048
56051
|
test_uuids: array(string2()).nullable().optional().describe("IDs of the tests this benchmark executed, in run order")
|
|
56049
56052
|
});
|
|
@@ -56205,7 +56208,7 @@ var init_testrunstatusresponse = __esm(() => {
|
|
|
56205
56208
|
TestRunStatusResponse$zodSchema = object({
|
|
56206
56209
|
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
56210
|
cost: record(string2(), any()).nullable().optional().describe("Aggregated cost as `{mean, min, max, count}` (USD)"),
|
|
56208
|
-
error:
|
|
56211
|
+
error: string2().nullable().optional().describe("Why the run could not be carried out, when it failed before producing any result"),
|
|
56209
56212
|
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
56213
|
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
56214
|
failed: int().nullable().optional().describe("Number of test cases that failed"),
|
|
@@ -56931,6 +56934,7 @@ var init_agenttestrunlistitem = __esm(() => {
|
|
|
56931
56934
|
results: array(TestRunCaseSummary$zodSchema).nullable().optional().describe("Flat pass/fail summary for each test case (fetch the run detail for full results)"),
|
|
56932
56935
|
share_token: string2().nullable().optional().describe("Token for building the public share URL"),
|
|
56933
56936
|
status: TaskStatus$zodSchema,
|
|
56937
|
+
stopped_early: boolean2().default(false).describe("Whether the run stopped before starting every test case, after too many failed in a row"),
|
|
56934
56938
|
total_tests: int().nullable().optional().describe("Total number of test cases"),
|
|
56935
56939
|
total_tokens: record(string2(), any()).nullable().optional().describe("Aggregated token usage as `{mean, min, max, count}`"),
|
|
56936
56940
|
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 +61563,7 @@ hits its trace limit.
|
|
|
61559
61563
|
function createMCPServer(deps) {
|
|
61560
61564
|
const server = new McpServer({
|
|
61561
61565
|
name: "CalibrateMcp",
|
|
61562
|
-
version: "0.0.
|
|
61566
|
+
version: "0.0.59"
|
|
61563
61567
|
});
|
|
61564
61568
|
const getClient = deps.getSDK || (() => new CalibrateMcpCore({
|
|
61565
61569
|
security: deps.security,
|
|
@@ -62848,7 +62852,7 @@ http_headers = { "api-key-auth" = "YOUR_API_KEY_AUTH" }`;
|
|
|
62848
62852
|
<h1>Instructions</h1>
|
|
62849
62853
|
<p>One-click installation for Claude Desktop users</p>
|
|
62850
62854
|
<div class="instruction-item">
|
|
62851
|
-
<a href="https://github.com/dalmia/calibrate-mcp/releases/download/v0.0.
|
|
62855
|
+
<a href="https://github.com/dalmia/calibrate-mcp/releases/download/v0.0.59/mcp-server.mcpb" download="mcp-server.mcpb" class="action-button header-action" style="display: inline-flex; margin-bottom: 16px;">
|
|
62852
62856
|
\uD83D\uDCE5 Download MCP Bundle
|
|
62853
62857
|
</a>
|
|
62854
62858
|
</div>
|
|
@@ -65732,7 +65736,7 @@ var routes = buildRouteMap({
|
|
|
65732
65736
|
var app = buildApplication(routes, {
|
|
65733
65737
|
name: "mcp",
|
|
65734
65738
|
versionInfo: {
|
|
65735
|
-
currentVersion: "0.0.
|
|
65739
|
+
currentVersion: "0.0.59"
|
|
65736
65740
|
}
|
|
65737
65741
|
});
|
|
65738
65742
|
run(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -65740,5 +65744,5 @@ export {
|
|
|
65740
65744
|
app
|
|
65741
65745
|
};
|
|
65742
65746
|
|
|
65743
|
-
//# debugId=
|
|
65747
|
+
//# debugId=FE1CD44B360D062964756E2164756E21
|
|
65744
65748
|
//# sourceMappingURL=mcp-server.js.map
|