@avallon-labs/mcp 42.1.0 → 42.2.0
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/dist/index.js
CHANGED
|
@@ -9463,7 +9463,10 @@ var GetToolResponse = zod.object({
|
|
|
9463
9463
|
description: zod.string(),
|
|
9464
9464
|
code: zod.string(),
|
|
9465
9465
|
schema: zod.record(zod.string(), zod.unknown()),
|
|
9466
|
-
has_api_key: zod.boolean()
|
|
9466
|
+
has_api_key: zod.boolean(),
|
|
9467
|
+
secret_ids: zod.array(zod.string()).describe(
|
|
9468
|
+
"Secrets attached to the tool. A tool with attached secrets takes its execution environment exclusively from the secret store, each secret arriving under its own env key."
|
|
9469
|
+
)
|
|
9467
9470
|
})
|
|
9468
9471
|
}),
|
|
9469
9472
|
message: zod.string()
|
|
@@ -9475,7 +9478,10 @@ var UpdateToolBody = zod.object({
|
|
|
9475
9478
|
name: zod.string().min(1).optional(),
|
|
9476
9479
|
api_key: zod.union([zod.string().min(1), zod.null()]).optional(),
|
|
9477
9480
|
code: zod.string().min(1).optional(),
|
|
9478
|
-
description: zod.string().min(1).optional()
|
|
9481
|
+
description: zod.string().min(1).optional(),
|
|
9482
|
+
secret_ids: zod.array(zod.string().uuid()).optional().describe(
|
|
9483
|
+
"Replace the tool's attached secret set. Omit to leave unchanged; pass [] to detach all."
|
|
9484
|
+
)
|
|
9479
9485
|
});
|
|
9480
9486
|
var UpdateToolResponse = zod.object({
|
|
9481
9487
|
data: zod.object({
|
|
@@ -9483,9 +9489,12 @@ var UpdateToolResponse = zod.object({
|
|
|
9483
9489
|
id: zod.string(),
|
|
9484
9490
|
name: zod.string(),
|
|
9485
9491
|
description: zod.string(),
|
|
9486
|
-
schema: zod.record(zod.string(), zod.unknown()),
|
|
9487
9492
|
code: zod.string(),
|
|
9488
|
-
|
|
9493
|
+
schema: zod.record(zod.string(), zod.unknown()),
|
|
9494
|
+
has_api_key: zod.boolean(),
|
|
9495
|
+
secret_ids: zod.array(zod.string()).describe(
|
|
9496
|
+
"Secrets attached to the tool. A tool with attached secrets takes its execution environment exclusively from the secret store, each secret arriving under its own env key."
|
|
9497
|
+
)
|
|
9489
9498
|
})
|
|
9490
9499
|
}),
|
|
9491
9500
|
message: zod.string()
|
|
@@ -11119,4 +11128,4 @@ var transport = new StdioServerTransport();
|
|
|
11119
11128
|
server.connect(transport).then(() => {
|
|
11120
11129
|
console.error("MCP server running on stdio");
|
|
11121
11130
|
}).catch(console.error);
|
|
11122
|
-
//# sourceMappingURL=server-
|
|
11131
|
+
//# sourceMappingURL=server-JT3HJUIE.js.map
|