@dalmia/calibrate-mcp 0.0.38 → 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 +15 -8
- 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/createjobsrequest.d.ts +20 -0
- package/esm/models/createjobsrequest.d.ts.map +1 -1
- package/esm/models/createjobsrequest.js +15 -0
- package/esm/models/createjobsrequest.js.map +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/createjobsrequest.ts +30 -0
- 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
|
|
|
@@ -56234,14 +56234,21 @@ var init_annotationTasksCreateEvaluatorRun2 = __esm(() => {
|
|
|
56234
56234
|
});
|
|
56235
56235
|
|
|
56236
56236
|
// src/models/createjobsrequest.ts
|
|
56237
|
-
var CreateJobsRequest$zodSchema;
|
|
56237
|
+
var ReasoningMode$zodSchema, CreateJobsRequest$zodSchema;
|
|
56238
56238
|
var init_createjobsrequest = __esm(() => {
|
|
56239
56239
|
init_zod();
|
|
56240
|
+
ReasoningMode$zodSchema = _enum([
|
|
56241
|
+
"optional",
|
|
56242
|
+
"required",
|
|
56243
|
+
"hidden"
|
|
56244
|
+
]).describe("How the labelling form treats the reasoning box on each judgement. `optional` shows it, `required` shows it and asks the annotator to fill it in, `hidden` leaves it out");
|
|
56240
56245
|
CreateJobsRequest$zodSchema = object({
|
|
56241
56246
|
annotator_ids: array(string2()).describe("Annotator IDs to assign, creating one labelling job for each annotator. Must be in your workspace"),
|
|
56247
|
+
comments_enabled: boolean2().default(true).describe("When `true`, the labelling form lets the annotator leave a comment on each item"),
|
|
56242
56248
|
evaluator_ids: array(string2()).nullable().optional().describe("Subset of the task's linked evaluators to show in these jobs. Must be a subset of the current links, an empty list gives a 400. Applies to every annotator's job. Omit (`None`) to snapshot every linked evaluator"),
|
|
56243
56249
|
item_ids: array(string2()).optional().describe("Item IDs to assign. **Required when `select_all=false`**. Ignored when `select_all=true`"),
|
|
56244
56250
|
q: string2().nullable().optional().describe("Case-insensitive substring filter on `payload.name`. Applies only when `select_all=true`"),
|
|
56251
|
+
reasoning_mode: ReasoningMode$zodSchema.default("optional").describe("How the labelling form treats the reasoning box on each judgement. `optional` shows it, `required` shows it and asks the annotator to fill it in, `hidden` leaves it out"),
|
|
56245
56252
|
select_all: boolean2().default(false).describe("When `true`, assign every item in the task and ignore `item_ids`. Set `q` to assign only items whose name matches it")
|
|
56246
56253
|
});
|
|
56247
56254
|
});
|
|
@@ -56601,7 +56608,7 @@ var init_taskagreementresponse = __esm(() => {
|
|
|
56601
56608
|
TaskAgreementResponse$zodSchema = collectExtraKeys(object({
|
|
56602
56609
|
bucket: string2().describe("Time bucket used for the trend series"),
|
|
56603
56610
|
days: int().describe("Length of the trailing window in days"),
|
|
56604
|
-
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"),
|
|
56605
56612
|
human_human: HumanAgreementBlock$zodSchema,
|
|
56606
56613
|
task_id: string2().describe("ID of the task")
|
|
56607
56614
|
}).catchall(any()), "AdditionalProperties", true);
|
|
@@ -59841,7 +59848,7 @@ hits its trace limit.
|
|
|
59841
59848
|
function createMCPServer(deps) {
|
|
59842
59849
|
const server = new McpServer({
|
|
59843
59850
|
name: "CalibrateMcp",
|
|
59844
|
-
version: "0.0.
|
|
59851
|
+
version: "0.0.40"
|
|
59845
59852
|
});
|
|
59846
59853
|
const getClient = deps.getSDK || (() => new CalibrateMcpCore({
|
|
59847
59854
|
security: deps.security,
|
|
@@ -61107,7 +61114,7 @@ http_headers = { "api-key-auth" = "YOUR_API_KEY_AUTH" }`;
|
|
|
61107
61114
|
<h1>Instructions</h1>
|
|
61108
61115
|
<p>One-click installation for Claude Desktop users</p>
|
|
61109
61116
|
<div class="instruction-item">
|
|
61110
|
-
<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;">
|
|
61111
61118
|
\uD83D\uDCE5 Download MCP Bundle
|
|
61112
61119
|
</a>
|
|
61113
61120
|
</div>
|
|
@@ -63994,7 +64001,7 @@ var routes = buildRouteMap({
|
|
|
63994
64001
|
var app = buildApplication(routes, {
|
|
63995
64002
|
name: "mcp",
|
|
63996
64003
|
versionInfo: {
|
|
63997
|
-
currentVersion: "0.0.
|
|
64004
|
+
currentVersion: "0.0.40"
|
|
63998
64005
|
}
|
|
63999
64006
|
});
|
|
64000
64007
|
run(app, process4.argv.slice(2), buildContext(process4));
|
|
@@ -64002,5 +64009,5 @@ export {
|
|
|
64002
64009
|
app
|
|
64003
64010
|
};
|
|
64004
64011
|
|
|
64005
|
-
//# debugId=
|
|
64012
|
+
//# debugId=4C633B0499CB087864756E2164756E21
|
|
64006
64013
|
//# sourceMappingURL=mcp-server.js.map
|