@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.
- package/bin/mcp-server.js +17 -16
- package/bin/mcp-server.js.map +11 -11
- 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/{routersagentsagentresponse.d.ts → agentresponse.d.ts} +7 -7
- package/esm/models/agentresponse.d.ts.map +1 -0
- package/esm/models/{routersagentsagentresponse.js → agentresponse.js} +5 -5
- package/esm/models/agentresponse.js.map +1 -0
- package/esm/models/agentsummary.d.ts +1 -0
- package/esm/models/agentsummary.d.ts.map +1 -1
- package/esm/models/agentsummary.js +1 -0
- package/esm/models/agentsummary.js.map +1 -1
- package/esm/models/getagentendpointagentsagentuuidgetop.d.ts +2 -2
- package/esm/models/getagentendpointagentsagentuuidgetop.d.ts.map +1 -1
- package/esm/models/getagentendpointagentsagentuuidgetop.js +2 -2
- package/esm/models/getagentendpointagentsagentuuidgetop.js.map +1 -1
- package/esm/models/updateagentendpointagentsagentuuidputop.d.ts +2 -2
- package/esm/models/updateagentendpointagentsagentuuidputop.d.ts.map +1 -1
- package/esm/models/updateagentendpointagentsagentuuidputop.js +2 -2
- package/esm/models/updateagentendpointagentsagentuuidputop.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/{routersagentsagentresponse.ts → agentresponse.ts} +7 -11
- package/src/models/agentsummary.ts +2 -0
- package/src/models/getagentendpointagentsagentuuidgetop.ts +3 -6
- package/src/models/updateagentendpointagentsagentuuidputop.ts +3 -6
- package/esm/models/routersagentsagentresponse.d.ts.map +0 -1
- package/esm/models/routersagentsagentresponse.js.map +0 -1
package/bin/mcp-server.js
CHANGED
|
@@ -51412,9 +51412,9 @@ var init_config = __esm(() => {
|
|
|
51412
51412
|
SDK_METADATA = {
|
|
51413
51413
|
language: "typescript",
|
|
51414
51414
|
openapiDocVersion: "0.1.0",
|
|
51415
|
-
sdkVersion: "0.0.
|
|
51415
|
+
sdkVersion: "0.0.33",
|
|
51416
51416
|
genVersion: "2.915.1",
|
|
51417
|
-
userAgent: "speakeasy-sdk/mcp-typescript 0.0.
|
|
51417
|
+
userAgent: "speakeasy-sdk/mcp-typescript 0.0.33 2.915.1 0.1.0 @dalmia/calibrate-mcp"
|
|
51418
51418
|
};
|
|
51419
51419
|
});
|
|
51420
51420
|
|
|
@@ -53073,19 +53073,19 @@ Requires a Calibrate API key (CALIBRATE_API_KEY).
|
|
|
53073
53073
|
};
|
|
53074
53074
|
});
|
|
53075
53075
|
|
|
53076
|
-
// src/models/
|
|
53077
|
-
var
|
|
53078
|
-
var
|
|
53076
|
+
// src/models/agentresponse.ts
|
|
53077
|
+
var AgentResponseType$zodSchema, AgentResponse$zodSchema;
|
|
53078
|
+
var init_agentresponse = __esm(() => {
|
|
53079
53079
|
init_zod();
|
|
53080
|
-
|
|
53080
|
+
AgentResponseType$zodSchema = _enum([
|
|
53081
53081
|
"agent",
|
|
53082
53082
|
"connection"
|
|
53083
53083
|
]).describe("- `agent`: built inside Calibrate\n- `connection`: your existing agent connected to Calibrate");
|
|
53084
|
-
|
|
53084
|
+
AgentResponse$zodSchema = object({
|
|
53085
53085
|
config: record(string2(), any()).nullable().optional().describe("Agent configuration"),
|
|
53086
53086
|
created_at: string2().describe("When the agent was created (ISO 8601 UTC)"),
|
|
53087
53087
|
name: string2().describe("Name of the agent"),
|
|
53088
|
-
type:
|
|
53088
|
+
type: AgentResponseType$zodSchema.describe("- `agent`: built inside Calibrate\n- `connection`: your existing agent connected to Calibrate"),
|
|
53089
53089
|
updated_at: string2().describe("When the agent was last updated (ISO 8601 UTC)"),
|
|
53090
53090
|
uuid: string2().describe("ID of the agent")
|
|
53091
53091
|
});
|
|
@@ -53095,14 +53095,14 @@ var init_routersagentsagentresponse = __esm(() => {
|
|
|
53095
53095
|
var GetAgentEndpointAgentsAgentUuidGetRequest$zodSchema, GetAgentEndpointAgentsAgentUuidGetResponse$zodSchema;
|
|
53096
53096
|
var init_getagentendpointagentsagentuuidgetop = __esm(() => {
|
|
53097
53097
|
init_zod();
|
|
53098
|
+
init_agentresponse();
|
|
53098
53099
|
init_httpvalidationerror();
|
|
53099
|
-
init_routersagentsagentresponse();
|
|
53100
53100
|
GetAgentEndpointAgentsAgentUuidGetRequest$zodSchema = object({
|
|
53101
53101
|
agent_uuid: string2().describe("The agent to retrieve"),
|
|
53102
53102
|
xAPIKey: string2().nullable().optional()
|
|
53103
53103
|
});
|
|
53104
53104
|
GetAgentEndpointAgentsAgentUuidGetResponse$zodSchema = union([
|
|
53105
|
-
|
|
53105
|
+
AgentResponse$zodSchema,
|
|
53106
53106
|
HTTPValidationError$zodSchema
|
|
53107
53107
|
]);
|
|
53108
53108
|
});
|
|
@@ -53394,6 +53394,7 @@ var init_agentsummary = __esm(() => {
|
|
|
53394
53394
|
]).describe("- `agent`: built inside Calibrate\n- `connection`: your existing agent connected to Calibrate");
|
|
53395
53395
|
AgentSummary$zodSchema = object({
|
|
53396
53396
|
connection_verified: boolean2().nullable().optional().describe("Whether the agent's connection has been verified, for a `type=connection` agent"),
|
|
53397
|
+
created_at: string2().describe("When the agent was created (ISO 8601 UTC)"),
|
|
53397
53398
|
has_default_inputs: boolean2().describe("Whether the agent has custom request fields configured"),
|
|
53398
53399
|
name: string2().describe("Name of the agent"),
|
|
53399
53400
|
type: AgentSummaryType$zodSchema.describe("- `agent`: built inside Calibrate\n- `connection`: your existing agent connected to Calibrate"),
|
|
@@ -53935,16 +53936,16 @@ var init_agentupdate = __esm(() => {
|
|
|
53935
53936
|
var UpdateAgentEndpointAgentsAgentUuidPutRequest$zodSchema, UpdateAgentEndpointAgentsAgentUuidPutResponse$zodSchema;
|
|
53936
53937
|
var init_updateagentendpointagentsagentuuidputop = __esm(() => {
|
|
53937
53938
|
init_zod();
|
|
53939
|
+
init_agentresponse();
|
|
53938
53940
|
init_agentupdate();
|
|
53939
53941
|
init_httpvalidationerror();
|
|
53940
|
-
init_routersagentsagentresponse();
|
|
53941
53942
|
UpdateAgentEndpointAgentsAgentUuidPutRequest$zodSchema = object({
|
|
53942
53943
|
agent_uuid: string2().describe("The agent to update"),
|
|
53943
53944
|
body: AgentUpdate$zodSchema,
|
|
53944
53945
|
xAPIKey: string2().nullable().optional()
|
|
53945
53946
|
});
|
|
53946
53947
|
UpdateAgentEndpointAgentsAgentUuidPutResponse$zodSchema = union([
|
|
53947
|
-
|
|
53948
|
+
AgentResponse$zodSchema,
|
|
53948
53949
|
HTTPValidationError$zodSchema
|
|
53949
53950
|
]);
|
|
53950
53951
|
});
|
|
@@ -58998,7 +58999,7 @@ fields to change (name, config). Returns the updated test. Fails with
|
|
|
58998
58999
|
function createMCPServer(deps) {
|
|
58999
59000
|
const server = new McpServer({
|
|
59000
59001
|
name: "CalibrateMcp",
|
|
59001
|
-
version: "0.0.
|
|
59002
|
+
version: "0.0.33"
|
|
59002
59003
|
});
|
|
59003
59004
|
const getClient = deps.getSDK || (() => new CalibrateMcpCore({
|
|
59004
59005
|
security: deps.security,
|
|
@@ -60225,7 +60226,7 @@ http_headers = { "api-key-auth" = "YOUR_API_KEY_AUTH" }`;
|
|
|
60225
60226
|
<h1>Instructions</h1>
|
|
60226
60227
|
<p>One-click installation for Claude Desktop users</p>
|
|
60227
60228
|
<div class="instruction-item">
|
|
60228
|
-
<a href="https://github.com/dalmia/calibrate-mcp/releases/download/v0.0.
|
|
60229
|
+
<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;">
|
|
60229
60230
|
\uD83D\uDCE5 Download MCP Bundle
|
|
60230
60231
|
</a>
|
|
60231
60232
|
</div>
|
|
@@ -63112,7 +63113,7 @@ var routes = buildRouteMap({
|
|
|
63112
63113
|
var app = buildApplication(routes, {
|
|
63113
63114
|
name: "mcp",
|
|
63114
63115
|
versionInfo: {
|
|
63115
|
-
currentVersion: "0.0.
|
|
63116
|
+
currentVersion: "0.0.33"
|
|
63116
63117
|
}
|
|
63117
63118
|
});
|
|
63118
63119
|
run(app, process4.argv.slice(2), buildContext(process4));
|
|
@@ -63120,5 +63121,5 @@ export {
|
|
|
63120
63121
|
app
|
|
63121
63122
|
};
|
|
63122
63123
|
|
|
63123
|
-
//# debugId=
|
|
63124
|
+
//# debugId=A6F639F9CFD6FECC64756E2164756E21
|
|
63124
63125
|
//# sourceMappingURL=mcp-server.js.map
|