@dalmia/calibrate-mcp 0.0.28 → 0.0.29
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 +12 -9
- package/bin/mcp-server.js.map +9 -9
- 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/annotationtaskcreate.d.ts +2 -0
- package/esm/models/annotationtaskcreate.d.ts.map +1 -1
- package/esm/models/annotationtaskcreate.js +2 -0
- package/esm/models/annotationtaskcreate.js.map +1 -1
- package/esm/models/annotationtaskresponse.d.ts +2 -0
- package/esm/models/annotationtaskresponse.d.ts.map +1 -1
- package/esm/models/annotationtaskresponse.js +2 -0
- package/esm/models/annotationtaskresponse.js.map +1 -1
- package/esm/models/tasksummaryresponse.d.ts +2 -0
- package/esm/models/tasksummaryresponse.d.ts.map +1 -1
- package/esm/models/tasksummaryresponse.js +2 -0
- package/esm/models/tasksummaryresponse.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/annotationtaskcreate.ts +2 -0
- package/src/models/annotationtaskresponse.ts +2 -0
- package/src/models/tasksummaryresponse.ts +2 -0
package/bin/mcp-server.js
CHANGED
|
@@ -51392,9 +51392,9 @@ var init_config = __esm(() => {
|
|
|
51392
51392
|
SDK_METADATA = {
|
|
51393
51393
|
language: "typescript",
|
|
51394
51394
|
openapiDocVersion: "0.1.0",
|
|
51395
|
-
sdkVersion: "0.0.
|
|
51395
|
+
sdkVersion: "0.0.29",
|
|
51396
51396
|
genVersion: "2.915.1",
|
|
51397
|
-
userAgent: "speakeasy-sdk/mcp-typescript 0.0.
|
|
51397
|
+
userAgent: "speakeasy-sdk/mcp-typescript 0.0.29 2.915.1 0.1.0 @dalmia/calibrate-mcp"
|
|
51398
51398
|
};
|
|
51399
51399
|
});
|
|
51400
51400
|
|
|
@@ -55866,7 +55866,8 @@ var init_annotationtaskcreate = __esm(() => {
|
|
|
55866
55866
|
"stt",
|
|
55867
55867
|
"llm",
|
|
55868
55868
|
"llm-general",
|
|
55869
|
-
"conversation"
|
|
55869
|
+
"conversation",
|
|
55870
|
+
"tts"
|
|
55870
55871
|
]).describe("Task type. Determines the shape of each item's payload.\n- `stt`: judge a transcript on its own\n- `llm`: judge one response with its conversation history\n- `llm-general`: judge a standalone `input -> output` pair\n- `conversation`: judge a full conversation");
|
|
55871
55872
|
AnnotationTaskCreate$zodSchema = object({
|
|
55872
55873
|
description: string2().nullable().optional().describe("A description for the task. Omit for none"),
|
|
@@ -56198,7 +56199,8 @@ var init_annotationtaskresponse = __esm(() => {
|
|
|
56198
56199
|
"stt",
|
|
56199
56200
|
"llm",
|
|
56200
56201
|
"llm-general",
|
|
56201
|
-
"conversation"
|
|
56202
|
+
"conversation",
|
|
56203
|
+
"tts"
|
|
56202
56204
|
]).describe("Task type. Determines the shape of each item's payload.\n- `stt`: judge a transcript on its own\n- `llm`: judge one response with its conversation history\n- `llm-general`: judge a standalone `input -> output` pair\n- `conversation`: judge a full conversation");
|
|
56203
56205
|
AnnotationTaskResponse$zodSchema = object({
|
|
56204
56206
|
created_at: string2().describe("When the task was created (ISO 8601 UTC)"),
|
|
@@ -56750,7 +56752,8 @@ var init_tasksummaryresponse = __esm(() => {
|
|
|
56750
56752
|
"stt",
|
|
56751
56753
|
"llm",
|
|
56752
56754
|
"llm-general",
|
|
56753
|
-
"conversation"
|
|
56755
|
+
"conversation",
|
|
56756
|
+
"tts"
|
|
56754
56757
|
]).describe("Type of the task");
|
|
56755
56758
|
TaskSummaryResponse$zodSchema = collectExtraKeys(object({
|
|
56756
56759
|
annotators: array(record(string2(), any())).describe("The annotators who labelled or commented on items in the task, stable across pages"),
|
|
@@ -58967,7 +58970,7 @@ fields to change (name, config). Returns the updated test. Fails with
|
|
|
58967
58970
|
function createMCPServer(deps) {
|
|
58968
58971
|
const server = new McpServer({
|
|
58969
58972
|
name: "CalibrateMcp",
|
|
58970
|
-
version: "0.0.
|
|
58973
|
+
version: "0.0.29"
|
|
58971
58974
|
});
|
|
58972
58975
|
const getClient = deps.getSDK || (() => new CalibrateMcpCore({
|
|
58973
58976
|
security: deps.security,
|
|
@@ -60194,7 +60197,7 @@ http_headers = { "api-key-auth" = "YOUR_API_KEY_AUTH" }`;
|
|
|
60194
60197
|
<h1>Instructions</h1>
|
|
60195
60198
|
<p>One-click installation for Claude Desktop users</p>
|
|
60196
60199
|
<div class="instruction-item">
|
|
60197
|
-
<a href="https://github.com/dalmia/calibrate-mcp/releases/download/v0.0.
|
|
60200
|
+
<a href="https://github.com/dalmia/calibrate-mcp/releases/download/v0.0.29/mcp-server.mcpb" download="mcp-server.mcpb" class="action-button header-action" style="display: inline-flex; margin-bottom: 16px;">
|
|
60198
60201
|
\uD83D\uDCE5 Download MCP Bundle
|
|
60199
60202
|
</a>
|
|
60200
60203
|
</div>
|
|
@@ -62846,7 +62849,7 @@ var routes = buildRouteMap({
|
|
|
62846
62849
|
var app = buildApplication(routes, {
|
|
62847
62850
|
name: "mcp",
|
|
62848
62851
|
versionInfo: {
|
|
62849
|
-
currentVersion: "0.0.
|
|
62852
|
+
currentVersion: "0.0.29"
|
|
62850
62853
|
}
|
|
62851
62854
|
});
|
|
62852
62855
|
run(app, process4.argv.slice(2), buildContext(process4));
|
|
@@ -62854,5 +62857,5 @@ export {
|
|
|
62854
62857
|
app
|
|
62855
62858
|
};
|
|
62856
62859
|
|
|
62857
|
-
//# debugId=
|
|
62860
|
+
//# debugId=EFE12B97060AE86D64756E2164756E21
|
|
62858
62861
|
//# sourceMappingURL=mcp-server.js.map
|