@dalmia/calibrate-mcp 0.0.32 → 0.0.33

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.
Files changed (34) hide show
  1. package/bin/mcp-server.js +17 -16
  2. package/bin/mcp-server.js.map +11 -11
  3. package/esm/landing-page.js +1 -1
  4. package/esm/lib/config.d.ts +2 -2
  5. package/esm/lib/config.js +2 -2
  6. package/esm/mcp-server/mcp-server.js +1 -1
  7. package/esm/mcp-server/server.js +1 -1
  8. package/esm/models/{routersagentsagentresponse.d.ts → agentresponse.d.ts} +7 -7
  9. package/esm/models/agentresponse.d.ts.map +1 -0
  10. package/esm/models/{routersagentsagentresponse.js → agentresponse.js} +5 -5
  11. package/esm/models/agentresponse.js.map +1 -0
  12. package/esm/models/agentsummary.d.ts +1 -0
  13. package/esm/models/agentsummary.d.ts.map +1 -1
  14. package/esm/models/agentsummary.js +1 -0
  15. package/esm/models/agentsummary.js.map +1 -1
  16. package/esm/models/getagentendpointagentsagentuuidgetop.d.ts +2 -2
  17. package/esm/models/getagentendpointagentsagentuuidgetop.d.ts.map +1 -1
  18. package/esm/models/getagentendpointagentsagentuuidgetop.js +2 -2
  19. package/esm/models/getagentendpointagentsagentuuidgetop.js.map +1 -1
  20. package/esm/models/updateagentendpointagentsagentuuidputop.d.ts +2 -2
  21. package/esm/models/updateagentendpointagentsagentuuidputop.d.ts.map +1 -1
  22. package/esm/models/updateagentendpointagentsagentuuidputop.js +2 -2
  23. package/esm/models/updateagentendpointagentsagentuuidputop.js.map +1 -1
  24. package/package.json +1 -1
  25. package/src/landing-page.ts +1 -1
  26. package/src/lib/config.ts +2 -2
  27. package/src/mcp-server/mcp-server.ts +1 -1
  28. package/src/mcp-server/server.ts +1 -1
  29. package/src/models/{routersagentsagentresponse.ts → agentresponse.ts} +7 -11
  30. package/src/models/agentsummary.ts +2 -0
  31. package/src/models/getagentendpointagentsagentuuidgetop.ts +3 -6
  32. package/src/models/updateagentendpointagentsagentuuidputop.ts +3 -6
  33. package/esm/models/routersagentsagentresponse.d.ts.map +0 -1
  34. package/esm/models/routersagentsagentresponse.js.map +0 -1
@@ -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.32/mcp-server.mcpb" download="mcp-server.mcpb" class="action-button header-action" style="display: inline-flex; margin-bottom: 16px;">
918
+ <a href="https://github.com/dalmia/calibrate-mcp/releases/download/v0.0.33/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>
@@ -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.32";
38
+ readonly sdkVersion: "0.0.33";
39
39
  readonly genVersion: "2.915.1";
40
- readonly userAgent: "speakeasy-sdk/mcp-typescript 0.0.32 2.915.1 0.1.0 @dalmia/calibrate-mcp";
40
+ readonly userAgent: "speakeasy-sdk/mcp-typescript 0.0.33 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.32",
30
+ sdkVersion: "0.0.33",
31
31
  genVersion: "2.915.1",
32
- userAgent: "speakeasy-sdk/mcp-typescript 0.0.32 2.915.1 0.1.0 @dalmia/calibrate-mcp",
32
+ userAgent: "speakeasy-sdk/mcp-typescript 0.0.33 2.915.1 0.1.0 @dalmia/calibrate-mcp",
33
33
  };
34
34
  //# sourceMappingURL=config.js.map
@@ -18,7 +18,7 @@ const routes = buildRouteMap({
18
18
  export const app = buildApplication(routes, {
19
19
  name: "mcp",
20
20
  versionInfo: {
21
- currentVersion: "0.0.32",
21
+ currentVersion: "0.0.33",
22
22
  },
23
23
  });
24
24
  run(app, process.argv.slice(2), buildContext(process));
@@ -44,7 +44,7 @@ import { tool$testsUpdate } from "./tools/testsUpdate.js";
44
44
  export function createMCPServer(deps) {
45
45
  const server = new McpServer({
46
46
  name: "CalibrateMcp",
47
- version: "0.0.32",
47
+ version: "0.0.33",
48
48
  });
49
49
  const getClient = deps.getSDK || (() => new CalibrateMcpCore({
50
50
  security: deps.security,
@@ -6,7 +6,7 @@ import { ClosedEnum } from "../types/enums.js";
6
6
  * @remarks
7
7
  * - `connection`: your existing agent connected to Calibrate
8
8
  */
9
- export declare const RoutersAgentsAgentResponseType: {
9
+ export declare const AgentResponseType: {
10
10
  readonly Agent: "agent";
11
11
  readonly Connection: "connection";
12
12
  };
@@ -16,20 +16,20 @@ export declare const RoutersAgentsAgentResponseType: {
16
16
  * @remarks
17
17
  * - `connection`: your existing agent connected to Calibrate
18
18
  */
19
- export type RoutersAgentsAgentResponseType = ClosedEnum<typeof RoutersAgentsAgentResponseType>;
20
- export declare const RoutersAgentsAgentResponseType$zodSchema: z.ZodEnum<{
19
+ export type AgentResponseType = ClosedEnum<typeof AgentResponseType>;
20
+ export declare const AgentResponseType$zodSchema: z.ZodEnum<{
21
21
  agent: "agent";
22
22
  connection: "connection";
23
23
  }>;
24
- export type RoutersAgentsAgentResponse = {
24
+ export type AgentResponse = {
25
25
  uuid: string;
26
26
  name: string;
27
- type: RoutersAgentsAgentResponseType;
27
+ type: AgentResponseType;
28
28
  config?: {
29
29
  [k: string]: any;
30
30
  } | null | undefined;
31
31
  created_at: string;
32
32
  updated_at: string;
33
33
  };
34
- export declare const RoutersAgentsAgentResponse$zodSchema: z.ZodType<RoutersAgentsAgentResponse>;
35
- //# sourceMappingURL=routersagentsagentresponse.d.ts.map
34
+ export declare const AgentResponse$zodSchema: z.ZodType<AgentResponse>;
35
+ //# sourceMappingURL=agentresponse.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"agentresponse.d.ts","sourceRoot":"","sources":["../../src/models/agentresponse.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAE/C;;;;;GAKG;AACH,eAAO,MAAM,iBAAiB;;;CAGpB,CAAC;AACX;;;;;GAKG;AACH,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAErE,eAAO,MAAM,2BAA2B;;;EAKvC,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,iBAAiB,CAAC;IACxB,MAAM,CAAC,EAAE;QAAE,CAAC,CAAC,EAAE,MAAM,GAAG,GAAG,CAAA;KAAE,GAAG,IAAI,GAAG,SAAS,CAAC;IACjD,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,CAAC,CAAC,OAAO,CAAC,aAAa,CAa3D,CAAC"}
@@ -8,20 +8,20 @@ import * as z from "zod";
8
8
  * @remarks
9
9
  * - `connection`: your existing agent connected to Calibrate
10
10
  */
11
- export const RoutersAgentsAgentResponseType = {
11
+ export const AgentResponseType = {
12
12
  Agent: "agent",
13
13
  Connection: "connection",
14
14
  };
15
- export const RoutersAgentsAgentResponseType$zodSchema = z.enum([
15
+ export const AgentResponseType$zodSchema = z.enum([
16
16
  "agent",
17
17
  "connection",
18
18
  ]).describe("- `agent`: built inside Calibrate\n- `connection`: your existing agent connected to Calibrate");
19
- export const RoutersAgentsAgentResponse$zodSchema = z.object({
19
+ export const AgentResponse$zodSchema = z.object({
20
20
  config: z.record(z.string(), z.any()).nullable().optional().describe("Agent configuration"),
21
21
  created_at: z.string().describe("When the agent was created (ISO 8601 UTC)"),
22
22
  name: z.string().describe("Name of the agent"),
23
- type: RoutersAgentsAgentResponseType$zodSchema.describe("- `agent`: built inside Calibrate\n- `connection`: your existing agent connected to Calibrate"),
23
+ type: AgentResponseType$zodSchema.describe("- `agent`: built inside Calibrate\n- `connection`: your existing agent connected to Calibrate"),
24
24
  updated_at: z.string().describe("When the agent was last updated (ISO 8601 UTC)"),
25
25
  uuid: z.string().describe("ID of the agent"),
26
26
  });
27
- //# sourceMappingURL=routersagentsagentresponse.js.map
27
+ //# sourceMappingURL=agentresponse.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"agentresponse.js","sourceRoot":"","sources":["../../src/models/agentresponse.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB;;;;;GAKG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B,KAAK,EAAE,OAAO;IACd,UAAU,EAAE,YAAY;CAChB,CAAC;AASX,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,CAAC,IAAI,CAAC;IAChD,OAAO;IACP,YAAY;CACb,CAAC,CAAC,QAAQ,CACT,+FAA+F,CAChG,CAAC;AAWF,MAAM,CAAC,MAAM,uBAAuB,GAA6B,CAAC,CAAC,MAAM,CAAC;IACxE,MAAM,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAClE,qBAAqB,CACtB;IACD,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,2CAA2C,CAAC;IAC5E,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,mBAAmB,CAAC;IAC9C,IAAI,EAAE,2BAA2B,CAAC,QAAQ,CACxC,+FAA+F,CAChG;IACD,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAC7B,gDAAgD,CACjD;IACD,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,iBAAiB,CAAC;CAC7C,CAAC,CAAC"}
@@ -25,6 +25,7 @@ export type AgentSummary = {
25
25
  uuid: string;
26
26
  name: string;
27
27
  type: AgentSummaryType;
28
+ created_at: string;
28
29
  updated_at: string;
29
30
  connection_verified?: boolean | null | undefined;
30
31
  has_default_inputs: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"agentsummary.d.ts","sourceRoot":"","sources":["../../src/models/agentsummary.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAE/C;;;;;GAKG;AACH,eAAO,MAAM,gBAAgB;;;CAGnB,CAAC;AACX;;;;;GAKG;AACH,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEnE,eAAO,MAAM,0BAA0B;;;EAKtC,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,gBAAgB,CAAC;IACvB,UAAU,EAAE,MAAM,CAAC;IACnB,mBAAmB,CAAC,EAAE,OAAO,GAAG,IAAI,GAAG,SAAS,CAAC;IACjD,kBAAkB,EAAE,OAAO,CAAC;CAC7B,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,CAAC,CAAC,OAAO,CAAC,YAAY,CAezD,CAAC"}
1
+ {"version":3,"file":"agentsummary.d.ts","sourceRoot":"","sources":["../../src/models/agentsummary.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAE/C;;;;;GAKG;AACH,eAAO,MAAM,gBAAgB;;;CAGnB,CAAC;AACX;;;;;GAKG;AACH,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEnE,eAAO,MAAM,0BAA0B;;;EAKtC,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,gBAAgB,CAAC;IACvB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,mBAAmB,CAAC,EAAE,OAAO,GAAG,IAAI,GAAG,SAAS,CAAC;IACjD,kBAAkB,EAAE,OAAO,CAAC;CAC7B,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,CAAC,CAAC,OAAO,CAAC,YAAY,CAgBzD,CAAC"}
@@ -18,6 +18,7 @@ export const AgentSummaryType$zodSchema = z.enum([
18
18
  ]).describe("- `agent`: built inside Calibrate\n- `connection`: your existing agent connected to Calibrate");
19
19
  export const AgentSummary$zodSchema = z.object({
20
20
  connection_verified: z.boolean().nullable().optional().describe("Whether the agent's connection has been verified, for a `type=connection` agent"),
21
+ created_at: z.string().describe("When the agent was created (ISO 8601 UTC)"),
21
22
  has_default_inputs: z.boolean().describe("Whether the agent has custom request fields configured"),
22
23
  name: z.string().describe("Name of the agent"),
23
24
  type: AgentSummaryType$zodSchema.describe("- `agent`: built inside Calibrate\n- `connection`: your existing agent connected to Calibrate"),
@@ -1 +1 @@
1
- {"version":3,"file":"agentsummary.js","sourceRoot":"","sources":["../../src/models/agentsummary.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB;;;;;GAKG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAC9B,KAAK,EAAE,OAAO;IACd,UAAU,EAAE,YAAY;CAChB,CAAC;AASX,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,CAAC,IAAI,CAAC;IAC/C,OAAO;IACP,YAAY;CACb,CAAC,CAAC,QAAQ,CACT,+FAA+F,CAChG,CAAC;AAWF,MAAM,CAAC,MAAM,sBAAsB,GAA4B,CAAC,CAAC,MAAM,CAAC;IACtE,mBAAmB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAC7D,iFAAiF,CAClF;IACD,kBAAkB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CACtC,wDAAwD,CACzD;IACD,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,mBAAmB,CAAC;IAC9C,IAAI,EAAE,0BAA0B,CAAC,QAAQ,CACvC,+FAA+F,CAChG;IACD,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAC7B,gDAAgD,CACjD;IACD,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,iBAAiB,CAAC;CAC7C,CAAC,CAAC"}
1
+ {"version":3,"file":"agentsummary.js","sourceRoot":"","sources":["../../src/models/agentsummary.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB;;;;;GAKG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAC9B,KAAK,EAAE,OAAO;IACd,UAAU,EAAE,YAAY;CAChB,CAAC;AASX,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,CAAC,IAAI,CAAC;IAC/C,OAAO;IACP,YAAY;CACb,CAAC,CAAC,QAAQ,CACT,+FAA+F,CAChG,CAAC;AAYF,MAAM,CAAC,MAAM,sBAAsB,GAA4B,CAAC,CAAC,MAAM,CAAC;IACtE,mBAAmB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAC7D,iFAAiF,CAClF;IACD,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,2CAA2C,CAAC;IAC5E,kBAAkB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CACtC,wDAAwD,CACzD;IACD,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,mBAAmB,CAAC;IAC9C,IAAI,EAAE,0BAA0B,CAAC,QAAQ,CACvC,+FAA+F,CAChG;IACD,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAC7B,gDAAgD,CACjD;IACD,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,iBAAiB,CAAC;CAC7C,CAAC,CAAC"}
@@ -1,11 +1,11 @@
1
1
  import * as z from "zod";
2
+ import { AgentResponse } from "./agentresponse.js";
2
3
  import { HTTPValidationError } from "./httpvalidationerror.js";
3
- import { RoutersAgentsAgentResponse } from "./routersagentsagentresponse.js";
4
4
  export type GetAgentEndpointAgentsAgentUuidGetRequest = {
5
5
  agent_uuid: string;
6
6
  xAPIKey?: string | null | undefined;
7
7
  };
8
8
  export declare const GetAgentEndpointAgentsAgentUuidGetRequest$zodSchema: z.ZodType<GetAgentEndpointAgentsAgentUuidGetRequest>;
9
- export type GetAgentEndpointAgentsAgentUuidGetResponse = RoutersAgentsAgentResponse | HTTPValidationError;
9
+ export type GetAgentEndpointAgentsAgentUuidGetResponse = AgentResponse | HTTPValidationError;
10
10
  export declare const GetAgentEndpointAgentsAgentUuidGetResponse$zodSchema: z.ZodType<GetAgentEndpointAgentsAgentUuidGetResponse>;
11
11
  //# sourceMappingURL=getagentendpointagentsagentuuidgetop.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"getagentendpointagentsagentuuidgetop.d.ts","sourceRoot":"","sources":["../../src/models/getagentendpointagentsagentuuidgetop.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EACL,mBAAmB,EAEpB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EACL,0BAA0B,EAE3B,MAAM,iCAAiC,CAAC;AAEzC,MAAM,MAAM,yCAAyC,GAAG;IACtD,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;CACrC,CAAC;AAEF,eAAO,MAAM,mDAAmD,EAAE,CAAC,CAAC,OAAO,CACzE,yCAAyC,CAIzC,CAAC;AAEH,MAAM,MAAM,0CAA0C,GAClD,0BAA0B,GAC1B,mBAAmB,CAAC;AAExB,eAAO,MAAM,oDAAoD,EAAE,CAAC,CAAC,OAAO,CAC1E,0CAA0C,CAI1C,CAAC"}
1
+ {"version":3,"file":"getagentendpointagentsagentuuidgetop.d.ts","sourceRoot":"","sources":["../../src/models/getagentendpointagentsagentuuidgetop.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,aAAa,EAA2B,MAAM,oBAAoB,CAAC;AAC5E,OAAO,EACL,mBAAmB,EAEpB,MAAM,0BAA0B,CAAC;AAElC,MAAM,MAAM,yCAAyC,GAAG;IACtD,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;CACrC,CAAC;AAEF,eAAO,MAAM,mDAAmD,EAAE,CAAC,CAAC,OAAO,CACzE,yCAAyC,CAIzC,CAAC;AAEH,MAAM,MAAM,0CAA0C,GAClD,aAAa,GACb,mBAAmB,CAAC;AAExB,eAAO,MAAM,oDAAoD,EAAE,CAAC,CAAC,OAAO,CAC1E,0CAA0C,CAI1C,CAAC"}
@@ -2,14 +2,14 @@
2
2
  * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
3
3
  */
4
4
  import * as z from "zod";
5
+ import { AgentResponse$zodSchema } from "./agentresponse.js";
5
6
  import { HTTPValidationError$zodSchema, } from "./httpvalidationerror.js";
6
- import { RoutersAgentsAgentResponse$zodSchema, } from "./routersagentsagentresponse.js";
7
7
  export const GetAgentEndpointAgentsAgentUuidGetRequest$zodSchema = z.object({
8
8
  agent_uuid: z.string().describe("The agent to retrieve"),
9
9
  xAPIKey: z.string().nullable().optional(),
10
10
  });
11
11
  export const GetAgentEndpointAgentsAgentUuidGetResponse$zodSchema = z.union([
12
- RoutersAgentsAgentResponse$zodSchema,
12
+ AgentResponse$zodSchema,
13
13
  HTTPValidationError$zodSchema,
14
14
  ]);
15
15
  //# sourceMappingURL=getagentendpointagentsagentuuidgetop.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"getagentendpointagentsagentuuidgetop.js","sourceRoot":"","sources":["../../src/models/getagentendpointagentsagentuuidgetop.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAEL,6BAA6B,GAC9B,MAAM,0BAA0B,CAAC;AAClC,OAAO,EAEL,oCAAoC,GACrC,MAAM,iCAAiC,CAAC;AAOzC,MAAM,CAAC,MAAM,mDAAmD,GAE5D,CAAC,CAAC,MAAM,CAAC;IACX,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,uBAAuB,CAAC;IACxD,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;CAC1C,CAAC,CAAC;AAMH,MAAM,CAAC,MAAM,oDAAoD,GAE7D,CAAC,CAAC,KAAK,CAAC;IACV,oCAAoC;IACpC,6BAA6B;CAC9B,CAAC,CAAC"}
1
+ {"version":3,"file":"getagentendpointagentsagentuuidgetop.js","sourceRoot":"","sources":["../../src/models/getagentendpointagentsagentuuidgetop.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAiB,uBAAuB,EAAE,MAAM,oBAAoB,CAAC;AAC5E,OAAO,EAEL,6BAA6B,GAC9B,MAAM,0BAA0B,CAAC;AAOlC,MAAM,CAAC,MAAM,mDAAmD,GAE5D,CAAC,CAAC,MAAM,CAAC;IACX,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,uBAAuB,CAAC;IACxD,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;CAC1C,CAAC,CAAC;AAMH,MAAM,CAAC,MAAM,oDAAoD,GAE7D,CAAC,CAAC,KAAK,CAAC;IACV,uBAAuB;IACvB,6BAA6B;CAC9B,CAAC,CAAC"}
@@ -1,13 +1,13 @@
1
1
  import * as z from "zod";
2
+ import { AgentResponse } from "./agentresponse.js";
2
3
  import { AgentUpdate } from "./agentupdate.js";
3
4
  import { HTTPValidationError } from "./httpvalidationerror.js";
4
- import { RoutersAgentsAgentResponse } from "./routersagentsagentresponse.js";
5
5
  export type UpdateAgentEndpointAgentsAgentUuidPutRequest = {
6
6
  agent_uuid: string;
7
7
  xAPIKey?: string | null | undefined;
8
8
  body: AgentUpdate;
9
9
  };
10
10
  export declare const UpdateAgentEndpointAgentsAgentUuidPutRequest$zodSchema: z.ZodType<UpdateAgentEndpointAgentsAgentUuidPutRequest>;
11
- export type UpdateAgentEndpointAgentsAgentUuidPutResponse = RoutersAgentsAgentResponse | HTTPValidationError;
11
+ export type UpdateAgentEndpointAgentsAgentUuidPutResponse = AgentResponse | HTTPValidationError;
12
12
  export declare const UpdateAgentEndpointAgentsAgentUuidPutResponse$zodSchema: z.ZodType<UpdateAgentEndpointAgentsAgentUuidPutResponse>;
13
13
  //# sourceMappingURL=updateagentendpointagentsagentuuidputop.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"updateagentendpointagentsagentuuidputop.d.ts","sourceRoot":"","sources":["../../src/models/updateagentendpointagentsagentuuidputop.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,WAAW,EAAyB,MAAM,kBAAkB,CAAC;AACtE,OAAO,EACL,mBAAmB,EAEpB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EACL,0BAA0B,EAE3B,MAAM,iCAAiC,CAAC;AAEzC,MAAM,MAAM,4CAA4C,GAAG;IACzD,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IACpC,IAAI,EAAE,WAAW,CAAC;CACnB,CAAC;AAEF,eAAO,MAAM,sDAAsD,EAAE,CAAC,CAAC,OAAO,CAC5E,4CAA4C,CAK5C,CAAC;AAEH,MAAM,MAAM,6CAA6C,GACrD,0BAA0B,GAC1B,mBAAmB,CAAC;AAExB,eAAO,MAAM,uDAAuD,EAAE,CAAC,CAAC,OAAO,CAC7E,6CAA6C,CAI7C,CAAC"}
1
+ {"version":3,"file":"updateagentendpointagentsagentuuidputop.d.ts","sourceRoot":"","sources":["../../src/models/updateagentendpointagentsagentuuidputop.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,aAAa,EAA2B,MAAM,oBAAoB,CAAC;AAC5E,OAAO,EAAE,WAAW,EAAyB,MAAM,kBAAkB,CAAC;AACtE,OAAO,EACL,mBAAmB,EAEpB,MAAM,0BAA0B,CAAC;AAElC,MAAM,MAAM,4CAA4C,GAAG;IACzD,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IACpC,IAAI,EAAE,WAAW,CAAC;CACnB,CAAC;AAEF,eAAO,MAAM,sDAAsD,EAAE,CAAC,CAAC,OAAO,CAC5E,4CAA4C,CAK5C,CAAC;AAEH,MAAM,MAAM,6CAA6C,GACrD,aAAa,GACb,mBAAmB,CAAC;AAExB,eAAO,MAAM,uDAAuD,EAAE,CAAC,CAAC,OAAO,CAC7E,6CAA6C,CAI7C,CAAC"}
@@ -2,16 +2,16 @@
2
2
  * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
3
3
  */
4
4
  import * as z from "zod";
5
+ import { AgentResponse$zodSchema } from "./agentresponse.js";
5
6
  import { AgentUpdate$zodSchema } from "./agentupdate.js";
6
7
  import { HTTPValidationError$zodSchema, } from "./httpvalidationerror.js";
7
- import { RoutersAgentsAgentResponse$zodSchema, } from "./routersagentsagentresponse.js";
8
8
  export const UpdateAgentEndpointAgentsAgentUuidPutRequest$zodSchema = z.object({
9
9
  agent_uuid: z.string().describe("The agent to update"),
10
10
  body: AgentUpdate$zodSchema,
11
11
  xAPIKey: z.string().nullable().optional(),
12
12
  });
13
13
  export const UpdateAgentEndpointAgentsAgentUuidPutResponse$zodSchema = z.union([
14
- RoutersAgentsAgentResponse$zodSchema,
14
+ AgentResponse$zodSchema,
15
15
  HTTPValidationError$zodSchema,
16
16
  ]);
17
17
  //# sourceMappingURL=updateagentendpointagentsagentuuidputop.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"updateagentendpointagentsagentuuidputop.js","sourceRoot":"","sources":["../../src/models/updateagentendpointagentsagentuuidputop.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAe,qBAAqB,EAAE,MAAM,kBAAkB,CAAC;AACtE,OAAO,EAEL,6BAA6B,GAC9B,MAAM,0BAA0B,CAAC;AAClC,OAAO,EAEL,oCAAoC,GACrC,MAAM,iCAAiC,CAAC;AAQzC,MAAM,CAAC,MAAM,sDAAsD,GAE/D,CAAC,CAAC,MAAM,CAAC;IACX,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,qBAAqB,CAAC;IACtD,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;CAC1C,CAAC,CAAC;AAMH,MAAM,CAAC,MAAM,uDAAuD,GAEhE,CAAC,CAAC,KAAK,CAAC;IACV,oCAAoC;IACpC,6BAA6B;CAC9B,CAAC,CAAC"}
1
+ {"version":3,"file":"updateagentendpointagentsagentuuidputop.js","sourceRoot":"","sources":["../../src/models/updateagentendpointagentsagentuuidputop.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAiB,uBAAuB,EAAE,MAAM,oBAAoB,CAAC;AAC5E,OAAO,EAAe,qBAAqB,EAAE,MAAM,kBAAkB,CAAC;AACtE,OAAO,EAEL,6BAA6B,GAC9B,MAAM,0BAA0B,CAAC;AAQlC,MAAM,CAAC,MAAM,sDAAsD,GAE/D,CAAC,CAAC,MAAM,CAAC;IACX,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,qBAAqB,CAAC;IACtD,IAAI,EAAE,qBAAqB;IAC3B,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;CAC1C,CAAC,CAAC;AAMH,MAAM,CAAC,MAAM,uDAAuD,GAEhE,CAAC,CAAC,KAAK,CAAC;IACV,uBAAuB;IACvB,6BAA6B;CAC9B,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dalmia/calibrate-mcp",
3
- "version": "0.0.32",
3
+ "version": "0.0.33",
4
4
  "author": "Speakeasy",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -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.32/mcp-server.mcpb" download="mcp-server.mcpb" class="action-button header-action" style="display: inline-flex; margin-bottom: 16px;">
933
+ <a href="https://github.com/dalmia/calibrate-mcp/releases/download/v0.0.33/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.32",
68
+ sdkVersion: "0.0.33",
69
69
  genVersion: "2.915.1",
70
70
  userAgent:
71
- "speakeasy-sdk/mcp-typescript 0.0.32 2.915.1 0.1.0 @dalmia/calibrate-mcp",
71
+ "speakeasy-sdk/mcp-typescript 0.0.33 2.915.1 0.1.0 @dalmia/calibrate-mcp",
72
72
  } as const;
@@ -21,7 +21,7 @@ const routes = buildRouteMap({
21
21
  export const app = buildApplication(routes, {
22
22
  name: "mcp",
23
23
  versionInfo: {
24
- currentVersion: "0.0.32",
24
+ currentVersion: "0.0.33",
25
25
  },
26
26
  });
27
27
 
@@ -66,7 +66,7 @@ export function createMCPServer(deps: {
66
66
  }) {
67
67
  const server = new McpServer({
68
68
  name: "CalibrateMcp",
69
- version: "0.0.32",
69
+ version: "0.0.33",
70
70
  });
71
71
 
72
72
  const getClient = deps.getSDK || (() =>
@@ -11,7 +11,7 @@ import { ClosedEnum } from "../types/enums.js";
11
11
  * @remarks
12
12
  * - `connection`: your existing agent connected to Calibrate
13
13
  */
14
- export const RoutersAgentsAgentResponseType = {
14
+ export const AgentResponseType = {
15
15
  Agent: "agent",
16
16
  Connection: "connection",
17
17
  } as const;
@@ -21,35 +21,31 @@ export const RoutersAgentsAgentResponseType = {
21
21
  * @remarks
22
22
  * - `connection`: your existing agent connected to Calibrate
23
23
  */
24
- export type RoutersAgentsAgentResponseType = ClosedEnum<
25
- typeof RoutersAgentsAgentResponseType
26
- >;
24
+ export type AgentResponseType = ClosedEnum<typeof AgentResponseType>;
27
25
 
28
- export const RoutersAgentsAgentResponseType$zodSchema = z.enum([
26
+ export const AgentResponseType$zodSchema = z.enum([
29
27
  "agent",
30
28
  "connection",
31
29
  ]).describe(
32
30
  "- `agent`: built inside Calibrate\n- `connection`: your existing agent connected to Calibrate",
33
31
  );
34
32
 
35
- export type RoutersAgentsAgentResponse = {
33
+ export type AgentResponse = {
36
34
  uuid: string;
37
35
  name: string;
38
- type: RoutersAgentsAgentResponseType;
36
+ type: AgentResponseType;
39
37
  config?: { [k: string]: any } | null | undefined;
40
38
  created_at: string;
41
39
  updated_at: string;
42
40
  };
43
41
 
44
- export const RoutersAgentsAgentResponse$zodSchema: z.ZodType<
45
- RoutersAgentsAgentResponse
46
- > = z.object({
42
+ export const AgentResponse$zodSchema: z.ZodType<AgentResponse> = z.object({
47
43
  config: z.record(z.string(), z.any()).nullable().optional().describe(
48
44
  "Agent configuration",
49
45
  ),
50
46
  created_at: z.string().describe("When the agent was created (ISO 8601 UTC)"),
51
47
  name: z.string().describe("Name of the agent"),
52
- type: RoutersAgentsAgentResponseType$zodSchema.describe(
48
+ type: AgentResponseType$zodSchema.describe(
53
49
  "- `agent`: built inside Calibrate\n- `connection`: your existing agent connected to Calibrate",
54
50
  ),
55
51
  updated_at: z.string().describe(
@@ -34,6 +34,7 @@ export type AgentSummary = {
34
34
  uuid: string;
35
35
  name: string;
36
36
  type: AgentSummaryType;
37
+ created_at: string;
37
38
  updated_at: string;
38
39
  connection_verified?: boolean | null | undefined;
39
40
  has_default_inputs: boolean;
@@ -43,6 +44,7 @@ export const AgentSummary$zodSchema: z.ZodType<AgentSummary> = z.object({
43
44
  connection_verified: z.boolean().nullable().optional().describe(
44
45
  "Whether the agent's connection has been verified, for a `type=connection` agent",
45
46
  ),
47
+ created_at: z.string().describe("When the agent was created (ISO 8601 UTC)"),
46
48
  has_default_inputs: z.boolean().describe(
47
49
  "Whether the agent has custom request fields configured",
48
50
  ),
@@ -3,14 +3,11 @@
3
3
  */
4
4
 
5
5
  import * as z from "zod";
6
+ import { AgentResponse, AgentResponse$zodSchema } from "./agentresponse.js";
6
7
  import {
7
8
  HTTPValidationError,
8
9
  HTTPValidationError$zodSchema,
9
10
  } from "./httpvalidationerror.js";
10
- import {
11
- RoutersAgentsAgentResponse,
12
- RoutersAgentsAgentResponse$zodSchema,
13
- } from "./routersagentsagentresponse.js";
14
11
 
15
12
  export type GetAgentEndpointAgentsAgentUuidGetRequest = {
16
13
  agent_uuid: string;
@@ -25,12 +22,12 @@ export const GetAgentEndpointAgentsAgentUuidGetRequest$zodSchema: z.ZodType<
25
22
  });
26
23
 
27
24
  export type GetAgentEndpointAgentsAgentUuidGetResponse =
28
- | RoutersAgentsAgentResponse
25
+ | AgentResponse
29
26
  | HTTPValidationError;
30
27
 
31
28
  export const GetAgentEndpointAgentsAgentUuidGetResponse$zodSchema: z.ZodType<
32
29
  GetAgentEndpointAgentsAgentUuidGetResponse
33
30
  > = z.union([
34
- RoutersAgentsAgentResponse$zodSchema,
31
+ AgentResponse$zodSchema,
35
32
  HTTPValidationError$zodSchema,
36
33
  ]);
@@ -3,15 +3,12 @@
3
3
  */
4
4
 
5
5
  import * as z from "zod";
6
+ import { AgentResponse, AgentResponse$zodSchema } from "./agentresponse.js";
6
7
  import { AgentUpdate, AgentUpdate$zodSchema } from "./agentupdate.js";
7
8
  import {
8
9
  HTTPValidationError,
9
10
  HTTPValidationError$zodSchema,
10
11
  } from "./httpvalidationerror.js";
11
- import {
12
- RoutersAgentsAgentResponse,
13
- RoutersAgentsAgentResponse$zodSchema,
14
- } from "./routersagentsagentresponse.js";
15
12
 
16
13
  export type UpdateAgentEndpointAgentsAgentUuidPutRequest = {
17
14
  agent_uuid: string;
@@ -28,12 +25,12 @@ export const UpdateAgentEndpointAgentsAgentUuidPutRequest$zodSchema: z.ZodType<
28
25
  });
29
26
 
30
27
  export type UpdateAgentEndpointAgentsAgentUuidPutResponse =
31
- | RoutersAgentsAgentResponse
28
+ | AgentResponse
32
29
  | HTTPValidationError;
33
30
 
34
31
  export const UpdateAgentEndpointAgentsAgentUuidPutResponse$zodSchema: z.ZodType<
35
32
  UpdateAgentEndpointAgentsAgentUuidPutResponse
36
33
  > = z.union([
37
- RoutersAgentsAgentResponse$zodSchema,
34
+ AgentResponse$zodSchema,
38
35
  HTTPValidationError$zodSchema,
39
36
  ]);
@@ -1 +0,0 @@
1
- {"version":3,"file":"routersagentsagentresponse.d.ts","sourceRoot":"","sources":["../../src/models/routersagentsagentresponse.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAE/C;;;;;GAKG;AACH,eAAO,MAAM,8BAA8B;;;CAGjC,CAAC;AACX;;;;;GAKG;AACH,MAAM,MAAM,8BAA8B,GAAG,UAAU,CACrD,OAAO,8BAA8B,CACtC,CAAC;AAEF,eAAO,MAAM,wCAAwC;;;EAKpD,CAAC;AAEF,MAAM,MAAM,0BAA0B,GAAG;IACvC,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,8BAA8B,CAAC;IACrC,MAAM,CAAC,EAAE;QAAE,CAAC,CAAC,EAAE,MAAM,GAAG,GAAG,CAAA;KAAE,GAAG,IAAI,GAAG,SAAS,CAAC;IACjD,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,eAAO,MAAM,oCAAoC,EAAE,CAAC,CAAC,OAAO,CAC1D,0BAA0B,CAc1B,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"routersagentsagentresponse.js","sourceRoot":"","sources":["../../src/models/routersagentsagentresponse.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB;;;;;GAKG;AACH,MAAM,CAAC,MAAM,8BAA8B,GAAG;IAC5C,KAAK,EAAE,OAAO;IACd,UAAU,EAAE,YAAY;CAChB,CAAC;AAWX,MAAM,CAAC,MAAM,wCAAwC,GAAG,CAAC,CAAC,IAAI,CAAC;IAC7D,OAAO;IACP,YAAY;CACb,CAAC,CAAC,QAAQ,CACT,+FAA+F,CAChG,CAAC;AAWF,MAAM,CAAC,MAAM,oCAAoC,GAE7C,CAAC,CAAC,MAAM,CAAC;IACX,MAAM,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAClE,qBAAqB,CACtB;IACD,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,2CAA2C,CAAC;IAC5E,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,mBAAmB,CAAC;IAC9C,IAAI,EAAE,wCAAwC,CAAC,QAAQ,CACrD,+FAA+F,CAChG;IACD,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAC7B,gDAAgD,CACjD;IACD,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,iBAAiB,CAAC;CAC7C,CAAC,CAAC"}