@dalmia/calibrate-mcp 0.0.59 → 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 +8 -7
- package/bin/mcp-server.js.map +8 -8
- 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/benchmarkrequest.js +1 -1
- package/esm/models/benchmarkrequest.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/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/benchmarkrequest.ts +1 -1
- package/src/models/benchmarkstatusresponse.ts +4 -0
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
|
});
|
|
@@ -56044,6 +56044,7 @@ var init_benchmarkstatusresponse = __esm(() => {
|
|
|
56044
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"),
|
|
56045
56045
|
model_results: array(ModelResult$zodSchema).nullable().optional().describe("Results for each model"),
|
|
56046
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"),
|
|
56047
56048
|
share_token: string2().nullable().optional().describe("Token for building the public share URL"),
|
|
56048
56049
|
status: TaskStatus$zodSchema,
|
|
56049
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"),
|
|
@@ -61563,7 +61564,7 @@ hits its trace limit.
|
|
|
61563
61564
|
function createMCPServer(deps) {
|
|
61564
61565
|
const server = new McpServer({
|
|
61565
61566
|
name: "CalibrateMcp",
|
|
61566
|
-
version: "0.0.
|
|
61567
|
+
version: "0.0.60"
|
|
61567
61568
|
});
|
|
61568
61569
|
const getClient = deps.getSDK || (() => new CalibrateMcpCore({
|
|
61569
61570
|
security: deps.security,
|
|
@@ -62852,7 +62853,7 @@ http_headers = { "api-key-auth" = "YOUR_API_KEY_AUTH" }`;
|
|
|
62852
62853
|
<h1>Instructions</h1>
|
|
62853
62854
|
<p>One-click installation for Claude Desktop users</p>
|
|
62854
62855
|
<div class="instruction-item">
|
|
62855
|
-
<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;">
|
|
62856
62857
|
\uD83D\uDCE5 Download MCP Bundle
|
|
62857
62858
|
</a>
|
|
62858
62859
|
</div>
|
|
@@ -65736,7 +65737,7 @@ var routes = buildRouteMap({
|
|
|
65736
65737
|
var app = buildApplication(routes, {
|
|
65737
65738
|
name: "mcp",
|
|
65738
65739
|
versionInfo: {
|
|
65739
|
-
currentVersion: "0.0.
|
|
65740
|
+
currentVersion: "0.0.60"
|
|
65740
65741
|
}
|
|
65741
65742
|
});
|
|
65742
65743
|
run(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -65744,5 +65745,5 @@ export {
|
|
|
65744
65745
|
app
|
|
65745
65746
|
};
|
|
65746
65747
|
|
|
65747
|
-
//# debugId=
|
|
65748
|
+
//# debugId=BD138050FC63ADA764756E2164756E21
|
|
65748
65749
|
//# sourceMappingURL=mcp-server.js.map
|