@dalmia/calibrate-mcp 0.0.49 → 0.0.50
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 +10 -9
- 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/batchtestskip.d.ts +4 -0
- package/esm/models/batchtestskip.d.ts.map +1 -1
- package/esm/models/batchtestskip.js +5 -2
- package/esm/models/batchtestskip.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/batchtestskip.ts +6 -2
package/esm/landing-page.js
CHANGED
|
@@ -915,7 +915,7 @@ http_headers = { "api-key-auth" = "YOUR_API_KEY_AUTH" }`;
|
|
|
915
915
|
<h1>Instructions</h1>
|
|
916
916
|
<p>One-click installation for Claude Desktop users</p>
|
|
917
917
|
<div class="instruction-item">
|
|
918
|
-
<a href="https://github.com/dalmia/calibrate-mcp/releases/download/v0.0.
|
|
918
|
+
<a href="https://github.com/dalmia/calibrate-mcp/releases/download/v0.0.50/mcp-server.mcpb" download="mcp-server.mcpb" class="action-button header-action" style="display: inline-flex; margin-bottom: 16px;">
|
|
919
919
|
📥 Download MCP Bundle
|
|
920
920
|
</a>
|
|
921
921
|
</div>
|
package/esm/lib/config.d.ts
CHANGED
|
@@ -35,8 +35,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
35
35
|
export declare const SDK_METADATA: {
|
|
36
36
|
readonly language: "typescript";
|
|
37
37
|
readonly openapiDocVersion: "0.1.0";
|
|
38
|
-
readonly sdkVersion: "0.0.
|
|
38
|
+
readonly sdkVersion: "0.0.50";
|
|
39
39
|
readonly genVersion: "2.915.1";
|
|
40
|
-
readonly userAgent: "speakeasy-sdk/mcp-typescript 0.0.
|
|
40
|
+
readonly userAgent: "speakeasy-sdk/mcp-typescript 0.0.50 2.915.1 0.1.0 @dalmia/calibrate-mcp";
|
|
41
41
|
};
|
|
42
42
|
//# sourceMappingURL=config.d.ts.map
|
package/esm/lib/config.js
CHANGED
|
@@ -27,8 +27,8 @@ export function serverURLFromOptions(options) {
|
|
|
27
27
|
export const SDK_METADATA = {
|
|
28
28
|
language: "typescript",
|
|
29
29
|
openapiDocVersion: "0.1.0",
|
|
30
|
-
sdkVersion: "0.0.
|
|
30
|
+
sdkVersion: "0.0.50",
|
|
31
31
|
genVersion: "2.915.1",
|
|
32
|
-
userAgent: "speakeasy-sdk/mcp-typescript 0.0.
|
|
32
|
+
userAgent: "speakeasy-sdk/mcp-typescript 0.0.50 2.915.1 0.1.0 @dalmia/calibrate-mcp",
|
|
33
33
|
};
|
|
34
34
|
//# sourceMappingURL=config.js.map
|
package/esm/mcp-server/server.js
CHANGED
|
@@ -50,7 +50,7 @@ import { tool$tracesCreate } from "./tools/tracesCreate.js";
|
|
|
50
50
|
export function createMCPServer(deps) {
|
|
51
51
|
const server = new McpServer({
|
|
52
52
|
name: "CalibrateMcp",
|
|
53
|
-
version: "0.0.
|
|
53
|
+
version: "0.0.50",
|
|
54
54
|
});
|
|
55
55
|
const getClient = deps.getSDK || (() => new CalibrateMcpCore({
|
|
56
56
|
security: deps.security,
|
|
@@ -6,10 +6,12 @@ import { ClosedEnum } from "../types/enums.js";
|
|
|
6
6
|
* @remarks
|
|
7
7
|
* - `no_linked_tests`: the agent has no tests linked
|
|
8
8
|
* - `connection_not_verified`: the agent's connection is not verified
|
|
9
|
+
* - `over_row_limit`: the agent has more linked tests than this workspace allows in one run
|
|
9
10
|
*/
|
|
10
11
|
export declare const Reason: {
|
|
11
12
|
readonly NoLinkedTests: "no_linked_tests";
|
|
12
13
|
readonly ConnectionNotVerified: "connection_not_verified";
|
|
14
|
+
readonly OverRowLimit: "over_row_limit";
|
|
13
15
|
};
|
|
14
16
|
/**
|
|
15
17
|
* Why this agent was not run:
|
|
@@ -17,11 +19,13 @@ export declare const Reason: {
|
|
|
17
19
|
* @remarks
|
|
18
20
|
* - `no_linked_tests`: the agent has no tests linked
|
|
19
21
|
* - `connection_not_verified`: the agent's connection is not verified
|
|
22
|
+
* - `over_row_limit`: the agent has more linked tests than this workspace allows in one run
|
|
20
23
|
*/
|
|
21
24
|
export type Reason = ClosedEnum<typeof Reason>;
|
|
22
25
|
export declare const Reason$zodSchema: z.ZodEnum<{
|
|
23
26
|
no_linked_tests: "no_linked_tests";
|
|
24
27
|
connection_not_verified: "connection_not_verified";
|
|
28
|
+
over_row_limit: "over_row_limit";
|
|
25
29
|
}>;
|
|
26
30
|
export type BatchTestSkip = {
|
|
27
31
|
agent_name: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"batchtestskip.d.ts","sourceRoot":"","sources":["../../src/models/batchtestskip.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAE/C
|
|
1
|
+
{"version":3,"file":"batchtestskip.d.ts","sourceRoot":"","sources":["../../src/models/batchtestskip.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAE/C;;;;;;;GAOG;AACH,eAAO,MAAM,MAAM;;;;CAIT,CAAC;AACX;;;;;;;GAOG;AACH,MAAM,MAAM,MAAM,GAAG,UAAU,CAAC,OAAO,MAAM,CAAC,CAAC;AAE/C,eAAO,MAAM,gBAAgB;;;;EAM5B,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG;IAC1B,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,CAAC,CAAC,OAAO,CAAC,aAAa,CAM3D,CAAC"}
|
|
@@ -8,18 +8,21 @@ import * as z from "zod";
|
|
|
8
8
|
* @remarks
|
|
9
9
|
* - `no_linked_tests`: the agent has no tests linked
|
|
10
10
|
* - `connection_not_verified`: the agent's connection is not verified
|
|
11
|
+
* - `over_row_limit`: the agent has more linked tests than this workspace allows in one run
|
|
11
12
|
*/
|
|
12
13
|
export const Reason = {
|
|
13
14
|
NoLinkedTests: "no_linked_tests",
|
|
14
15
|
ConnectionNotVerified: "connection_not_verified",
|
|
16
|
+
OverRowLimit: "over_row_limit",
|
|
15
17
|
};
|
|
16
18
|
export const Reason$zodSchema = z.enum([
|
|
17
19
|
"no_linked_tests",
|
|
18
20
|
"connection_not_verified",
|
|
19
|
-
|
|
21
|
+
"over_row_limit",
|
|
22
|
+
]).describe("Why this agent was not run:\n- `no_linked_tests`: the agent has no tests linked\n- `connection_not_verified`: the agent's connection is not verified\n- `over_row_limit`: the agent has more linked tests than this workspace allows in one run");
|
|
20
23
|
export const BatchTestSkip$zodSchema = z.object({
|
|
21
24
|
agent_name: z.string().describe("Name of the skipped agent"),
|
|
22
25
|
agent_uuid: z.string().describe("ID of the skipped agent"),
|
|
23
|
-
reason: Reason$zodSchema.describe("Why this agent was not run:\n- `no_linked_tests`: the agent has no tests linked\n- `connection_not_verified`: the agent's connection is not verified"),
|
|
26
|
+
reason: Reason$zodSchema.describe("Why this agent was not run:\n- `no_linked_tests`: the agent has no tests linked\n- `connection_not_verified`: the agent's connection is not verified\n- `over_row_limit`: the agent has more linked tests than this workspace allows in one run"),
|
|
24
27
|
});
|
|
25
28
|
//# sourceMappingURL=batchtestskip.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"batchtestskip.js","sourceRoot":"","sources":["../../src/models/batchtestskip.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB
|
|
1
|
+
{"version":3,"file":"batchtestskip.js","sourceRoot":"","sources":["../../src/models/batchtestskip.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB;;;;;;;GAOG;AACH,MAAM,CAAC,MAAM,MAAM,GAAG;IACpB,aAAa,EAAE,iBAAiB;IAChC,qBAAqB,EAAE,yBAAyB;IAChD,YAAY,EAAE,gBAAgB;CACtB,CAAC;AAWX,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,CAAC,IAAI,CAAC;IACrC,iBAAiB;IACjB,yBAAyB;IACzB,gBAAgB;CACjB,CAAC,CAAC,QAAQ,CACT,iPAAiP,CAClP,CAAC;AAQF,MAAM,CAAC,MAAM,uBAAuB,GAA6B,CAAC,CAAC,MAAM,CAAC;IACxE,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,2BAA2B,CAAC;IAC5D,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,yBAAyB,CAAC;IAC1D,MAAM,EAAE,gBAAgB,CAAC,QAAQ,CAC/B,iPAAiP,CAClP;CACF,CAAC,CAAC"}
|
package/package.json
CHANGED
package/src/landing-page.ts
CHANGED
|
@@ -930,7 +930,7 @@ http_headers = { "api-key-auth" = "YOUR_API_KEY_AUTH" }`;
|
|
|
930
930
|
<h1>Instructions</h1>
|
|
931
931
|
<p>One-click installation for Claude Desktop users</p>
|
|
932
932
|
<div class="instruction-item">
|
|
933
|
-
<a href="https://github.com/dalmia/calibrate-mcp/releases/download/v0.0.
|
|
933
|
+
<a href="https://github.com/dalmia/calibrate-mcp/releases/download/v0.0.50/mcp-server.mcpb" download="mcp-server.mcpb" class="action-button header-action" style="display: inline-flex; margin-bottom: 16px;">
|
|
934
934
|
📥 Download MCP Bundle
|
|
935
935
|
</a>
|
|
936
936
|
</div>
|
package/src/lib/config.ts
CHANGED
|
@@ -65,8 +65,8 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
65
65
|
export const SDK_METADATA = {
|
|
66
66
|
language: "typescript",
|
|
67
67
|
openapiDocVersion: "0.1.0",
|
|
68
|
-
sdkVersion: "0.0.
|
|
68
|
+
sdkVersion: "0.0.50",
|
|
69
69
|
genVersion: "2.915.1",
|
|
70
70
|
userAgent:
|
|
71
|
-
"speakeasy-sdk/mcp-typescript 0.0.
|
|
71
|
+
"speakeasy-sdk/mcp-typescript 0.0.50 2.915.1 0.1.0 @dalmia/calibrate-mcp",
|
|
72
72
|
} as const;
|
package/src/mcp-server/server.ts
CHANGED
|
@@ -11,10 +11,12 @@ import { ClosedEnum } from "../types/enums.js";
|
|
|
11
11
|
* @remarks
|
|
12
12
|
* - `no_linked_tests`: the agent has no tests linked
|
|
13
13
|
* - `connection_not_verified`: the agent's connection is not verified
|
|
14
|
+
* - `over_row_limit`: the agent has more linked tests than this workspace allows in one run
|
|
14
15
|
*/
|
|
15
16
|
export const Reason = {
|
|
16
17
|
NoLinkedTests: "no_linked_tests",
|
|
17
18
|
ConnectionNotVerified: "connection_not_verified",
|
|
19
|
+
OverRowLimit: "over_row_limit",
|
|
18
20
|
} as const;
|
|
19
21
|
/**
|
|
20
22
|
* Why this agent was not run:
|
|
@@ -22,14 +24,16 @@ export const Reason = {
|
|
|
22
24
|
* @remarks
|
|
23
25
|
* - `no_linked_tests`: the agent has no tests linked
|
|
24
26
|
* - `connection_not_verified`: the agent's connection is not verified
|
|
27
|
+
* - `over_row_limit`: the agent has more linked tests than this workspace allows in one run
|
|
25
28
|
*/
|
|
26
29
|
export type Reason = ClosedEnum<typeof Reason>;
|
|
27
30
|
|
|
28
31
|
export const Reason$zodSchema = z.enum([
|
|
29
32
|
"no_linked_tests",
|
|
30
33
|
"connection_not_verified",
|
|
34
|
+
"over_row_limit",
|
|
31
35
|
]).describe(
|
|
32
|
-
"Why this agent was not run:\n- `no_linked_tests`: the agent has no tests linked\n- `connection_not_verified`: the agent's connection is not verified",
|
|
36
|
+
"Why this agent was not run:\n- `no_linked_tests`: the agent has no tests linked\n- `connection_not_verified`: the agent's connection is not verified\n- `over_row_limit`: the agent has more linked tests than this workspace allows in one run",
|
|
33
37
|
);
|
|
34
38
|
|
|
35
39
|
export type BatchTestSkip = {
|
|
@@ -42,6 +46,6 @@ export const BatchTestSkip$zodSchema: z.ZodType<BatchTestSkip> = z.object({
|
|
|
42
46
|
agent_name: z.string().describe("Name of the skipped agent"),
|
|
43
47
|
agent_uuid: z.string().describe("ID of the skipped agent"),
|
|
44
48
|
reason: Reason$zodSchema.describe(
|
|
45
|
-
"Why this agent was not run:\n- `no_linked_tests`: the agent has no tests linked\n- `connection_not_verified`: the agent's connection is not verified",
|
|
49
|
+
"Why this agent was not run:\n- `no_linked_tests`: the agent has no tests linked\n- `connection_not_verified`: the agent's connection is not verified\n- `over_row_limit`: the agent has more linked tests than this workspace allows in one run",
|
|
46
50
|
),
|
|
47
51
|
});
|