@getpaseo/protocol 0.1.91-beta.1 → 0.1.91-beta.2

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.
@@ -11,6 +11,11 @@ export interface McpStdioServerConfig {
11
11
  command: string;
12
12
  args?: string[];
13
13
  env?: Record<string, string>;
14
+ /**
15
+ * When true, all tools from this server are always included in the prompt
16
+ * and never deferred behind tool search. Honored by the Claude provider.
17
+ */
18
+ alwaysLoad?: boolean;
14
19
  }
15
20
  /**
16
21
  * HTTP-based MCP server.
@@ -19,6 +24,11 @@ export interface McpHttpServerConfig {
19
24
  type: "http";
20
25
  url: string;
21
26
  headers?: Record<string, string>;
27
+ /**
28
+ * When true, all tools from this server are always included in the prompt
29
+ * and never deferred behind tool search. Honored by the Claude provider.
30
+ */
31
+ alwaysLoad?: boolean;
22
32
  }
23
33
  /**
24
34
  * SSE-based MCP server (Server-Sent Events over HTTP).
@@ -27,6 +37,11 @@ export interface McpSseServerConfig {
27
37
  type: "sse";
28
38
  url: string;
29
39
  headers?: Record<string, string>;
40
+ /**
41
+ * When true, all tools from this server are always included in the prompt
42
+ * and never deferred behind tool search. Honored by the Claude provider.
43
+ */
44
+ alwaysLoad?: boolean;
30
45
  }
31
46
  /**
32
47
  * Canonical MCP server configuration.
@@ -3687,39 +3687,48 @@ export declare const CreateAgentRequestMessageSchema: z.ZodObject<{
3687
3687
  command: z.ZodString;
3688
3688
  args: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3689
3689
  env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3690
+ alwaysLoad: z.ZodOptional<z.ZodBoolean>;
3690
3691
  }, "strip", z.ZodTypeAny, {
3691
3692
  type: "stdio";
3692
3693
  command: string;
3693
3694
  args?: string[] | undefined;
3694
3695
  env?: Record<string, string> | undefined;
3696
+ alwaysLoad?: boolean | undefined;
3695
3697
  }, {
3696
3698
  type: "stdio";
3697
3699
  command: string;
3698
3700
  args?: string[] | undefined;
3699
3701
  env?: Record<string, string> | undefined;
3702
+ alwaysLoad?: boolean | undefined;
3700
3703
  }>, z.ZodObject<{
3701
3704
  type: z.ZodLiteral<"http">;
3702
3705
  url: z.ZodString;
3703
3706
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3707
+ alwaysLoad: z.ZodOptional<z.ZodBoolean>;
3704
3708
  }, "strip", z.ZodTypeAny, {
3705
3709
  type: "http";
3706
3710
  url: string;
3711
+ alwaysLoad?: boolean | undefined;
3707
3712
  headers?: Record<string, string> | undefined;
3708
3713
  }, {
3709
3714
  type: "http";
3710
3715
  url: string;
3716
+ alwaysLoad?: boolean | undefined;
3711
3717
  headers?: Record<string, string> | undefined;
3712
3718
  }>, z.ZodObject<{
3713
3719
  type: z.ZodLiteral<"sse">;
3714
3720
  url: z.ZodString;
3715
3721
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3722
+ alwaysLoad: z.ZodOptional<z.ZodBoolean>;
3716
3723
  }, "strip", z.ZodTypeAny, {
3717
3724
  type: "sse";
3718
3725
  url: string;
3726
+ alwaysLoad?: boolean | undefined;
3719
3727
  headers?: Record<string, string> | undefined;
3720
3728
  }, {
3721
3729
  type: "sse";
3722
3730
  url: string;
3731
+ alwaysLoad?: boolean | undefined;
3723
3732
  headers?: Record<string, string> | undefined;
3724
3733
  }>]>>>;
3725
3734
  }, "strip", z.ZodTypeAny, {
@@ -3744,13 +3753,16 @@ export declare const CreateAgentRequestMessageSchema: z.ZodObject<{
3744
3753
  command: string;
3745
3754
  args?: string[] | undefined;
3746
3755
  env?: Record<string, string> | undefined;
3756
+ alwaysLoad?: boolean | undefined;
3747
3757
  } | {
3748
3758
  type: "http";
3749
3759
  url: string;
3760
+ alwaysLoad?: boolean | undefined;
3750
3761
  headers?: Record<string, string> | undefined;
3751
3762
  } | {
3752
3763
  type: "sse";
3753
3764
  url: string;
3765
+ alwaysLoad?: boolean | undefined;
3754
3766
  headers?: Record<string, string> | undefined;
3755
3767
  }> | undefined;
3756
3768
  }, {
@@ -3775,13 +3787,16 @@ export declare const CreateAgentRequestMessageSchema: z.ZodObject<{
3775
3787
  command: string;
3776
3788
  args?: string[] | undefined;
3777
3789
  env?: Record<string, string> | undefined;
3790
+ alwaysLoad?: boolean | undefined;
3778
3791
  } | {
3779
3792
  type: "http";
3780
3793
  url: string;
3794
+ alwaysLoad?: boolean | undefined;
3781
3795
  headers?: Record<string, string> | undefined;
3782
3796
  } | {
3783
3797
  type: "sse";
3784
3798
  url: string;
3799
+ alwaysLoad?: boolean | undefined;
3785
3800
  headers?: Record<string, string> | undefined;
3786
3801
  }> | undefined;
3787
3802
  }>;
@@ -3937,13 +3952,16 @@ export declare const CreateAgentRequestMessageSchema: z.ZodObject<{
3937
3952
  command: string;
3938
3953
  args?: string[] | undefined;
3939
3954
  env?: Record<string, string> | undefined;
3955
+ alwaysLoad?: boolean | undefined;
3940
3956
  } | {
3941
3957
  type: "http";
3942
3958
  url: string;
3959
+ alwaysLoad?: boolean | undefined;
3943
3960
  headers?: Record<string, string> | undefined;
3944
3961
  } | {
3945
3962
  type: "sse";
3946
3963
  url: string;
3964
+ alwaysLoad?: boolean | undefined;
3947
3965
  headers?: Record<string, string> | undefined;
3948
3966
  }> | undefined;
3949
3967
  };
@@ -4054,13 +4072,16 @@ export declare const CreateAgentRequestMessageSchema: z.ZodObject<{
4054
4072
  command: string;
4055
4073
  args?: string[] | undefined;
4056
4074
  env?: Record<string, string> | undefined;
4075
+ alwaysLoad?: boolean | undefined;
4057
4076
  } | {
4058
4077
  type: "http";
4059
4078
  url: string;
4079
+ alwaysLoad?: boolean | undefined;
4060
4080
  headers?: Record<string, string> | undefined;
4061
4081
  } | {
4062
4082
  type: "sse";
4063
4083
  url: string;
4084
+ alwaysLoad?: boolean | undefined;
4064
4085
  headers?: Record<string, string> | undefined;
4065
4086
  }> | undefined;
4066
4087
  };
@@ -4214,39 +4235,48 @@ export declare const ResumeAgentRequestMessageSchema: z.ZodObject<{
4214
4235
  command: z.ZodString;
4215
4236
  args: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4216
4237
  env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
4238
+ alwaysLoad: z.ZodOptional<z.ZodBoolean>;
4217
4239
  }, "strip", z.ZodTypeAny, {
4218
4240
  type: "stdio";
4219
4241
  command: string;
4220
4242
  args?: string[] | undefined;
4221
4243
  env?: Record<string, string> | undefined;
4244
+ alwaysLoad?: boolean | undefined;
4222
4245
  }, {
4223
4246
  type: "stdio";
4224
4247
  command: string;
4225
4248
  args?: string[] | undefined;
4226
4249
  env?: Record<string, string> | undefined;
4250
+ alwaysLoad?: boolean | undefined;
4227
4251
  }>, z.ZodObject<{
4228
4252
  type: z.ZodLiteral<"http">;
4229
4253
  url: z.ZodString;
4230
4254
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
4255
+ alwaysLoad: z.ZodOptional<z.ZodBoolean>;
4231
4256
  }, "strip", z.ZodTypeAny, {
4232
4257
  type: "http";
4233
4258
  url: string;
4259
+ alwaysLoad?: boolean | undefined;
4234
4260
  headers?: Record<string, string> | undefined;
4235
4261
  }, {
4236
4262
  type: "http";
4237
4263
  url: string;
4264
+ alwaysLoad?: boolean | undefined;
4238
4265
  headers?: Record<string, string> | undefined;
4239
4266
  }>, z.ZodObject<{
4240
4267
  type: z.ZodLiteral<"sse">;
4241
4268
  url: z.ZodString;
4242
4269
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
4270
+ alwaysLoad: z.ZodOptional<z.ZodBoolean>;
4243
4271
  }, "strip", z.ZodTypeAny, {
4244
4272
  type: "sse";
4245
4273
  url: string;
4274
+ alwaysLoad?: boolean | undefined;
4246
4275
  headers?: Record<string, string> | undefined;
4247
4276
  }, {
4248
4277
  type: "sse";
4249
4278
  url: string;
4279
+ alwaysLoad?: boolean | undefined;
4250
4280
  headers?: Record<string, string> | undefined;
4251
4281
  }>]>>>>;
4252
4282
  }, "strip", z.ZodTypeAny, {
@@ -4271,13 +4301,16 @@ export declare const ResumeAgentRequestMessageSchema: z.ZodObject<{
4271
4301
  command: string;
4272
4302
  args?: string[] | undefined;
4273
4303
  env?: Record<string, string> | undefined;
4304
+ alwaysLoad?: boolean | undefined;
4274
4305
  } | {
4275
4306
  type: "http";
4276
4307
  url: string;
4308
+ alwaysLoad?: boolean | undefined;
4277
4309
  headers?: Record<string, string> | undefined;
4278
4310
  } | {
4279
4311
  type: "sse";
4280
4312
  url: string;
4313
+ alwaysLoad?: boolean | undefined;
4281
4314
  headers?: Record<string, string> | undefined;
4282
4315
  }> | undefined;
4283
4316
  }, {
@@ -4302,13 +4335,16 @@ export declare const ResumeAgentRequestMessageSchema: z.ZodObject<{
4302
4335
  command: string;
4303
4336
  args?: string[] | undefined;
4304
4337
  env?: Record<string, string> | undefined;
4338
+ alwaysLoad?: boolean | undefined;
4305
4339
  } | {
4306
4340
  type: "http";
4307
4341
  url: string;
4342
+ alwaysLoad?: boolean | undefined;
4308
4343
  headers?: Record<string, string> | undefined;
4309
4344
  } | {
4310
4345
  type: "sse";
4311
4346
  url: string;
4347
+ alwaysLoad?: boolean | undefined;
4312
4348
  headers?: Record<string, string> | undefined;
4313
4349
  }> | undefined;
4314
4350
  }>>;
@@ -4339,13 +4375,16 @@ export declare const ResumeAgentRequestMessageSchema: z.ZodObject<{
4339
4375
  command: string;
4340
4376
  args?: string[] | undefined;
4341
4377
  env?: Record<string, string> | undefined;
4378
+ alwaysLoad?: boolean | undefined;
4342
4379
  } | {
4343
4380
  type: "http";
4344
4381
  url: string;
4382
+ alwaysLoad?: boolean | undefined;
4345
4383
  headers?: Record<string, string> | undefined;
4346
4384
  } | {
4347
4385
  type: "sse";
4348
4386
  url: string;
4387
+ alwaysLoad?: boolean | undefined;
4349
4388
  headers?: Record<string, string> | undefined;
4350
4389
  }> | undefined;
4351
4390
  } | undefined;
@@ -4375,13 +4414,16 @@ export declare const ResumeAgentRequestMessageSchema: z.ZodObject<{
4375
4414
  command: string;
4376
4415
  args?: string[] | undefined;
4377
4416
  env?: Record<string, string> | undefined;
4417
+ alwaysLoad?: boolean | undefined;
4378
4418
  } | {
4379
4419
  type: "http";
4380
4420
  url: string;
4421
+ alwaysLoad?: boolean | undefined;
4381
4422
  headers?: Record<string, string> | undefined;
4382
4423
  } | {
4383
4424
  type: "sse";
4384
4425
  url: string;
4426
+ alwaysLoad?: boolean | undefined;
4385
4427
  headers?: Record<string, string> | undefined;
4386
4428
  }> | undefined;
4387
4429
  } | undefined;
@@ -7932,39 +7974,48 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
7932
7974
  command: z.ZodString;
7933
7975
  args: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7934
7976
  env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
7977
+ alwaysLoad: z.ZodOptional<z.ZodBoolean>;
7935
7978
  }, "strip", z.ZodTypeAny, {
7936
7979
  type: "stdio";
7937
7980
  command: string;
7938
7981
  args?: string[] | undefined;
7939
7982
  env?: Record<string, string> | undefined;
7983
+ alwaysLoad?: boolean | undefined;
7940
7984
  }, {
7941
7985
  type: "stdio";
7942
7986
  command: string;
7943
7987
  args?: string[] | undefined;
7944
7988
  env?: Record<string, string> | undefined;
7989
+ alwaysLoad?: boolean | undefined;
7945
7990
  }>, z.ZodObject<{
7946
7991
  type: z.ZodLiteral<"http">;
7947
7992
  url: z.ZodString;
7948
7993
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
7994
+ alwaysLoad: z.ZodOptional<z.ZodBoolean>;
7949
7995
  }, "strip", z.ZodTypeAny, {
7950
7996
  type: "http";
7951
7997
  url: string;
7998
+ alwaysLoad?: boolean | undefined;
7952
7999
  headers?: Record<string, string> | undefined;
7953
8000
  }, {
7954
8001
  type: "http";
7955
8002
  url: string;
8003
+ alwaysLoad?: boolean | undefined;
7956
8004
  headers?: Record<string, string> | undefined;
7957
8005
  }>, z.ZodObject<{
7958
8006
  type: z.ZodLiteral<"sse">;
7959
8007
  url: z.ZodString;
7960
8008
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
8009
+ alwaysLoad: z.ZodOptional<z.ZodBoolean>;
7961
8010
  }, "strip", z.ZodTypeAny, {
7962
8011
  type: "sse";
7963
8012
  url: string;
8013
+ alwaysLoad?: boolean | undefined;
7964
8014
  headers?: Record<string, string> | undefined;
7965
8015
  }, {
7966
8016
  type: "sse";
7967
8017
  url: string;
8018
+ alwaysLoad?: boolean | undefined;
7968
8019
  headers?: Record<string, string> | undefined;
7969
8020
  }>]>>>;
7970
8021
  }, "strip", z.ZodTypeAny, {
@@ -7989,13 +8040,16 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
7989
8040
  command: string;
7990
8041
  args?: string[] | undefined;
7991
8042
  env?: Record<string, string> | undefined;
8043
+ alwaysLoad?: boolean | undefined;
7992
8044
  } | {
7993
8045
  type: "http";
7994
8046
  url: string;
8047
+ alwaysLoad?: boolean | undefined;
7995
8048
  headers?: Record<string, string> | undefined;
7996
8049
  } | {
7997
8050
  type: "sse";
7998
8051
  url: string;
8052
+ alwaysLoad?: boolean | undefined;
7999
8053
  headers?: Record<string, string> | undefined;
8000
8054
  }> | undefined;
8001
8055
  }, {
@@ -8020,13 +8074,16 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
8020
8074
  command: string;
8021
8075
  args?: string[] | undefined;
8022
8076
  env?: Record<string, string> | undefined;
8077
+ alwaysLoad?: boolean | undefined;
8023
8078
  } | {
8024
8079
  type: "http";
8025
8080
  url: string;
8081
+ alwaysLoad?: boolean | undefined;
8026
8082
  headers?: Record<string, string> | undefined;
8027
8083
  } | {
8028
8084
  type: "sse";
8029
8085
  url: string;
8086
+ alwaysLoad?: boolean | undefined;
8030
8087
  headers?: Record<string, string> | undefined;
8031
8088
  }> | undefined;
8032
8089
  }>;
@@ -8182,13 +8239,16 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
8182
8239
  command: string;
8183
8240
  args?: string[] | undefined;
8184
8241
  env?: Record<string, string> | undefined;
8242
+ alwaysLoad?: boolean | undefined;
8185
8243
  } | {
8186
8244
  type: "http";
8187
8245
  url: string;
8246
+ alwaysLoad?: boolean | undefined;
8188
8247
  headers?: Record<string, string> | undefined;
8189
8248
  } | {
8190
8249
  type: "sse";
8191
8250
  url: string;
8251
+ alwaysLoad?: boolean | undefined;
8192
8252
  headers?: Record<string, string> | undefined;
8193
8253
  }> | undefined;
8194
8254
  };
@@ -8299,13 +8359,16 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
8299
8359
  command: string;
8300
8360
  args?: string[] | undefined;
8301
8361
  env?: Record<string, string> | undefined;
8362
+ alwaysLoad?: boolean | undefined;
8302
8363
  } | {
8303
8364
  type: "http";
8304
8365
  url: string;
8366
+ alwaysLoad?: boolean | undefined;
8305
8367
  headers?: Record<string, string> | undefined;
8306
8368
  } | {
8307
8369
  type: "sse";
8308
8370
  url: string;
8371
+ alwaysLoad?: boolean | undefined;
8309
8372
  headers?: Record<string, string> | undefined;
8310
8373
  }> | undefined;
8311
8374
  };
@@ -8499,39 +8562,48 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
8499
8562
  command: z.ZodString;
8500
8563
  args: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8501
8564
  env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
8565
+ alwaysLoad: z.ZodOptional<z.ZodBoolean>;
8502
8566
  }, "strip", z.ZodTypeAny, {
8503
8567
  type: "stdio";
8504
8568
  command: string;
8505
8569
  args?: string[] | undefined;
8506
8570
  env?: Record<string, string> | undefined;
8571
+ alwaysLoad?: boolean | undefined;
8507
8572
  }, {
8508
8573
  type: "stdio";
8509
8574
  command: string;
8510
8575
  args?: string[] | undefined;
8511
8576
  env?: Record<string, string> | undefined;
8577
+ alwaysLoad?: boolean | undefined;
8512
8578
  }>, z.ZodObject<{
8513
8579
  type: z.ZodLiteral<"http">;
8514
8580
  url: z.ZodString;
8515
8581
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
8582
+ alwaysLoad: z.ZodOptional<z.ZodBoolean>;
8516
8583
  }, "strip", z.ZodTypeAny, {
8517
8584
  type: "http";
8518
8585
  url: string;
8586
+ alwaysLoad?: boolean | undefined;
8519
8587
  headers?: Record<string, string> | undefined;
8520
8588
  }, {
8521
8589
  type: "http";
8522
8590
  url: string;
8591
+ alwaysLoad?: boolean | undefined;
8523
8592
  headers?: Record<string, string> | undefined;
8524
8593
  }>, z.ZodObject<{
8525
8594
  type: z.ZodLiteral<"sse">;
8526
8595
  url: z.ZodString;
8527
8596
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
8597
+ alwaysLoad: z.ZodOptional<z.ZodBoolean>;
8528
8598
  }, "strip", z.ZodTypeAny, {
8529
8599
  type: "sse";
8530
8600
  url: string;
8601
+ alwaysLoad?: boolean | undefined;
8531
8602
  headers?: Record<string, string> | undefined;
8532
8603
  }, {
8533
8604
  type: "sse";
8534
8605
  url: string;
8606
+ alwaysLoad?: boolean | undefined;
8535
8607
  headers?: Record<string, string> | undefined;
8536
8608
  }>]>>>>;
8537
8609
  }, "strip", z.ZodTypeAny, {
@@ -8556,13 +8628,16 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
8556
8628
  command: string;
8557
8629
  args?: string[] | undefined;
8558
8630
  env?: Record<string, string> | undefined;
8631
+ alwaysLoad?: boolean | undefined;
8559
8632
  } | {
8560
8633
  type: "http";
8561
8634
  url: string;
8635
+ alwaysLoad?: boolean | undefined;
8562
8636
  headers?: Record<string, string> | undefined;
8563
8637
  } | {
8564
8638
  type: "sse";
8565
8639
  url: string;
8640
+ alwaysLoad?: boolean | undefined;
8566
8641
  headers?: Record<string, string> | undefined;
8567
8642
  }> | undefined;
8568
8643
  }, {
@@ -8587,13 +8662,16 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
8587
8662
  command: string;
8588
8663
  args?: string[] | undefined;
8589
8664
  env?: Record<string, string> | undefined;
8665
+ alwaysLoad?: boolean | undefined;
8590
8666
  } | {
8591
8667
  type: "http";
8592
8668
  url: string;
8669
+ alwaysLoad?: boolean | undefined;
8593
8670
  headers?: Record<string, string> | undefined;
8594
8671
  } | {
8595
8672
  type: "sse";
8596
8673
  url: string;
8674
+ alwaysLoad?: boolean | undefined;
8597
8675
  headers?: Record<string, string> | undefined;
8598
8676
  }> | undefined;
8599
8677
  }>>;
@@ -8624,13 +8702,16 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
8624
8702
  command: string;
8625
8703
  args?: string[] | undefined;
8626
8704
  env?: Record<string, string> | undefined;
8705
+ alwaysLoad?: boolean | undefined;
8627
8706
  } | {
8628
8707
  type: "http";
8629
8708
  url: string;
8709
+ alwaysLoad?: boolean | undefined;
8630
8710
  headers?: Record<string, string> | undefined;
8631
8711
  } | {
8632
8712
  type: "sse";
8633
8713
  url: string;
8714
+ alwaysLoad?: boolean | undefined;
8634
8715
  headers?: Record<string, string> | undefined;
8635
8716
  }> | undefined;
8636
8717
  } | undefined;
@@ -8660,13 +8741,16 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
8660
8741
  command: string;
8661
8742
  args?: string[] | undefined;
8662
8743
  env?: Record<string, string> | undefined;
8744
+ alwaysLoad?: boolean | undefined;
8663
8745
  } | {
8664
8746
  type: "http";
8665
8747
  url: string;
8748
+ alwaysLoad?: boolean | undefined;
8666
8749
  headers?: Record<string, string> | undefined;
8667
8750
  } | {
8668
8751
  type: "sse";
8669
8752
  url: string;
8753
+ alwaysLoad?: boolean | undefined;
8670
8754
  headers?: Record<string, string> | undefined;
8671
8755
  }> | undefined;
8672
8756
  } | undefined;
@@ -69272,39 +69356,48 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
69272
69356
  command: z.ZodString;
69273
69357
  args: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
69274
69358
  env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
69359
+ alwaysLoad: z.ZodOptional<z.ZodBoolean>;
69275
69360
  }, "strip", z.ZodTypeAny, {
69276
69361
  type: "stdio";
69277
69362
  command: string;
69278
69363
  args?: string[] | undefined;
69279
69364
  env?: Record<string, string> | undefined;
69365
+ alwaysLoad?: boolean | undefined;
69280
69366
  }, {
69281
69367
  type: "stdio";
69282
69368
  command: string;
69283
69369
  args?: string[] | undefined;
69284
69370
  env?: Record<string, string> | undefined;
69371
+ alwaysLoad?: boolean | undefined;
69285
69372
  }>, z.ZodObject<{
69286
69373
  type: z.ZodLiteral<"http">;
69287
69374
  url: z.ZodString;
69288
69375
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
69376
+ alwaysLoad: z.ZodOptional<z.ZodBoolean>;
69289
69377
  }, "strip", z.ZodTypeAny, {
69290
69378
  type: "http";
69291
69379
  url: string;
69380
+ alwaysLoad?: boolean | undefined;
69292
69381
  headers?: Record<string, string> | undefined;
69293
69382
  }, {
69294
69383
  type: "http";
69295
69384
  url: string;
69385
+ alwaysLoad?: boolean | undefined;
69296
69386
  headers?: Record<string, string> | undefined;
69297
69387
  }>, z.ZodObject<{
69298
69388
  type: z.ZodLiteral<"sse">;
69299
69389
  url: z.ZodString;
69300
69390
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
69391
+ alwaysLoad: z.ZodOptional<z.ZodBoolean>;
69301
69392
  }, "strip", z.ZodTypeAny, {
69302
69393
  type: "sse";
69303
69394
  url: string;
69395
+ alwaysLoad?: boolean | undefined;
69304
69396
  headers?: Record<string, string> | undefined;
69305
69397
  }, {
69306
69398
  type: "sse";
69307
69399
  url: string;
69400
+ alwaysLoad?: boolean | undefined;
69308
69401
  headers?: Record<string, string> | undefined;
69309
69402
  }>]>>>;
69310
69403
  }, "strip", z.ZodTypeAny, {
@@ -69329,13 +69422,16 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
69329
69422
  command: string;
69330
69423
  args?: string[] | undefined;
69331
69424
  env?: Record<string, string> | undefined;
69425
+ alwaysLoad?: boolean | undefined;
69332
69426
  } | {
69333
69427
  type: "http";
69334
69428
  url: string;
69429
+ alwaysLoad?: boolean | undefined;
69335
69430
  headers?: Record<string, string> | undefined;
69336
69431
  } | {
69337
69432
  type: "sse";
69338
69433
  url: string;
69434
+ alwaysLoad?: boolean | undefined;
69339
69435
  headers?: Record<string, string> | undefined;
69340
69436
  }> | undefined;
69341
69437
  }, {
@@ -69360,13 +69456,16 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
69360
69456
  command: string;
69361
69457
  args?: string[] | undefined;
69362
69458
  env?: Record<string, string> | undefined;
69459
+ alwaysLoad?: boolean | undefined;
69363
69460
  } | {
69364
69461
  type: "http";
69365
69462
  url: string;
69463
+ alwaysLoad?: boolean | undefined;
69366
69464
  headers?: Record<string, string> | undefined;
69367
69465
  } | {
69368
69466
  type: "sse";
69369
69467
  url: string;
69468
+ alwaysLoad?: boolean | undefined;
69370
69469
  headers?: Record<string, string> | undefined;
69371
69470
  }> | undefined;
69372
69471
  }>;
@@ -69522,13 +69621,16 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
69522
69621
  command: string;
69523
69622
  args?: string[] | undefined;
69524
69623
  env?: Record<string, string> | undefined;
69624
+ alwaysLoad?: boolean | undefined;
69525
69625
  } | {
69526
69626
  type: "http";
69527
69627
  url: string;
69628
+ alwaysLoad?: boolean | undefined;
69528
69629
  headers?: Record<string, string> | undefined;
69529
69630
  } | {
69530
69631
  type: "sse";
69531
69632
  url: string;
69633
+ alwaysLoad?: boolean | undefined;
69532
69634
  headers?: Record<string, string> | undefined;
69533
69635
  }> | undefined;
69534
69636
  };
@@ -69639,13 +69741,16 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
69639
69741
  command: string;
69640
69742
  args?: string[] | undefined;
69641
69743
  env?: Record<string, string> | undefined;
69744
+ alwaysLoad?: boolean | undefined;
69642
69745
  } | {
69643
69746
  type: "http";
69644
69747
  url: string;
69748
+ alwaysLoad?: boolean | undefined;
69645
69749
  headers?: Record<string, string> | undefined;
69646
69750
  } | {
69647
69751
  type: "sse";
69648
69752
  url: string;
69753
+ alwaysLoad?: boolean | undefined;
69649
69754
  headers?: Record<string, string> | undefined;
69650
69755
  }> | undefined;
69651
69756
  };
@@ -69839,39 +69944,48 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
69839
69944
  command: z.ZodString;
69840
69945
  args: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
69841
69946
  env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
69947
+ alwaysLoad: z.ZodOptional<z.ZodBoolean>;
69842
69948
  }, "strip", z.ZodTypeAny, {
69843
69949
  type: "stdio";
69844
69950
  command: string;
69845
69951
  args?: string[] | undefined;
69846
69952
  env?: Record<string, string> | undefined;
69953
+ alwaysLoad?: boolean | undefined;
69847
69954
  }, {
69848
69955
  type: "stdio";
69849
69956
  command: string;
69850
69957
  args?: string[] | undefined;
69851
69958
  env?: Record<string, string> | undefined;
69959
+ alwaysLoad?: boolean | undefined;
69852
69960
  }>, z.ZodObject<{
69853
69961
  type: z.ZodLiteral<"http">;
69854
69962
  url: z.ZodString;
69855
69963
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
69964
+ alwaysLoad: z.ZodOptional<z.ZodBoolean>;
69856
69965
  }, "strip", z.ZodTypeAny, {
69857
69966
  type: "http";
69858
69967
  url: string;
69968
+ alwaysLoad?: boolean | undefined;
69859
69969
  headers?: Record<string, string> | undefined;
69860
69970
  }, {
69861
69971
  type: "http";
69862
69972
  url: string;
69973
+ alwaysLoad?: boolean | undefined;
69863
69974
  headers?: Record<string, string> | undefined;
69864
69975
  }>, z.ZodObject<{
69865
69976
  type: z.ZodLiteral<"sse">;
69866
69977
  url: z.ZodString;
69867
69978
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
69979
+ alwaysLoad: z.ZodOptional<z.ZodBoolean>;
69868
69980
  }, "strip", z.ZodTypeAny, {
69869
69981
  type: "sse";
69870
69982
  url: string;
69983
+ alwaysLoad?: boolean | undefined;
69871
69984
  headers?: Record<string, string> | undefined;
69872
69985
  }, {
69873
69986
  type: "sse";
69874
69987
  url: string;
69988
+ alwaysLoad?: boolean | undefined;
69875
69989
  headers?: Record<string, string> | undefined;
69876
69990
  }>]>>>>;
69877
69991
  }, "strip", z.ZodTypeAny, {
@@ -69896,13 +70010,16 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
69896
70010
  command: string;
69897
70011
  args?: string[] | undefined;
69898
70012
  env?: Record<string, string> | undefined;
70013
+ alwaysLoad?: boolean | undefined;
69899
70014
  } | {
69900
70015
  type: "http";
69901
70016
  url: string;
70017
+ alwaysLoad?: boolean | undefined;
69902
70018
  headers?: Record<string, string> | undefined;
69903
70019
  } | {
69904
70020
  type: "sse";
69905
70021
  url: string;
70022
+ alwaysLoad?: boolean | undefined;
69906
70023
  headers?: Record<string, string> | undefined;
69907
70024
  }> | undefined;
69908
70025
  }, {
@@ -69927,13 +70044,16 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
69927
70044
  command: string;
69928
70045
  args?: string[] | undefined;
69929
70046
  env?: Record<string, string> | undefined;
70047
+ alwaysLoad?: boolean | undefined;
69930
70048
  } | {
69931
70049
  type: "http";
69932
70050
  url: string;
70051
+ alwaysLoad?: boolean | undefined;
69933
70052
  headers?: Record<string, string> | undefined;
69934
70053
  } | {
69935
70054
  type: "sse";
69936
70055
  url: string;
70056
+ alwaysLoad?: boolean | undefined;
69937
70057
  headers?: Record<string, string> | undefined;
69938
70058
  }> | undefined;
69939
70059
  }>>;
@@ -69964,13 +70084,16 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
69964
70084
  command: string;
69965
70085
  args?: string[] | undefined;
69966
70086
  env?: Record<string, string> | undefined;
70087
+ alwaysLoad?: boolean | undefined;
69967
70088
  } | {
69968
70089
  type: "http";
69969
70090
  url: string;
70091
+ alwaysLoad?: boolean | undefined;
69970
70092
  headers?: Record<string, string> | undefined;
69971
70093
  } | {
69972
70094
  type: "sse";
69973
70095
  url: string;
70096
+ alwaysLoad?: boolean | undefined;
69974
70097
  headers?: Record<string, string> | undefined;
69975
70098
  }> | undefined;
69976
70099
  } | undefined;
@@ -70000,13 +70123,16 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
70000
70123
  command: string;
70001
70124
  args?: string[] | undefined;
70002
70125
  env?: Record<string, string> | undefined;
70126
+ alwaysLoad?: boolean | undefined;
70003
70127
  } | {
70004
70128
  type: "http";
70005
70129
  url: string;
70130
+ alwaysLoad?: boolean | undefined;
70006
70131
  headers?: Record<string, string> | undefined;
70007
70132
  } | {
70008
70133
  type: "sse";
70009
70134
  url: string;
70135
+ alwaysLoad?: boolean | undefined;
70010
70136
  headers?: Record<string, string> | undefined;
70011
70137
  }> | undefined;
70012
70138
  } | undefined;
@@ -72553,13 +72679,16 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
72553
72679
  command: string;
72554
72680
  args?: string[] | undefined;
72555
72681
  env?: Record<string, string> | undefined;
72682
+ alwaysLoad?: boolean | undefined;
72556
72683
  } | {
72557
72684
  type: "http";
72558
72685
  url: string;
72686
+ alwaysLoad?: boolean | undefined;
72559
72687
  headers?: Record<string, string> | undefined;
72560
72688
  } | {
72561
72689
  type: "sse";
72562
72690
  url: string;
72691
+ alwaysLoad?: boolean | undefined;
72563
72692
  headers?: Record<string, string> | undefined;
72564
72693
  }> | undefined;
72565
72694
  };
@@ -72697,13 +72826,16 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
72697
72826
  command: string;
72698
72827
  args?: string[] | undefined;
72699
72828
  env?: Record<string, string> | undefined;
72829
+ alwaysLoad?: boolean | undefined;
72700
72830
  } | {
72701
72831
  type: "http";
72702
72832
  url: string;
72833
+ alwaysLoad?: boolean | undefined;
72703
72834
  headers?: Record<string, string> | undefined;
72704
72835
  } | {
72705
72836
  type: "sse";
72706
72837
  url: string;
72838
+ alwaysLoad?: boolean | undefined;
72707
72839
  headers?: Record<string, string> | undefined;
72708
72840
  }> | undefined;
72709
72841
  } | undefined;
@@ -73598,13 +73730,16 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
73598
73730
  command: string;
73599
73731
  args?: string[] | undefined;
73600
73732
  env?: Record<string, string> | undefined;
73733
+ alwaysLoad?: boolean | undefined;
73601
73734
  } | {
73602
73735
  type: "http";
73603
73736
  url: string;
73737
+ alwaysLoad?: boolean | undefined;
73604
73738
  headers?: Record<string, string> | undefined;
73605
73739
  } | {
73606
73740
  type: "sse";
73607
73741
  url: string;
73742
+ alwaysLoad?: boolean | undefined;
73608
73743
  headers?: Record<string, string> | undefined;
73609
73744
  }> | undefined;
73610
73745
  };
@@ -73694,13 +73829,16 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
73694
73829
  command: string;
73695
73830
  args?: string[] | undefined;
73696
73831
  env?: Record<string, string> | undefined;
73832
+ alwaysLoad?: boolean | undefined;
73697
73833
  } | {
73698
73834
  type: "http";
73699
73835
  url: string;
73836
+ alwaysLoad?: boolean | undefined;
73700
73837
  headers?: Record<string, string> | undefined;
73701
73838
  } | {
73702
73839
  type: "sse";
73703
73840
  url: string;
73841
+ alwaysLoad?: boolean | undefined;
73704
73842
  headers?: Record<string, string> | undefined;
73705
73843
  }> | undefined;
73706
73844
  } | undefined;
@@ -111334,39 +111472,48 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
111334
111472
  command: z.ZodString;
111335
111473
  args: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
111336
111474
  env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
111475
+ alwaysLoad: z.ZodOptional<z.ZodBoolean>;
111337
111476
  }, "strip", z.ZodTypeAny, {
111338
111477
  type: "stdio";
111339
111478
  command: string;
111340
111479
  args?: string[] | undefined;
111341
111480
  env?: Record<string, string> | undefined;
111481
+ alwaysLoad?: boolean | undefined;
111342
111482
  }, {
111343
111483
  type: "stdio";
111344
111484
  command: string;
111345
111485
  args?: string[] | undefined;
111346
111486
  env?: Record<string, string> | undefined;
111487
+ alwaysLoad?: boolean | undefined;
111347
111488
  }>, z.ZodObject<{
111348
111489
  type: z.ZodLiteral<"http">;
111349
111490
  url: z.ZodString;
111350
111491
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
111492
+ alwaysLoad: z.ZodOptional<z.ZodBoolean>;
111351
111493
  }, "strip", z.ZodTypeAny, {
111352
111494
  type: "http";
111353
111495
  url: string;
111496
+ alwaysLoad?: boolean | undefined;
111354
111497
  headers?: Record<string, string> | undefined;
111355
111498
  }, {
111356
111499
  type: "http";
111357
111500
  url: string;
111501
+ alwaysLoad?: boolean | undefined;
111358
111502
  headers?: Record<string, string> | undefined;
111359
111503
  }>, z.ZodObject<{
111360
111504
  type: z.ZodLiteral<"sse">;
111361
111505
  url: z.ZodString;
111362
111506
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
111507
+ alwaysLoad: z.ZodOptional<z.ZodBoolean>;
111363
111508
  }, "strip", z.ZodTypeAny, {
111364
111509
  type: "sse";
111365
111510
  url: string;
111511
+ alwaysLoad?: boolean | undefined;
111366
111512
  headers?: Record<string, string> | undefined;
111367
111513
  }, {
111368
111514
  type: "sse";
111369
111515
  url: string;
111516
+ alwaysLoad?: boolean | undefined;
111370
111517
  headers?: Record<string, string> | undefined;
111371
111518
  }>]>>>;
111372
111519
  }, "strip", z.ZodTypeAny, {
@@ -111391,13 +111538,16 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
111391
111538
  command: string;
111392
111539
  args?: string[] | undefined;
111393
111540
  env?: Record<string, string> | undefined;
111541
+ alwaysLoad?: boolean | undefined;
111394
111542
  } | {
111395
111543
  type: "http";
111396
111544
  url: string;
111545
+ alwaysLoad?: boolean | undefined;
111397
111546
  headers?: Record<string, string> | undefined;
111398
111547
  } | {
111399
111548
  type: "sse";
111400
111549
  url: string;
111550
+ alwaysLoad?: boolean | undefined;
111401
111551
  headers?: Record<string, string> | undefined;
111402
111552
  }> | undefined;
111403
111553
  }, {
@@ -111422,13 +111572,16 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
111422
111572
  command: string;
111423
111573
  args?: string[] | undefined;
111424
111574
  env?: Record<string, string> | undefined;
111575
+ alwaysLoad?: boolean | undefined;
111425
111576
  } | {
111426
111577
  type: "http";
111427
111578
  url: string;
111579
+ alwaysLoad?: boolean | undefined;
111428
111580
  headers?: Record<string, string> | undefined;
111429
111581
  } | {
111430
111582
  type: "sse";
111431
111583
  url: string;
111584
+ alwaysLoad?: boolean | undefined;
111432
111585
  headers?: Record<string, string> | undefined;
111433
111586
  }> | undefined;
111434
111587
  }>;
@@ -111584,13 +111737,16 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
111584
111737
  command: string;
111585
111738
  args?: string[] | undefined;
111586
111739
  env?: Record<string, string> | undefined;
111740
+ alwaysLoad?: boolean | undefined;
111587
111741
  } | {
111588
111742
  type: "http";
111589
111743
  url: string;
111744
+ alwaysLoad?: boolean | undefined;
111590
111745
  headers?: Record<string, string> | undefined;
111591
111746
  } | {
111592
111747
  type: "sse";
111593
111748
  url: string;
111749
+ alwaysLoad?: boolean | undefined;
111594
111750
  headers?: Record<string, string> | undefined;
111595
111751
  }> | undefined;
111596
111752
  };
@@ -111701,13 +111857,16 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
111701
111857
  command: string;
111702
111858
  args?: string[] | undefined;
111703
111859
  env?: Record<string, string> | undefined;
111860
+ alwaysLoad?: boolean | undefined;
111704
111861
  } | {
111705
111862
  type: "http";
111706
111863
  url: string;
111864
+ alwaysLoad?: boolean | undefined;
111707
111865
  headers?: Record<string, string> | undefined;
111708
111866
  } | {
111709
111867
  type: "sse";
111710
111868
  url: string;
111869
+ alwaysLoad?: boolean | undefined;
111711
111870
  headers?: Record<string, string> | undefined;
111712
111871
  }> | undefined;
111713
111872
  };
@@ -111901,39 +112060,48 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
111901
112060
  command: z.ZodString;
111902
112061
  args: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
111903
112062
  env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
112063
+ alwaysLoad: z.ZodOptional<z.ZodBoolean>;
111904
112064
  }, "strip", z.ZodTypeAny, {
111905
112065
  type: "stdio";
111906
112066
  command: string;
111907
112067
  args?: string[] | undefined;
111908
112068
  env?: Record<string, string> | undefined;
112069
+ alwaysLoad?: boolean | undefined;
111909
112070
  }, {
111910
112071
  type: "stdio";
111911
112072
  command: string;
111912
112073
  args?: string[] | undefined;
111913
112074
  env?: Record<string, string> | undefined;
112075
+ alwaysLoad?: boolean | undefined;
111914
112076
  }>, z.ZodObject<{
111915
112077
  type: z.ZodLiteral<"http">;
111916
112078
  url: z.ZodString;
111917
112079
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
112080
+ alwaysLoad: z.ZodOptional<z.ZodBoolean>;
111918
112081
  }, "strip", z.ZodTypeAny, {
111919
112082
  type: "http";
111920
112083
  url: string;
112084
+ alwaysLoad?: boolean | undefined;
111921
112085
  headers?: Record<string, string> | undefined;
111922
112086
  }, {
111923
112087
  type: "http";
111924
112088
  url: string;
112089
+ alwaysLoad?: boolean | undefined;
111925
112090
  headers?: Record<string, string> | undefined;
111926
112091
  }>, z.ZodObject<{
111927
112092
  type: z.ZodLiteral<"sse">;
111928
112093
  url: z.ZodString;
111929
112094
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
112095
+ alwaysLoad: z.ZodOptional<z.ZodBoolean>;
111930
112096
  }, "strip", z.ZodTypeAny, {
111931
112097
  type: "sse";
111932
112098
  url: string;
112099
+ alwaysLoad?: boolean | undefined;
111933
112100
  headers?: Record<string, string> | undefined;
111934
112101
  }, {
111935
112102
  type: "sse";
111936
112103
  url: string;
112104
+ alwaysLoad?: boolean | undefined;
111937
112105
  headers?: Record<string, string> | undefined;
111938
112106
  }>]>>>>;
111939
112107
  }, "strip", z.ZodTypeAny, {
@@ -111958,13 +112126,16 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
111958
112126
  command: string;
111959
112127
  args?: string[] | undefined;
111960
112128
  env?: Record<string, string> | undefined;
112129
+ alwaysLoad?: boolean | undefined;
111961
112130
  } | {
111962
112131
  type: "http";
111963
112132
  url: string;
112133
+ alwaysLoad?: boolean | undefined;
111964
112134
  headers?: Record<string, string> | undefined;
111965
112135
  } | {
111966
112136
  type: "sse";
111967
112137
  url: string;
112138
+ alwaysLoad?: boolean | undefined;
111968
112139
  headers?: Record<string, string> | undefined;
111969
112140
  }> | undefined;
111970
112141
  }, {
@@ -111989,13 +112160,16 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
111989
112160
  command: string;
111990
112161
  args?: string[] | undefined;
111991
112162
  env?: Record<string, string> | undefined;
112163
+ alwaysLoad?: boolean | undefined;
111992
112164
  } | {
111993
112165
  type: "http";
111994
112166
  url: string;
112167
+ alwaysLoad?: boolean | undefined;
111995
112168
  headers?: Record<string, string> | undefined;
111996
112169
  } | {
111997
112170
  type: "sse";
111998
112171
  url: string;
112172
+ alwaysLoad?: boolean | undefined;
111999
112173
  headers?: Record<string, string> | undefined;
112000
112174
  }> | undefined;
112001
112175
  }>>;
@@ -112026,13 +112200,16 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
112026
112200
  command: string;
112027
112201
  args?: string[] | undefined;
112028
112202
  env?: Record<string, string> | undefined;
112203
+ alwaysLoad?: boolean | undefined;
112029
112204
  } | {
112030
112205
  type: "http";
112031
112206
  url: string;
112207
+ alwaysLoad?: boolean | undefined;
112032
112208
  headers?: Record<string, string> | undefined;
112033
112209
  } | {
112034
112210
  type: "sse";
112035
112211
  url: string;
112212
+ alwaysLoad?: boolean | undefined;
112036
112213
  headers?: Record<string, string> | undefined;
112037
112214
  }> | undefined;
112038
112215
  } | undefined;
@@ -112062,13 +112239,16 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
112062
112239
  command: string;
112063
112240
  args?: string[] | undefined;
112064
112241
  env?: Record<string, string> | undefined;
112242
+ alwaysLoad?: boolean | undefined;
112065
112243
  } | {
112066
112244
  type: "http";
112067
112245
  url: string;
112246
+ alwaysLoad?: boolean | undefined;
112068
112247
  headers?: Record<string, string> | undefined;
112069
112248
  } | {
112070
112249
  type: "sse";
112071
112250
  url: string;
112251
+ alwaysLoad?: boolean | undefined;
112072
112252
  headers?: Record<string, string> | undefined;
112073
112253
  }> | undefined;
112074
112254
  } | undefined;
@@ -114615,13 +114795,16 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
114615
114795
  command: string;
114616
114796
  args?: string[] | undefined;
114617
114797
  env?: Record<string, string> | undefined;
114798
+ alwaysLoad?: boolean | undefined;
114618
114799
  } | {
114619
114800
  type: "http";
114620
114801
  url: string;
114802
+ alwaysLoad?: boolean | undefined;
114621
114803
  headers?: Record<string, string> | undefined;
114622
114804
  } | {
114623
114805
  type: "sse";
114624
114806
  url: string;
114807
+ alwaysLoad?: boolean | undefined;
114625
114808
  headers?: Record<string, string> | undefined;
114626
114809
  }> | undefined;
114627
114810
  };
@@ -114759,13 +114942,16 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
114759
114942
  command: string;
114760
114943
  args?: string[] | undefined;
114761
114944
  env?: Record<string, string> | undefined;
114945
+ alwaysLoad?: boolean | undefined;
114762
114946
  } | {
114763
114947
  type: "http";
114764
114948
  url: string;
114949
+ alwaysLoad?: boolean | undefined;
114765
114950
  headers?: Record<string, string> | undefined;
114766
114951
  } | {
114767
114952
  type: "sse";
114768
114953
  url: string;
114954
+ alwaysLoad?: boolean | undefined;
114769
114955
  headers?: Record<string, string> | undefined;
114770
114956
  }> | undefined;
114771
114957
  } | undefined;
@@ -115660,13 +115846,16 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
115660
115846
  command: string;
115661
115847
  args?: string[] | undefined;
115662
115848
  env?: Record<string, string> | undefined;
115849
+ alwaysLoad?: boolean | undefined;
115663
115850
  } | {
115664
115851
  type: "http";
115665
115852
  url: string;
115853
+ alwaysLoad?: boolean | undefined;
115666
115854
  headers?: Record<string, string> | undefined;
115667
115855
  } | {
115668
115856
  type: "sse";
115669
115857
  url: string;
115858
+ alwaysLoad?: boolean | undefined;
115670
115859
  headers?: Record<string, string> | undefined;
115671
115860
  }> | undefined;
115672
115861
  };
@@ -115756,13 +115945,16 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
115756
115945
  command: string;
115757
115946
  args?: string[] | undefined;
115758
115947
  env?: Record<string, string> | undefined;
115948
+ alwaysLoad?: boolean | undefined;
115759
115949
  } | {
115760
115950
  type: "http";
115761
115951
  url: string;
115952
+ alwaysLoad?: boolean | undefined;
115762
115953
  headers?: Record<string, string> | undefined;
115763
115954
  } | {
115764
115955
  type: "sse";
115765
115956
  url: string;
115957
+ alwaysLoad?: boolean | undefined;
115766
115958
  headers?: Record<string, string> | undefined;
115767
115959
  }> | undefined;
115768
115960
  } | undefined;
package/dist/messages.js CHANGED
@@ -158,16 +158,19 @@ const McpStdioServerConfigSchema = z.object({
158
158
  command: z.string(),
159
159
  args: z.array(z.string()).optional(),
160
160
  env: z.record(z.string()).optional(),
161
+ alwaysLoad: z.boolean().optional(),
161
162
  });
162
163
  const McpHttpServerConfigSchema = z.object({
163
164
  type: z.literal("http"),
164
165
  url: z.string(),
165
166
  headers: z.record(z.string()).optional(),
167
+ alwaysLoad: z.boolean().optional(),
166
168
  });
167
169
  const McpSseServerConfigSchema = z.object({
168
170
  type: z.literal("sse"),
169
171
  url: z.string(),
170
172
  headers: z.record(z.string()).optional(),
173
+ alwaysLoad: z.boolean().optional(),
171
174
  });
172
175
  const McpServerConfigSchema = z.discriminatedUnion("type", [
173
176
  McpStdioServerConfigSchema,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getpaseo/protocol",
3
- "version": "0.1.91-beta.1",
3
+ "version": "0.1.91-beta.2",
4
4
  "description": "Paseo shared protocol schemas and wire types",
5
5
  "files": [
6
6
  "dist",