@dalmia/calibrate-mcp 0.0.45 → 0.0.46
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 +9 -6
- 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/annotationitempayload.d.ts +3 -0
- package/esm/models/annotationitempayload.d.ts.map +1 -1
- package/esm/models/annotationitempayload.js +2 -0
- package/esm/models/annotationitempayload.js.map +1 -1
- package/esm/models/bulkcreateitemsresponse.d.ts +2 -0
- package/esm/models/bulkcreateitemsresponse.d.ts.map +1 -1
- package/esm/models/bulkcreateitemsresponse.js +2 -0
- package/esm/models/bulkcreateitemsresponse.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/annotationitempayload.ts +5 -0
- package/src/models/bulkcreateitemsresponse.ts +8 -0
package/bin/mcp-server.js
CHANGED
|
@@ -51946,9 +51946,9 @@ var init_config = __esm(() => {
|
|
|
51946
51946
|
SDK_METADATA = {
|
|
51947
51947
|
language: "typescript",
|
|
51948
51948
|
openapiDocVersion: "0.1.0",
|
|
51949
|
-
sdkVersion: "0.0.
|
|
51949
|
+
sdkVersion: "0.0.46",
|
|
51950
51950
|
genVersion: "2.915.1",
|
|
51951
|
-
userAgent: "speakeasy-sdk/mcp-typescript 0.0.
|
|
51951
|
+
userAgent: "speakeasy-sdk/mcp-typescript 0.0.46 2.915.1 0.1.0 @dalmia/calibrate-mcp"
|
|
51952
51952
|
};
|
|
51953
51953
|
});
|
|
51954
51954
|
|
|
@@ -56453,6 +56453,8 @@ var init_bulkcreateitemsresponse = __esm(() => {
|
|
|
56453
56453
|
BulkCreateItemsResponse$zodSchema = object({
|
|
56454
56454
|
annotation_job_id: string2().nullable().optional().describe("ID of the labelling job that holds the annotations you provided, present only when you send annotations with the items"),
|
|
56455
56455
|
count: int().describe("How many items the request resolved to"),
|
|
56456
|
+
evaluator_result_count: int().nullable().optional().describe("How many evaluator scores were stored, present only when you send `evaluator_results` with the items"),
|
|
56457
|
+
evaluator_run_job_id: string2().nullable().optional().describe("ID of the evaluator-run job that holds the scores you provided, present only when you send `evaluator_results` with the items"),
|
|
56456
56458
|
existing_item_ids: array(string2()).nullable().optional().describe("IDs of items that already existed by name and were reused"),
|
|
56457
56459
|
item_ids: array(string2()).describe("IDs of every item the request resolved to, in request order"),
|
|
56458
56460
|
new_item_ids: array(string2()).nullable().optional().describe("IDs of the items that were newly created")
|
|
@@ -56465,6 +56467,7 @@ var init_annotationitempayload = __esm(() => {
|
|
|
56465
56467
|
init_zod();
|
|
56466
56468
|
AnnotationItemPayload$zodSchema = object({
|
|
56467
56469
|
annotations: record(string2(), any()).nullable().optional().describe("Human annotations to seed, keyed by evaluator ID. Each evaluator ID must be linked to the task. Put the judgement in `value`, a bool for binary or a number for rating, with optional `reasoning`. Requires `annotator_id`"),
|
|
56470
|
+
evaluator_results: record(string2(), any()).nullable().optional().describe("Evaluator scores to record, keyed by evaluator ID. Each evaluator ID must be linked to the task. Put the score in `value`, a bool for binary or a number within the scale for rating, with optional `reasoning` and `version_number`. Omit `version_number` to record against the evaluator's live version. An item recording a tool call takes the tool-call evaluator and no other, and every other item takes any evaluator except that one"),
|
|
56468
56471
|
payload: any().optional().describe("The item's payload. `name` is required and unique within the task for every type. The other fields depend on the task `type`:\n\n- `stt`: `name`, `reference_transcript`, `predicted_transcript`\n- `llm`: `name`, `chat_history` (list of `{role, content}` turns ending at the user turn), `agent_response` (the reply to judge), optional `evaluator_variables`\n- `llm-general`: `name`, `input`, `output`, optional `evaluator_variables`\n- `conversation`: `name`, `transcript` (list of `{role, content}` turns), optional `evaluator_variables`\n\n`evaluator_variables` maps an evaluator ID to that evaluator's `{{\"{{\"}}variable}}` values for this item")
|
|
56469
56472
|
});
|
|
56470
56473
|
});
|
|
@@ -60560,7 +60563,7 @@ hits its trace limit.
|
|
|
60560
60563
|
function createMCPServer(deps) {
|
|
60561
60564
|
const server = new McpServer({
|
|
60562
60565
|
name: "CalibrateMcp",
|
|
60563
|
-
version: "0.0.
|
|
60566
|
+
version: "0.0.46"
|
|
60564
60567
|
});
|
|
60565
60568
|
const getClient = deps.getSDK || (() => new CalibrateMcpCore({
|
|
60566
60569
|
security: deps.security,
|
|
@@ -61838,7 +61841,7 @@ http_headers = { "api-key-auth" = "YOUR_API_KEY_AUTH" }`;
|
|
|
61838
61841
|
<h1>Instructions</h1>
|
|
61839
61842
|
<p>One-click installation for Claude Desktop users</p>
|
|
61840
61843
|
<div class="instruction-item">
|
|
61841
|
-
<a href="https://github.com/dalmia/calibrate-mcp/releases/download/v0.0.
|
|
61844
|
+
<a href="https://github.com/dalmia/calibrate-mcp/releases/download/v0.0.46/mcp-server.mcpb" download="mcp-server.mcpb" class="action-button header-action" style="display: inline-flex; margin-bottom: 16px;">
|
|
61842
61845
|
\uD83D\uDCE5 Download MCP Bundle
|
|
61843
61846
|
</a>
|
|
61844
61847
|
</div>
|
|
@@ -64725,7 +64728,7 @@ var routes = buildRouteMap({
|
|
|
64725
64728
|
var app = buildApplication(routes, {
|
|
64726
64729
|
name: "mcp",
|
|
64727
64730
|
versionInfo: {
|
|
64728
|
-
currentVersion: "0.0.
|
|
64731
|
+
currentVersion: "0.0.46"
|
|
64729
64732
|
}
|
|
64730
64733
|
});
|
|
64731
64734
|
run(app, process4.argv.slice(2), buildContext(process4));
|
|
@@ -64733,5 +64736,5 @@ export {
|
|
|
64733
64736
|
app
|
|
64734
64737
|
};
|
|
64735
64738
|
|
|
64736
|
-
//# debugId=
|
|
64739
|
+
//# debugId=AB8FAF600D098BDB64756E2164756E21
|
|
64737
64740
|
//# sourceMappingURL=mcp-server.js.map
|