@dalmia/calibrate-mcp 0.0.39 → 0.0.40
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 +7 -7
- package/bin/mcp-server.js.map +7 -7
- 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/taskagreementresponse.js +1 -1
- package/esm/models/taskagreementresponse.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/taskagreementresponse.ts +1 -1
package/bin/mcp-server.js
CHANGED
|
@@ -51428,9 +51428,9 @@ var init_config = __esm(() => {
|
|
|
51428
51428
|
SDK_METADATA = {
|
|
51429
51429
|
language: "typescript",
|
|
51430
51430
|
openapiDocVersion: "0.1.0",
|
|
51431
|
-
sdkVersion: "0.0.
|
|
51431
|
+
sdkVersion: "0.0.40",
|
|
51432
51432
|
genVersion: "2.915.1",
|
|
51433
|
-
userAgent: "speakeasy-sdk/mcp-typescript 0.0.
|
|
51433
|
+
userAgent: "speakeasy-sdk/mcp-typescript 0.0.40 2.915.1 0.1.0 @dalmia/calibrate-mcp"
|
|
51434
51434
|
};
|
|
51435
51435
|
});
|
|
51436
51436
|
|
|
@@ -56608,7 +56608,7 @@ var init_taskagreementresponse = __esm(() => {
|
|
|
56608
56608
|
TaskAgreementResponse$zodSchema = collectExtraKeys(object({
|
|
56609
56609
|
bucket: string2().describe("Time bucket used for the trend series"),
|
|
56610
56610
|
days: int().describe("Length of the trailing window in days"),
|
|
56611
|
-
evaluators: array(record(string2(), any())).describe("Agreement between each evaluator and the annotators, plus that evaluator's own results, one entry per linked evaluator"),
|
|
56611
|
+
evaluators: array(record(string2(), any())).describe("Agreement between each evaluator and the annotators, plus that evaluator's own results and the human results, one entry per linked evaluator"),
|
|
56612
56612
|
human_human: HumanAgreementBlock$zodSchema,
|
|
56613
56613
|
task_id: string2().describe("ID of the task")
|
|
56614
56614
|
}).catchall(any()), "AdditionalProperties", true);
|
|
@@ -59848,7 +59848,7 @@ hits its trace limit.
|
|
|
59848
59848
|
function createMCPServer(deps) {
|
|
59849
59849
|
const server = new McpServer({
|
|
59850
59850
|
name: "CalibrateMcp",
|
|
59851
|
-
version: "0.0.
|
|
59851
|
+
version: "0.0.40"
|
|
59852
59852
|
});
|
|
59853
59853
|
const getClient = deps.getSDK || (() => new CalibrateMcpCore({
|
|
59854
59854
|
security: deps.security,
|
|
@@ -61114,7 +61114,7 @@ http_headers = { "api-key-auth" = "YOUR_API_KEY_AUTH" }`;
|
|
|
61114
61114
|
<h1>Instructions</h1>
|
|
61115
61115
|
<p>One-click installation for Claude Desktop users</p>
|
|
61116
61116
|
<div class="instruction-item">
|
|
61117
|
-
<a href="https://github.com/dalmia/calibrate-mcp/releases/download/v0.0.
|
|
61117
|
+
<a href="https://github.com/dalmia/calibrate-mcp/releases/download/v0.0.40/mcp-server.mcpb" download="mcp-server.mcpb" class="action-button header-action" style="display: inline-flex; margin-bottom: 16px;">
|
|
61118
61118
|
\uD83D\uDCE5 Download MCP Bundle
|
|
61119
61119
|
</a>
|
|
61120
61120
|
</div>
|
|
@@ -64001,7 +64001,7 @@ var routes = buildRouteMap({
|
|
|
64001
64001
|
var app = buildApplication(routes, {
|
|
64002
64002
|
name: "mcp",
|
|
64003
64003
|
versionInfo: {
|
|
64004
|
-
currentVersion: "0.0.
|
|
64004
|
+
currentVersion: "0.0.40"
|
|
64005
64005
|
}
|
|
64006
64006
|
});
|
|
64007
64007
|
run(app, process4.argv.slice(2), buildContext(process4));
|
|
@@ -64009,5 +64009,5 @@ export {
|
|
|
64009
64009
|
app
|
|
64010
64010
|
};
|
|
64011
64011
|
|
|
64012
|
-
//# debugId=
|
|
64012
|
+
//# debugId=4C633B0499CB087864756E2164756E21
|
|
64013
64013
|
//# sourceMappingURL=mcp-server.js.map
|