@avallon-labs/mcp 33.0.0 → 34.0.0-staging.855
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
|
@@ -5681,8 +5681,10 @@ var SignInBody = zod.union([
|
|
|
5681
5681
|
}),
|
|
5682
5682
|
zod.object({
|
|
5683
5683
|
type: zod.literal("oauth"),
|
|
5684
|
-
code: zod.string(),
|
|
5685
|
-
verifier: zod.string()
|
|
5684
|
+
code: zod.string().min(1),
|
|
5685
|
+
verifier: zod.string().min(1).optional().describe(
|
|
5686
|
+
"PKCE verifier. Required only when the flow was started with a code_challenge."
|
|
5687
|
+
),
|
|
5686
5688
|
provider: zod.enum(["google", "microsoft", "sso"]).optional()
|
|
5687
5689
|
}),
|
|
5688
5690
|
zod.object({
|
|
@@ -5709,8 +5711,12 @@ var RefreshTokenResponse = zod.object({
|
|
|
5709
5711
|
var GetOAuthUrlQueryParams = zod.object({
|
|
5710
5712
|
provider: zod.enum(["google", "microsoft", "sso"]),
|
|
5711
5713
|
redirect_uri: zod.string().url(),
|
|
5712
|
-
code_challenge_method: zod.enum(["plain", "s256"])
|
|
5713
|
-
|
|
5714
|
+
code_challenge_method: zod.enum(["plain", "s256"]).optional().describe(
|
|
5715
|
+
"How code_challenge was derived. Required whenever code_challenge is sent."
|
|
5716
|
+
),
|
|
5717
|
+
code_challenge: zod.string().min(1).optional().describe(
|
|
5718
|
+
"PKCE challenge derived from a verifier you keep until sign-in. Omit, together with code_challenge_method, to run the flow without PKCE."
|
|
5719
|
+
),
|
|
5714
5720
|
email: zod.string().email().optional()
|
|
5715
5721
|
});
|
|
5716
5722
|
var GetOAuthUrlResponse = zod.object({
|
|
@@ -6530,7 +6536,17 @@ var CreateWorkerBody = zod.object({
|
|
|
6530
6536
|
prompt: zod.string().min(1).optional(),
|
|
6531
6537
|
instruction_template: zod.string().min(1).optional().describe("Deprecated. Use `prompt` instead."),
|
|
6532
6538
|
env_vars: zod.record(zod.string(), zod.string()),
|
|
6533
|
-
mcp_type: zod.union([
|
|
6539
|
+
mcp_type: zod.union([
|
|
6540
|
+
zod.enum([
|
|
6541
|
+
"ventiv",
|
|
6542
|
+
"klear",
|
|
6543
|
+
"klear-browser",
|
|
6544
|
+
"demo-browser",
|
|
6545
|
+
"demo-claims",
|
|
6546
|
+
"filehandler-browser"
|
|
6547
|
+
]),
|
|
6548
|
+
zod.null()
|
|
6549
|
+
]).optional()
|
|
6534
6550
|
});
|
|
6535
6551
|
var createWorkerResponseVersionMin = 0;
|
|
6536
6552
|
var CreateWorkerResponse = zod.object({
|
|
@@ -6538,7 +6554,14 @@ var CreateWorkerResponse = zod.object({
|
|
|
6538
6554
|
name: zod.string(),
|
|
6539
6555
|
mcps: zod.array(
|
|
6540
6556
|
zod.object({
|
|
6541
|
-
name: zod.enum([
|
|
6557
|
+
name: zod.enum([
|
|
6558
|
+
"ventiv",
|
|
6559
|
+
"klear",
|
|
6560
|
+
"klear-browser",
|
|
6561
|
+
"demo-browser",
|
|
6562
|
+
"demo-claims",
|
|
6563
|
+
"filehandler-browser"
|
|
6564
|
+
]).describe("MCP server identifier.")
|
|
6542
6565
|
})
|
|
6543
6566
|
).describe("MCP servers the worker connects to."),
|
|
6544
6567
|
mcp_type: zod.union([zod.string(), zod.null()]).describe(
|
|
@@ -6572,7 +6595,14 @@ var ListWorkersResponseItem = zod.object({
|
|
|
6572
6595
|
name: zod.string(),
|
|
6573
6596
|
mcps: zod.array(
|
|
6574
6597
|
zod.object({
|
|
6575
|
-
name: zod.enum([
|
|
6598
|
+
name: zod.enum([
|
|
6599
|
+
"ventiv",
|
|
6600
|
+
"klear",
|
|
6601
|
+
"klear-browser",
|
|
6602
|
+
"demo-browser",
|
|
6603
|
+
"demo-claims",
|
|
6604
|
+
"filehandler-browser"
|
|
6605
|
+
]).describe("MCP server identifier.")
|
|
6576
6606
|
})
|
|
6577
6607
|
).describe("MCP servers the worker connects to."),
|
|
6578
6608
|
mcp_type: zod.union([zod.string(), zod.null()]).describe(
|
|
@@ -6592,7 +6622,14 @@ var GetWorkerResponse = zod.object({
|
|
|
6592
6622
|
name: zod.string(),
|
|
6593
6623
|
mcps: zod.array(
|
|
6594
6624
|
zod.object({
|
|
6595
|
-
name: zod.enum([
|
|
6625
|
+
name: zod.enum([
|
|
6626
|
+
"ventiv",
|
|
6627
|
+
"klear",
|
|
6628
|
+
"klear-browser",
|
|
6629
|
+
"demo-browser",
|
|
6630
|
+
"demo-claims",
|
|
6631
|
+
"filehandler-browser"
|
|
6632
|
+
]).describe("MCP server identifier.")
|
|
6596
6633
|
})
|
|
6597
6634
|
).describe("MCP servers the worker connects to."),
|
|
6598
6635
|
mcp_type: zod.union([zod.string(), zod.null()]).describe(
|
|
@@ -6634,7 +6671,14 @@ var UpdateWorkerResponse = zod.object({
|
|
|
6634
6671
|
name: zod.string(),
|
|
6635
6672
|
mcps: zod.array(
|
|
6636
6673
|
zod.object({
|
|
6637
|
-
name: zod.enum([
|
|
6674
|
+
name: zod.enum([
|
|
6675
|
+
"ventiv",
|
|
6676
|
+
"klear",
|
|
6677
|
+
"klear-browser",
|
|
6678
|
+
"demo-browser",
|
|
6679
|
+
"demo-claims",
|
|
6680
|
+
"filehandler-browser"
|
|
6681
|
+
]).describe("MCP server identifier.")
|
|
6638
6682
|
})
|
|
6639
6683
|
).describe("MCP servers the worker connects to."),
|
|
6640
6684
|
mcp_type: zod.union([zod.string(), zod.null()]).describe(
|
|
@@ -6676,7 +6720,14 @@ var UpdateWorkerMcpsParams = zod.object({
|
|
|
6676
6720
|
var UpdateWorkerMcpsBody = zod.object({
|
|
6677
6721
|
mcps: zod.array(
|
|
6678
6722
|
zod.object({
|
|
6679
|
-
name: zod.enum([
|
|
6723
|
+
name: zod.enum([
|
|
6724
|
+
"ventiv",
|
|
6725
|
+
"klear",
|
|
6726
|
+
"klear-browser",
|
|
6727
|
+
"demo-browser",
|
|
6728
|
+
"demo-claims",
|
|
6729
|
+
"filehandler-browser"
|
|
6730
|
+
]).describe("MCP server identifier.")
|
|
6680
6731
|
})
|
|
6681
6732
|
).describe(
|
|
6682
6733
|
"MCP servers the worker connects to, replacing the current set. Pass an empty array to disconnect the worker from all MCP servers."
|
|
@@ -6688,7 +6739,14 @@ var UpdateWorkerMcpsResponse = zod.object({
|
|
|
6688
6739
|
name: zod.string(),
|
|
6689
6740
|
mcps: zod.array(
|
|
6690
6741
|
zod.object({
|
|
6691
|
-
name: zod.enum([
|
|
6742
|
+
name: zod.enum([
|
|
6743
|
+
"ventiv",
|
|
6744
|
+
"klear",
|
|
6745
|
+
"klear-browser",
|
|
6746
|
+
"demo-browser",
|
|
6747
|
+
"demo-claims",
|
|
6748
|
+
"filehandler-browser"
|
|
6749
|
+
]).describe("MCP server identifier.")
|
|
6692
6750
|
})
|
|
6693
6751
|
).describe("MCP servers the worker connects to."),
|
|
6694
6752
|
mcp_type: zod.union([zod.string(), zod.null()]).describe(
|
|
@@ -8819,4 +8877,4 @@ var transport = new StdioServerTransport();
|
|
|
8819
8877
|
server.connect(transport).then(() => {
|
|
8820
8878
|
console.error("MCP server running on stdio");
|
|
8821
8879
|
}).catch(console.error);
|
|
8822
|
-
//# sourceMappingURL=server-
|
|
8880
|
+
//# sourceMappingURL=server-6E7KTMB7.js.map
|