@modelcontextprotocol/sdk 0.4.0 → 0.6.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/README.md +1 -1
- package/dist/cli.js +13 -0
- package/dist/cli.js.map +1 -1
- package/dist/client/index.d.ts +27 -16
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js +141 -45
- package/dist/client/index.js.map +1 -1
- package/dist/client/index.test.js +337 -3
- package/dist/client/index.test.js.map +1 -1
- package/dist/client/stdio.d.ts +7 -0
- package/dist/client/stdio.d.ts.map +1 -1
- package/dist/client/stdio.js +6 -5
- package/dist/client/stdio.js.map +1 -1
- package/dist/inMemory.d.ts +20 -0
- package/dist/inMemory.d.ts.map +1 -0
- package/dist/inMemory.js +47 -0
- package/dist/inMemory.js.map +1 -0
- package/dist/inMemory.test.d.ts +2 -0
- package/dist/inMemory.test.d.ts.map +1 -0
- package/dist/inMemory.test.js +74 -0
- package/dist/inMemory.test.js.map +1 -0
- package/dist/server/index.d.ts +15 -5
- package/dist/server/index.d.ts.map +1 -1
- package/dist/server/index.js +99 -23
- package/dist/server/index.js.map +1 -1
- package/dist/server/index.test.js +358 -3
- package/dist/server/index.test.js.map +1 -1
- package/dist/shared/protocol.d.ts +72 -7
- package/dist/shared/protocol.d.ts.map +1 -1
- package/dist/shared/protocol.js +84 -12
- package/dist/shared/protocol.js.map +1 -1
- package/dist/types.d.ts +754 -362
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +56 -26
- package/dist/types.js.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -351,6 +351,7 @@ export declare const JSONRPCResponseSchema: z.ZodObject<{
|
|
|
351
351
|
*/
|
|
352
352
|
export declare enum ErrorCode {
|
|
353
353
|
ConnectionClosed = -1,
|
|
354
|
+
RequestTimeout = -2,
|
|
354
355
|
ParseError = -32700,
|
|
355
356
|
InvalidRequest = -32600,
|
|
356
357
|
MethodNotFound = -32601,
|
|
@@ -631,6 +632,103 @@ export declare const EmptyResultSchema: z.ZodObject<{
|
|
|
631
632
|
}, {
|
|
632
633
|
_meta?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
633
634
|
}>;
|
|
635
|
+
/**
|
|
636
|
+
* This notification can be sent by either side to indicate that it is cancelling a previously-issued request.
|
|
637
|
+
*
|
|
638
|
+
* The request SHOULD still be in-flight, but due to communication latency, it is always possible that this notification MAY arrive after the request has already finished.
|
|
639
|
+
*
|
|
640
|
+
* This notification indicates that the result will be unused, so any associated processing SHOULD cease.
|
|
641
|
+
*
|
|
642
|
+
* A client MUST NOT attempt to cancel its `initialize` request.
|
|
643
|
+
*/
|
|
644
|
+
export declare const CancelledNotificationSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
645
|
+
method: z.ZodString;
|
|
646
|
+
params: z.ZodOptional<z.ZodObject<{
|
|
647
|
+
/**
|
|
648
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
649
|
+
*/
|
|
650
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
651
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
652
|
+
/**
|
|
653
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
654
|
+
*/
|
|
655
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
656
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
657
|
+
/**
|
|
658
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
659
|
+
*/
|
|
660
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
661
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
662
|
+
}, {
|
|
663
|
+
method: z.ZodLiteral<"notifications/cancelled">;
|
|
664
|
+
params: z.ZodObject<z.objectUtil.extendShape<{
|
|
665
|
+
/**
|
|
666
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
667
|
+
*/
|
|
668
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
669
|
+
}, {
|
|
670
|
+
/**
|
|
671
|
+
* The ID of the request to cancel.
|
|
672
|
+
*
|
|
673
|
+
* This MUST correspond to the ID of a request previously issued in the same direction.
|
|
674
|
+
*/
|
|
675
|
+
requestId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
676
|
+
/**
|
|
677
|
+
* An optional string describing the reason for the cancellation. This MAY be logged or presented to the user.
|
|
678
|
+
*/
|
|
679
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
680
|
+
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
681
|
+
/**
|
|
682
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
683
|
+
*/
|
|
684
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
685
|
+
}, {
|
|
686
|
+
/**
|
|
687
|
+
* The ID of the request to cancel.
|
|
688
|
+
*
|
|
689
|
+
* This MUST correspond to the ID of a request previously issued in the same direction.
|
|
690
|
+
*/
|
|
691
|
+
requestId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
692
|
+
/**
|
|
693
|
+
* An optional string describing the reason for the cancellation. This MAY be logged or presented to the user.
|
|
694
|
+
*/
|
|
695
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
696
|
+
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
697
|
+
/**
|
|
698
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
699
|
+
*/
|
|
700
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
701
|
+
}, {
|
|
702
|
+
/**
|
|
703
|
+
* The ID of the request to cancel.
|
|
704
|
+
*
|
|
705
|
+
* This MUST correspond to the ID of a request previously issued in the same direction.
|
|
706
|
+
*/
|
|
707
|
+
requestId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
708
|
+
/**
|
|
709
|
+
* An optional string describing the reason for the cancellation. This MAY be logged or presented to the user.
|
|
710
|
+
*/
|
|
711
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
712
|
+
}>, z.ZodTypeAny, "passthrough">>;
|
|
713
|
+
}>, "strip", z.ZodTypeAny, {
|
|
714
|
+
params: {
|
|
715
|
+
requestId: string | number;
|
|
716
|
+
_meta?: z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
717
|
+
reason?: string | undefined;
|
|
718
|
+
} & {
|
|
719
|
+
[k: string]: unknown;
|
|
720
|
+
};
|
|
721
|
+
method: "notifications/cancelled";
|
|
722
|
+
}, {
|
|
723
|
+
params: {
|
|
724
|
+
requestId: string | number;
|
|
725
|
+
_meta?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
726
|
+
reason?: string | undefined;
|
|
727
|
+
} & {
|
|
728
|
+
[k: string]: unknown;
|
|
729
|
+
};
|
|
730
|
+
method: "notifications/cancelled";
|
|
731
|
+
}>;
|
|
634
732
|
/**
|
|
635
733
|
* Describes the name and version of an MCP implementation.
|
|
636
734
|
*/
|
|
@@ -661,17 +759,17 @@ export declare const ClientCapabilitiesSchema: z.ZodObject<{
|
|
|
661
759
|
*/
|
|
662
760
|
roots: z.ZodOptional<z.ZodObject<{
|
|
663
761
|
/**
|
|
664
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
762
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
665
763
|
*/
|
|
666
764
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
667
765
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
668
766
|
/**
|
|
669
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
767
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
670
768
|
*/
|
|
671
769
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
672
770
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
673
771
|
/**
|
|
674
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
772
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
675
773
|
*/
|
|
676
774
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
677
775
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -689,17 +787,17 @@ export declare const ClientCapabilitiesSchema: z.ZodObject<{
|
|
|
689
787
|
*/
|
|
690
788
|
roots: z.ZodOptional<z.ZodObject<{
|
|
691
789
|
/**
|
|
692
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
790
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
693
791
|
*/
|
|
694
792
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
695
793
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
696
794
|
/**
|
|
697
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
795
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
698
796
|
*/
|
|
699
797
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
700
798
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
701
799
|
/**
|
|
702
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
800
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
703
801
|
*/
|
|
704
802
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
705
803
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -717,17 +815,17 @@ export declare const ClientCapabilitiesSchema: z.ZodObject<{
|
|
|
717
815
|
*/
|
|
718
816
|
roots: z.ZodOptional<z.ZodObject<{
|
|
719
817
|
/**
|
|
720
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
818
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
721
819
|
*/
|
|
722
820
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
723
821
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
724
822
|
/**
|
|
725
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
823
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
726
824
|
*/
|
|
727
825
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
728
826
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
729
827
|
/**
|
|
730
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
828
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
731
829
|
*/
|
|
732
830
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
733
831
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -827,17 +925,17 @@ export declare const InitializeRequestSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
827
925
|
*/
|
|
828
926
|
roots: z.ZodOptional<z.ZodObject<{
|
|
829
927
|
/**
|
|
830
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
928
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
831
929
|
*/
|
|
832
930
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
833
931
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
834
932
|
/**
|
|
835
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
933
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
836
934
|
*/
|
|
837
935
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
838
936
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
839
937
|
/**
|
|
840
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
938
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
841
939
|
*/
|
|
842
940
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
843
941
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -855,17 +953,17 @@ export declare const InitializeRequestSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
855
953
|
*/
|
|
856
954
|
roots: z.ZodOptional<z.ZodObject<{
|
|
857
955
|
/**
|
|
858
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
956
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
859
957
|
*/
|
|
860
958
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
861
959
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
862
960
|
/**
|
|
863
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
961
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
864
962
|
*/
|
|
865
963
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
866
964
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
867
965
|
/**
|
|
868
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
966
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
869
967
|
*/
|
|
870
968
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
871
969
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -883,17 +981,17 @@ export declare const InitializeRequestSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
883
981
|
*/
|
|
884
982
|
roots: z.ZodOptional<z.ZodObject<{
|
|
885
983
|
/**
|
|
886
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
984
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
887
985
|
*/
|
|
888
986
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
889
987
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
890
988
|
/**
|
|
891
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
989
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
892
990
|
*/
|
|
893
991
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
894
992
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
895
993
|
/**
|
|
896
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
994
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
897
995
|
*/
|
|
898
996
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
899
997
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -944,17 +1042,17 @@ export declare const InitializeRequestSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
944
1042
|
*/
|
|
945
1043
|
roots: z.ZodOptional<z.ZodObject<{
|
|
946
1044
|
/**
|
|
947
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
1045
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
948
1046
|
*/
|
|
949
1047
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
950
1048
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
951
1049
|
/**
|
|
952
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
1050
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
953
1051
|
*/
|
|
954
1052
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
955
1053
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
956
1054
|
/**
|
|
957
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
1055
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
958
1056
|
*/
|
|
959
1057
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
960
1058
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -972,17 +1070,17 @@ export declare const InitializeRequestSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
972
1070
|
*/
|
|
973
1071
|
roots: z.ZodOptional<z.ZodObject<{
|
|
974
1072
|
/**
|
|
975
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
1073
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
976
1074
|
*/
|
|
977
1075
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
978
1076
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
979
1077
|
/**
|
|
980
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
1078
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
981
1079
|
*/
|
|
982
1080
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
983
1081
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
984
1082
|
/**
|
|
985
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
1083
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
986
1084
|
*/
|
|
987
1085
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
988
1086
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1000,17 +1098,17 @@ export declare const InitializeRequestSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
1000
1098
|
*/
|
|
1001
1099
|
roots: z.ZodOptional<z.ZodObject<{
|
|
1002
1100
|
/**
|
|
1003
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
1101
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
1004
1102
|
*/
|
|
1005
1103
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1006
1104
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1007
1105
|
/**
|
|
1008
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
1106
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
1009
1107
|
*/
|
|
1010
1108
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1011
1109
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1012
1110
|
/**
|
|
1013
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
1111
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
1014
1112
|
*/
|
|
1015
1113
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1016
1114
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1061,17 +1159,17 @@ export declare const InitializeRequestSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
1061
1159
|
*/
|
|
1062
1160
|
roots: z.ZodOptional<z.ZodObject<{
|
|
1063
1161
|
/**
|
|
1064
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
1162
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
1065
1163
|
*/
|
|
1066
1164
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1067
1165
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1068
1166
|
/**
|
|
1069
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
1167
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
1070
1168
|
*/
|
|
1071
1169
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1072
1170
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1073
1171
|
/**
|
|
1074
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
1172
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
1075
1173
|
*/
|
|
1076
1174
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1077
1175
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1089,17 +1187,17 @@ export declare const InitializeRequestSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
1089
1187
|
*/
|
|
1090
1188
|
roots: z.ZodOptional<z.ZodObject<{
|
|
1091
1189
|
/**
|
|
1092
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
1190
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
1093
1191
|
*/
|
|
1094
1192
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1095
1193
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1096
1194
|
/**
|
|
1097
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
1195
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
1098
1196
|
*/
|
|
1099
1197
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1100
1198
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1101
1199
|
/**
|
|
1102
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
1200
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
1103
1201
|
*/
|
|
1104
1202
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1105
1203
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1117,17 +1215,17 @@ export declare const InitializeRequestSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
1117
1215
|
*/
|
|
1118
1216
|
roots: z.ZodOptional<z.ZodObject<{
|
|
1119
1217
|
/**
|
|
1120
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
1218
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
1121
1219
|
*/
|
|
1122
1220
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1123
1221
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1124
1222
|
/**
|
|
1125
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
1223
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
1126
1224
|
*/
|
|
1127
1225
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1128
1226
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1129
1227
|
/**
|
|
1130
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
1228
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
1131
1229
|
*/
|
|
1132
1230
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1133
1231
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1151,7 +1249,7 @@ export declare const InitializeRequestSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
1151
1249
|
sampling?: z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1152
1250
|
roots?: z.objectOutputType<{
|
|
1153
1251
|
/**
|
|
1154
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
1252
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
1155
1253
|
*/
|
|
1156
1254
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1157
1255
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
@@ -1182,7 +1280,7 @@ export declare const InitializeRequestSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
1182
1280
|
sampling?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1183
1281
|
roots?: z.objectInputType<{
|
|
1184
1282
|
/**
|
|
1185
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
1283
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
1186
1284
|
*/
|
|
1187
1285
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1188
1286
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
@@ -1223,17 +1321,17 @@ export declare const ServerCapabilitiesSchema: z.ZodObject<{
|
|
|
1223
1321
|
*/
|
|
1224
1322
|
prompts: z.ZodOptional<z.ZodObject<{
|
|
1225
1323
|
/**
|
|
1226
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
1324
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1227
1325
|
*/
|
|
1228
1326
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1229
1327
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1230
1328
|
/**
|
|
1231
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
1329
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1232
1330
|
*/
|
|
1233
1331
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1234
1332
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1235
1333
|
/**
|
|
1236
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
1334
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1237
1335
|
*/
|
|
1238
1336
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1239
1337
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1242,29 +1340,29 @@ export declare const ServerCapabilitiesSchema: z.ZodObject<{
|
|
|
1242
1340
|
*/
|
|
1243
1341
|
resources: z.ZodOptional<z.ZodObject<{
|
|
1244
1342
|
/**
|
|
1245
|
-
* Whether this server supports subscribing to resource updates.
|
|
1343
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
1246
1344
|
*/
|
|
1247
1345
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
1248
1346
|
/**
|
|
1249
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
1347
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
1250
1348
|
*/
|
|
1251
1349
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1252
1350
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1253
1351
|
/**
|
|
1254
|
-
* Whether this server supports subscribing to resource updates.
|
|
1352
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
1255
1353
|
*/
|
|
1256
1354
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
1257
1355
|
/**
|
|
1258
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
1356
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
1259
1357
|
*/
|
|
1260
1358
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1261
1359
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1262
1360
|
/**
|
|
1263
|
-
* Whether this server supports subscribing to resource updates.
|
|
1361
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
1264
1362
|
*/
|
|
1265
1363
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
1266
1364
|
/**
|
|
1267
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
1365
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
1268
1366
|
*/
|
|
1269
1367
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1270
1368
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1273,17 +1371,17 @@ export declare const ServerCapabilitiesSchema: z.ZodObject<{
|
|
|
1273
1371
|
*/
|
|
1274
1372
|
tools: z.ZodOptional<z.ZodObject<{
|
|
1275
1373
|
/**
|
|
1276
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
1374
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
1277
1375
|
*/
|
|
1278
1376
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1279
1377
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1280
1378
|
/**
|
|
1281
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
1379
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
1282
1380
|
*/
|
|
1283
1381
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1284
1382
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1285
1383
|
/**
|
|
1286
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
1384
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
1287
1385
|
*/
|
|
1288
1386
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1289
1387
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1301,17 +1399,17 @@ export declare const ServerCapabilitiesSchema: z.ZodObject<{
|
|
|
1301
1399
|
*/
|
|
1302
1400
|
prompts: z.ZodOptional<z.ZodObject<{
|
|
1303
1401
|
/**
|
|
1304
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
1402
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1305
1403
|
*/
|
|
1306
1404
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1307
1405
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1308
1406
|
/**
|
|
1309
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
1407
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1310
1408
|
*/
|
|
1311
1409
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1312
1410
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1313
1411
|
/**
|
|
1314
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
1412
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1315
1413
|
*/
|
|
1316
1414
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1317
1415
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1320,29 +1418,29 @@ export declare const ServerCapabilitiesSchema: z.ZodObject<{
|
|
|
1320
1418
|
*/
|
|
1321
1419
|
resources: z.ZodOptional<z.ZodObject<{
|
|
1322
1420
|
/**
|
|
1323
|
-
* Whether this server supports subscribing to resource updates.
|
|
1421
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
1324
1422
|
*/
|
|
1325
1423
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
1326
1424
|
/**
|
|
1327
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
1425
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
1328
1426
|
*/
|
|
1329
1427
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1330
1428
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1331
1429
|
/**
|
|
1332
|
-
* Whether this server supports subscribing to resource updates.
|
|
1430
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
1333
1431
|
*/
|
|
1334
1432
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
1335
1433
|
/**
|
|
1336
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
1434
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
1337
1435
|
*/
|
|
1338
1436
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1339
1437
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1340
1438
|
/**
|
|
1341
|
-
* Whether this server supports subscribing to resource updates.
|
|
1439
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
1342
1440
|
*/
|
|
1343
1441
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
1344
1442
|
/**
|
|
1345
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
1443
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
1346
1444
|
*/
|
|
1347
1445
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1348
1446
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1351,17 +1449,17 @@ export declare const ServerCapabilitiesSchema: z.ZodObject<{
|
|
|
1351
1449
|
*/
|
|
1352
1450
|
tools: z.ZodOptional<z.ZodObject<{
|
|
1353
1451
|
/**
|
|
1354
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
1452
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
1355
1453
|
*/
|
|
1356
1454
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1357
1455
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1358
1456
|
/**
|
|
1359
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
1457
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
1360
1458
|
*/
|
|
1361
1459
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1362
1460
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1363
1461
|
/**
|
|
1364
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
1462
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
1365
1463
|
*/
|
|
1366
1464
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1367
1465
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1379,17 +1477,17 @@ export declare const ServerCapabilitiesSchema: z.ZodObject<{
|
|
|
1379
1477
|
*/
|
|
1380
1478
|
prompts: z.ZodOptional<z.ZodObject<{
|
|
1381
1479
|
/**
|
|
1382
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
1480
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1383
1481
|
*/
|
|
1384
1482
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1385
1483
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1386
1484
|
/**
|
|
1387
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
1485
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1388
1486
|
*/
|
|
1389
1487
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1390
1488
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1391
1489
|
/**
|
|
1392
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
1490
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1393
1491
|
*/
|
|
1394
1492
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1395
1493
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1398,29 +1496,29 @@ export declare const ServerCapabilitiesSchema: z.ZodObject<{
|
|
|
1398
1496
|
*/
|
|
1399
1497
|
resources: z.ZodOptional<z.ZodObject<{
|
|
1400
1498
|
/**
|
|
1401
|
-
* Whether this server supports subscribing to resource updates.
|
|
1499
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
1402
1500
|
*/
|
|
1403
1501
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
1404
1502
|
/**
|
|
1405
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
1503
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
1406
1504
|
*/
|
|
1407
1505
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1408
1506
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1409
1507
|
/**
|
|
1410
|
-
* Whether this server supports subscribing to resource updates.
|
|
1508
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
1411
1509
|
*/
|
|
1412
1510
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
1413
1511
|
/**
|
|
1414
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
1512
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
1415
1513
|
*/
|
|
1416
1514
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1417
1515
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1418
1516
|
/**
|
|
1419
|
-
* Whether this server supports subscribing to resource updates.
|
|
1517
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
1420
1518
|
*/
|
|
1421
1519
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
1422
1520
|
/**
|
|
1423
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
1521
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
1424
1522
|
*/
|
|
1425
1523
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1426
1524
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1429,17 +1527,17 @@ export declare const ServerCapabilitiesSchema: z.ZodObject<{
|
|
|
1429
1527
|
*/
|
|
1430
1528
|
tools: z.ZodOptional<z.ZodObject<{
|
|
1431
1529
|
/**
|
|
1432
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
1530
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
1433
1531
|
*/
|
|
1434
1532
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1435
1533
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1436
1534
|
/**
|
|
1437
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
1535
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
1438
1536
|
*/
|
|
1439
1537
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1440
1538
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1441
1539
|
/**
|
|
1442
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
1540
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
1443
1541
|
*/
|
|
1444
1542
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1445
1543
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1471,17 +1569,17 @@ export declare const InitializeResultSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
1471
1569
|
*/
|
|
1472
1570
|
prompts: z.ZodOptional<z.ZodObject<{
|
|
1473
1571
|
/**
|
|
1474
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
1572
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1475
1573
|
*/
|
|
1476
1574
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1477
1575
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1478
1576
|
/**
|
|
1479
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
1577
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1480
1578
|
*/
|
|
1481
1579
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1482
1580
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1483
1581
|
/**
|
|
1484
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
1582
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1485
1583
|
*/
|
|
1486
1584
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1487
1585
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1490,29 +1588,29 @@ export declare const InitializeResultSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
1490
1588
|
*/
|
|
1491
1589
|
resources: z.ZodOptional<z.ZodObject<{
|
|
1492
1590
|
/**
|
|
1493
|
-
* Whether this server supports subscribing to resource updates.
|
|
1591
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
1494
1592
|
*/
|
|
1495
1593
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
1496
1594
|
/**
|
|
1497
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
1595
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
1498
1596
|
*/
|
|
1499
1597
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1500
1598
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1501
1599
|
/**
|
|
1502
|
-
* Whether this server supports subscribing to resource updates.
|
|
1600
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
1503
1601
|
*/
|
|
1504
1602
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
1505
1603
|
/**
|
|
1506
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
1604
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
1507
1605
|
*/
|
|
1508
1606
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1509
1607
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1510
1608
|
/**
|
|
1511
|
-
* Whether this server supports subscribing to resource updates.
|
|
1609
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
1512
1610
|
*/
|
|
1513
1611
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
1514
1612
|
/**
|
|
1515
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
1613
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
1516
1614
|
*/
|
|
1517
1615
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1518
1616
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1521,17 +1619,17 @@ export declare const InitializeResultSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
1521
1619
|
*/
|
|
1522
1620
|
tools: z.ZodOptional<z.ZodObject<{
|
|
1523
1621
|
/**
|
|
1524
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
1622
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
1525
1623
|
*/
|
|
1526
1624
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1527
1625
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1528
1626
|
/**
|
|
1529
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
1627
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
1530
1628
|
*/
|
|
1531
1629
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1532
1630
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1533
1631
|
/**
|
|
1534
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
1632
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
1535
1633
|
*/
|
|
1536
1634
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1537
1635
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1549,17 +1647,17 @@ export declare const InitializeResultSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
1549
1647
|
*/
|
|
1550
1648
|
prompts: z.ZodOptional<z.ZodObject<{
|
|
1551
1649
|
/**
|
|
1552
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
1650
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1553
1651
|
*/
|
|
1554
1652
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1555
1653
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1556
1654
|
/**
|
|
1557
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
1655
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1558
1656
|
*/
|
|
1559
1657
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1560
1658
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1561
1659
|
/**
|
|
1562
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
1660
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1563
1661
|
*/
|
|
1564
1662
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1565
1663
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1568,29 +1666,29 @@ export declare const InitializeResultSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
1568
1666
|
*/
|
|
1569
1667
|
resources: z.ZodOptional<z.ZodObject<{
|
|
1570
1668
|
/**
|
|
1571
|
-
* Whether this server supports subscribing to resource updates.
|
|
1669
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
1572
1670
|
*/
|
|
1573
1671
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
1574
1672
|
/**
|
|
1575
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
1673
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
1576
1674
|
*/
|
|
1577
1675
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1578
1676
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1579
1677
|
/**
|
|
1580
|
-
* Whether this server supports subscribing to resource updates.
|
|
1678
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
1581
1679
|
*/
|
|
1582
1680
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
1583
1681
|
/**
|
|
1584
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
1682
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
1585
1683
|
*/
|
|
1586
1684
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1587
1685
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1588
1686
|
/**
|
|
1589
|
-
* Whether this server supports subscribing to resource updates.
|
|
1687
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
1590
1688
|
*/
|
|
1591
1689
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
1592
1690
|
/**
|
|
1593
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
1691
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
1594
1692
|
*/
|
|
1595
1693
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1596
1694
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1599,17 +1697,17 @@ export declare const InitializeResultSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
1599
1697
|
*/
|
|
1600
1698
|
tools: z.ZodOptional<z.ZodObject<{
|
|
1601
1699
|
/**
|
|
1602
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
1700
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
1603
1701
|
*/
|
|
1604
1702
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1605
1703
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1606
1704
|
/**
|
|
1607
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
1705
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
1608
1706
|
*/
|
|
1609
1707
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1610
1708
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1611
1709
|
/**
|
|
1612
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
1710
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
1613
1711
|
*/
|
|
1614
1712
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1615
1713
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1627,17 +1725,17 @@ export declare const InitializeResultSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
1627
1725
|
*/
|
|
1628
1726
|
prompts: z.ZodOptional<z.ZodObject<{
|
|
1629
1727
|
/**
|
|
1630
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
1728
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1631
1729
|
*/
|
|
1632
1730
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1633
1731
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1634
1732
|
/**
|
|
1635
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
1733
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1636
1734
|
*/
|
|
1637
1735
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1638
1736
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1639
1737
|
/**
|
|
1640
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
1738
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1641
1739
|
*/
|
|
1642
1740
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1643
1741
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1646,29 +1744,29 @@ export declare const InitializeResultSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
1646
1744
|
*/
|
|
1647
1745
|
resources: z.ZodOptional<z.ZodObject<{
|
|
1648
1746
|
/**
|
|
1649
|
-
* Whether this server supports subscribing to resource updates.
|
|
1747
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
1650
1748
|
*/
|
|
1651
1749
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
1652
1750
|
/**
|
|
1653
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
1751
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
1654
1752
|
*/
|
|
1655
1753
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1656
1754
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1657
1755
|
/**
|
|
1658
|
-
* Whether this server supports subscribing to resource updates.
|
|
1756
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
1659
1757
|
*/
|
|
1660
1758
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
1661
1759
|
/**
|
|
1662
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
1760
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
1663
1761
|
*/
|
|
1664
1762
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1665
1763
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1666
1764
|
/**
|
|
1667
|
-
* Whether this server supports subscribing to resource updates.
|
|
1765
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
1668
1766
|
*/
|
|
1669
1767
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
1670
1768
|
/**
|
|
1671
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
1769
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
1672
1770
|
*/
|
|
1673
1771
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1674
1772
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1677,17 +1775,17 @@ export declare const InitializeResultSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
1677
1775
|
*/
|
|
1678
1776
|
tools: z.ZodOptional<z.ZodObject<{
|
|
1679
1777
|
/**
|
|
1680
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
1778
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
1681
1779
|
*/
|
|
1682
1780
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1683
1781
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1684
1782
|
/**
|
|
1685
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
1783
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
1686
1784
|
*/
|
|
1687
1785
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1688
1786
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1689
1787
|
/**
|
|
1690
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
1788
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
1691
1789
|
*/
|
|
1692
1790
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1693
1791
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1726,17 +1824,17 @@ export declare const InitializeResultSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
1726
1824
|
*/
|
|
1727
1825
|
prompts: z.ZodOptional<z.ZodObject<{
|
|
1728
1826
|
/**
|
|
1729
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
1827
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1730
1828
|
*/
|
|
1731
1829
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1732
1830
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1733
1831
|
/**
|
|
1734
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
1832
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1735
1833
|
*/
|
|
1736
1834
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1737
1835
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1738
1836
|
/**
|
|
1739
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
1837
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1740
1838
|
*/
|
|
1741
1839
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1742
1840
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1745,29 +1843,29 @@ export declare const InitializeResultSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
1745
1843
|
*/
|
|
1746
1844
|
resources: z.ZodOptional<z.ZodObject<{
|
|
1747
1845
|
/**
|
|
1748
|
-
* Whether this server supports subscribing to resource updates.
|
|
1846
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
1749
1847
|
*/
|
|
1750
1848
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
1751
1849
|
/**
|
|
1752
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
1850
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
1753
1851
|
*/
|
|
1754
1852
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1755
1853
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1756
1854
|
/**
|
|
1757
|
-
* Whether this server supports subscribing to resource updates.
|
|
1855
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
1758
1856
|
*/
|
|
1759
1857
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
1760
1858
|
/**
|
|
1761
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
1859
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
1762
1860
|
*/
|
|
1763
1861
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1764
1862
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1765
1863
|
/**
|
|
1766
|
-
* Whether this server supports subscribing to resource updates.
|
|
1864
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
1767
1865
|
*/
|
|
1768
1866
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
1769
1867
|
/**
|
|
1770
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
1868
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
1771
1869
|
*/
|
|
1772
1870
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1773
1871
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1776,17 +1874,17 @@ export declare const InitializeResultSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
1776
1874
|
*/
|
|
1777
1875
|
tools: z.ZodOptional<z.ZodObject<{
|
|
1778
1876
|
/**
|
|
1779
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
1877
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
1780
1878
|
*/
|
|
1781
1879
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1782
1880
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1783
1881
|
/**
|
|
1784
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
1882
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
1785
1883
|
*/
|
|
1786
1884
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1787
1885
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1788
1886
|
/**
|
|
1789
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
1887
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
1790
1888
|
*/
|
|
1791
1889
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1792
1890
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1804,17 +1902,17 @@ export declare const InitializeResultSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
1804
1902
|
*/
|
|
1805
1903
|
prompts: z.ZodOptional<z.ZodObject<{
|
|
1806
1904
|
/**
|
|
1807
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
1905
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1808
1906
|
*/
|
|
1809
1907
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1810
1908
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1811
1909
|
/**
|
|
1812
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
1910
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1813
1911
|
*/
|
|
1814
1912
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1815
1913
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1816
1914
|
/**
|
|
1817
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
1915
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1818
1916
|
*/
|
|
1819
1917
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1820
1918
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1823,29 +1921,29 @@ export declare const InitializeResultSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
1823
1921
|
*/
|
|
1824
1922
|
resources: z.ZodOptional<z.ZodObject<{
|
|
1825
1923
|
/**
|
|
1826
|
-
* Whether this server supports subscribing to resource updates.
|
|
1924
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
1827
1925
|
*/
|
|
1828
1926
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
1829
1927
|
/**
|
|
1830
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
1928
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
1831
1929
|
*/
|
|
1832
1930
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1833
1931
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1834
1932
|
/**
|
|
1835
|
-
* Whether this server supports subscribing to resource updates.
|
|
1933
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
1836
1934
|
*/
|
|
1837
1935
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
1838
1936
|
/**
|
|
1839
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
1937
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
1840
1938
|
*/
|
|
1841
1939
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1842
1940
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1843
1941
|
/**
|
|
1844
|
-
* Whether this server supports subscribing to resource updates.
|
|
1942
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
1845
1943
|
*/
|
|
1846
1944
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
1847
1945
|
/**
|
|
1848
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
1946
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
1849
1947
|
*/
|
|
1850
1948
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1851
1949
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1854,17 +1952,17 @@ export declare const InitializeResultSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
1854
1952
|
*/
|
|
1855
1953
|
tools: z.ZodOptional<z.ZodObject<{
|
|
1856
1954
|
/**
|
|
1857
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
1955
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
1858
1956
|
*/
|
|
1859
1957
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1860
1958
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1861
1959
|
/**
|
|
1862
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
1960
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
1863
1961
|
*/
|
|
1864
1962
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1865
1963
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1866
1964
|
/**
|
|
1867
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
1965
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
1868
1966
|
*/
|
|
1869
1967
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1870
1968
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1882,17 +1980,17 @@ export declare const InitializeResultSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
1882
1980
|
*/
|
|
1883
1981
|
prompts: z.ZodOptional<z.ZodObject<{
|
|
1884
1982
|
/**
|
|
1885
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
1983
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1886
1984
|
*/
|
|
1887
1985
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1888
1986
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1889
1987
|
/**
|
|
1890
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
1988
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1891
1989
|
*/
|
|
1892
1990
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1893
1991
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1894
1992
|
/**
|
|
1895
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
1993
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1896
1994
|
*/
|
|
1897
1995
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1898
1996
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1901,29 +1999,29 @@ export declare const InitializeResultSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
1901
1999
|
*/
|
|
1902
2000
|
resources: z.ZodOptional<z.ZodObject<{
|
|
1903
2001
|
/**
|
|
1904
|
-
* Whether this server supports subscribing to resource updates.
|
|
2002
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
1905
2003
|
*/
|
|
1906
2004
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
1907
2005
|
/**
|
|
1908
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
2006
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
1909
2007
|
*/
|
|
1910
2008
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1911
2009
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1912
2010
|
/**
|
|
1913
|
-
* Whether this server supports subscribing to resource updates.
|
|
2011
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
1914
2012
|
*/
|
|
1915
2013
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
1916
2014
|
/**
|
|
1917
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
2015
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
1918
2016
|
*/
|
|
1919
2017
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1920
2018
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1921
2019
|
/**
|
|
1922
|
-
* Whether this server supports subscribing to resource updates.
|
|
2020
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
1923
2021
|
*/
|
|
1924
2022
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
1925
2023
|
/**
|
|
1926
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
2024
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
1927
2025
|
*/
|
|
1928
2026
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1929
2027
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1932,17 +2030,17 @@ export declare const InitializeResultSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
1932
2030
|
*/
|
|
1933
2031
|
tools: z.ZodOptional<z.ZodObject<{
|
|
1934
2032
|
/**
|
|
1935
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
2033
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
1936
2034
|
*/
|
|
1937
2035
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1938
2036
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1939
2037
|
/**
|
|
1940
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
2038
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
1941
2039
|
*/
|
|
1942
2040
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1943
2041
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1944
2042
|
/**
|
|
1945
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
2043
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
1946
2044
|
*/
|
|
1947
2045
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1948
2046
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -1981,17 +2079,17 @@ export declare const InitializeResultSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
1981
2079
|
*/
|
|
1982
2080
|
prompts: z.ZodOptional<z.ZodObject<{
|
|
1983
2081
|
/**
|
|
1984
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
2082
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1985
2083
|
*/
|
|
1986
2084
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1987
2085
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1988
2086
|
/**
|
|
1989
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
2087
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1990
2088
|
*/
|
|
1991
2089
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1992
2090
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1993
2091
|
/**
|
|
1994
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
2092
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
1995
2093
|
*/
|
|
1996
2094
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
1997
2095
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -2000,29 +2098,29 @@ export declare const InitializeResultSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
2000
2098
|
*/
|
|
2001
2099
|
resources: z.ZodOptional<z.ZodObject<{
|
|
2002
2100
|
/**
|
|
2003
|
-
* Whether this server supports subscribing to resource updates.
|
|
2101
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
2004
2102
|
*/
|
|
2005
2103
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
2006
2104
|
/**
|
|
2007
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
2105
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
2008
2106
|
*/
|
|
2009
2107
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
2010
2108
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2011
2109
|
/**
|
|
2012
|
-
* Whether this server supports subscribing to resource updates.
|
|
2110
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
2013
2111
|
*/
|
|
2014
2112
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
2015
2113
|
/**
|
|
2016
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
2114
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
2017
2115
|
*/
|
|
2018
2116
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
2019
2117
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2020
2118
|
/**
|
|
2021
|
-
* Whether this server supports subscribing to resource updates.
|
|
2119
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
2022
2120
|
*/
|
|
2023
2121
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
2024
2122
|
/**
|
|
2025
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
2123
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
2026
2124
|
*/
|
|
2027
2125
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
2028
2126
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -2031,17 +2129,17 @@ export declare const InitializeResultSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
2031
2129
|
*/
|
|
2032
2130
|
tools: z.ZodOptional<z.ZodObject<{
|
|
2033
2131
|
/**
|
|
2034
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
2132
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
2035
2133
|
*/
|
|
2036
2134
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
2037
2135
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2038
2136
|
/**
|
|
2039
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
2137
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
2040
2138
|
*/
|
|
2041
2139
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
2042
2140
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2043
2141
|
/**
|
|
2044
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
2142
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
2045
2143
|
*/
|
|
2046
2144
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
2047
2145
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -2059,17 +2157,17 @@ export declare const InitializeResultSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
2059
2157
|
*/
|
|
2060
2158
|
prompts: z.ZodOptional<z.ZodObject<{
|
|
2061
2159
|
/**
|
|
2062
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
2160
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
2063
2161
|
*/
|
|
2064
2162
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
2065
2163
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2066
2164
|
/**
|
|
2067
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
2165
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
2068
2166
|
*/
|
|
2069
2167
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
2070
2168
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2071
2169
|
/**
|
|
2072
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
2170
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
2073
2171
|
*/
|
|
2074
2172
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
2075
2173
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -2078,29 +2176,29 @@ export declare const InitializeResultSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
2078
2176
|
*/
|
|
2079
2177
|
resources: z.ZodOptional<z.ZodObject<{
|
|
2080
2178
|
/**
|
|
2081
|
-
* Whether this server supports subscribing to resource updates.
|
|
2179
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
2082
2180
|
*/
|
|
2083
2181
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
2084
2182
|
/**
|
|
2085
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
2183
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
2086
2184
|
*/
|
|
2087
2185
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
2088
2186
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2089
2187
|
/**
|
|
2090
|
-
* Whether this server supports subscribing to resource updates.
|
|
2188
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
2091
2189
|
*/
|
|
2092
2190
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
2093
2191
|
/**
|
|
2094
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
2192
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
2095
2193
|
*/
|
|
2096
2194
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
2097
2195
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2098
2196
|
/**
|
|
2099
|
-
* Whether this server supports subscribing to resource updates.
|
|
2197
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
2100
2198
|
*/
|
|
2101
2199
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
2102
2200
|
/**
|
|
2103
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
2201
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
2104
2202
|
*/
|
|
2105
2203
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
2106
2204
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -2109,17 +2207,17 @@ export declare const InitializeResultSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
2109
2207
|
*/
|
|
2110
2208
|
tools: z.ZodOptional<z.ZodObject<{
|
|
2111
2209
|
/**
|
|
2112
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
2210
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
2113
2211
|
*/
|
|
2114
2212
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
2115
2213
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2116
2214
|
/**
|
|
2117
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
2215
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
2118
2216
|
*/
|
|
2119
2217
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
2120
2218
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2121
2219
|
/**
|
|
2122
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
2220
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
2123
2221
|
*/
|
|
2124
2222
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
2125
2223
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -2137,17 +2235,17 @@ export declare const InitializeResultSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
2137
2235
|
*/
|
|
2138
2236
|
prompts: z.ZodOptional<z.ZodObject<{
|
|
2139
2237
|
/**
|
|
2140
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
2238
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
2141
2239
|
*/
|
|
2142
2240
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
2143
2241
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2144
2242
|
/**
|
|
2145
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
2243
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
2146
2244
|
*/
|
|
2147
2245
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
2148
2246
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2149
2247
|
/**
|
|
2150
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
2248
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
2151
2249
|
*/
|
|
2152
2250
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
2153
2251
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -2156,29 +2254,29 @@ export declare const InitializeResultSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
2156
2254
|
*/
|
|
2157
2255
|
resources: z.ZodOptional<z.ZodObject<{
|
|
2158
2256
|
/**
|
|
2159
|
-
* Whether this server supports subscribing to resource updates.
|
|
2257
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
2160
2258
|
*/
|
|
2161
2259
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
2162
2260
|
/**
|
|
2163
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
2261
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
2164
2262
|
*/
|
|
2165
2263
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
2166
2264
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2167
2265
|
/**
|
|
2168
|
-
* Whether this server supports subscribing to resource updates.
|
|
2266
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
2169
2267
|
*/
|
|
2170
2268
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
2171
2269
|
/**
|
|
2172
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
2270
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
2173
2271
|
*/
|
|
2174
2272
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
2175
2273
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2176
2274
|
/**
|
|
2177
|
-
* Whether this server supports subscribing to resource updates.
|
|
2275
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
2178
2276
|
*/
|
|
2179
2277
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
2180
2278
|
/**
|
|
2181
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
2279
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
2182
2280
|
*/
|
|
2183
2281
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
2184
2282
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -2187,17 +2285,17 @@ export declare const InitializeResultSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
2187
2285
|
*/
|
|
2188
2286
|
tools: z.ZodOptional<z.ZodObject<{
|
|
2189
2287
|
/**
|
|
2190
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
2288
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
2191
2289
|
*/
|
|
2192
2290
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
2193
2291
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2194
2292
|
/**
|
|
2195
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
2293
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
2196
2294
|
*/
|
|
2197
2295
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
2198
2296
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2199
2297
|
/**
|
|
2200
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
2298
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
2201
2299
|
*/
|
|
2202
2300
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
2203
2301
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -2404,7 +2502,12 @@ export declare const ProgressNotificationSchema: z.ZodObject<z.objectUtil.extend
|
|
|
2404
2502
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
2405
2503
|
}, {
|
|
2406
2504
|
method: z.ZodLiteral<"notifications/progress">;
|
|
2407
|
-
params: z.ZodObject<z.objectUtil.extendShape<{
|
|
2505
|
+
params: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
2506
|
+
/**
|
|
2507
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
2508
|
+
*/
|
|
2509
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2510
|
+
}, {
|
|
2408
2511
|
/**
|
|
2409
2512
|
* The progress thus far. This should increase every time progress is made, even if the total is unknown.
|
|
2410
2513
|
*/
|
|
@@ -2413,12 +2516,17 @@ export declare const ProgressNotificationSchema: z.ZodObject<z.objectUtil.extend
|
|
|
2413
2516
|
* Total number of items to process (or total progress required), if known.
|
|
2414
2517
|
*/
|
|
2415
2518
|
total: z.ZodOptional<z.ZodNumber>;
|
|
2416
|
-
}
|
|
2519
|
+
}>, {
|
|
2417
2520
|
/**
|
|
2418
2521
|
* The progress token which was given in the initial request, used to associate this notification with the request that is proceeding.
|
|
2419
2522
|
*/
|
|
2420
2523
|
progressToken: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
2421
|
-
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
2524
|
+
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
2525
|
+
/**
|
|
2526
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
2527
|
+
*/
|
|
2528
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2529
|
+
}, {
|
|
2422
2530
|
/**
|
|
2423
2531
|
* The progress thus far. This should increase every time progress is made, even if the total is unknown.
|
|
2424
2532
|
*/
|
|
@@ -2427,12 +2535,17 @@ export declare const ProgressNotificationSchema: z.ZodObject<z.objectUtil.extend
|
|
|
2427
2535
|
* Total number of items to process (or total progress required), if known.
|
|
2428
2536
|
*/
|
|
2429
2537
|
total: z.ZodOptional<z.ZodNumber>;
|
|
2430
|
-
}
|
|
2538
|
+
}>, {
|
|
2431
2539
|
/**
|
|
2432
2540
|
* The progress token which was given in the initial request, used to associate this notification with the request that is proceeding.
|
|
2433
2541
|
*/
|
|
2434
2542
|
progressToken: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
2435
|
-
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
2543
|
+
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
2544
|
+
/**
|
|
2545
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
2546
|
+
*/
|
|
2547
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
2548
|
+
}, {
|
|
2436
2549
|
/**
|
|
2437
2550
|
* The progress thus far. This should increase every time progress is made, even if the total is unknown.
|
|
2438
2551
|
*/
|
|
@@ -2441,7 +2554,7 @@ export declare const ProgressNotificationSchema: z.ZodObject<z.objectUtil.extend
|
|
|
2441
2554
|
* Total number of items to process (or total progress required), if known.
|
|
2442
2555
|
*/
|
|
2443
2556
|
total: z.ZodOptional<z.ZodNumber>;
|
|
2444
|
-
}
|
|
2557
|
+
}>, {
|
|
2445
2558
|
/**
|
|
2446
2559
|
* The progress token which was given in the initial request, used to associate this notification with the request that is proceeding.
|
|
2447
2560
|
*/
|
|
@@ -2451,6 +2564,7 @@ export declare const ProgressNotificationSchema: z.ZodObject<z.objectUtil.extend
|
|
|
2451
2564
|
params: {
|
|
2452
2565
|
progressToken: string | number;
|
|
2453
2566
|
progress: number;
|
|
2567
|
+
_meta?: z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2454
2568
|
total?: number | undefined;
|
|
2455
2569
|
} & {
|
|
2456
2570
|
[k: string]: unknown;
|
|
@@ -2460,6 +2574,7 @@ export declare const ProgressNotificationSchema: z.ZodObject<z.objectUtil.extend
|
|
|
2460
2574
|
params: {
|
|
2461
2575
|
progressToken: string | number;
|
|
2462
2576
|
progress: number;
|
|
2577
|
+
_meta?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2463
2578
|
total?: number | undefined;
|
|
2464
2579
|
} & {
|
|
2465
2580
|
[k: string]: unknown;
|
|
@@ -4558,25 +4673,41 @@ export declare const ResourceUpdatedNotificationSchema: z.ZodObject<z.objectUtil
|
|
|
4558
4673
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
4559
4674
|
}, {
|
|
4560
4675
|
method: z.ZodLiteral<"notifications/resources/updated">;
|
|
4561
|
-
params: z.ZodObject<{
|
|
4676
|
+
params: z.ZodObject<z.objectUtil.extendShape<{
|
|
4677
|
+
/**
|
|
4678
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
4679
|
+
*/
|
|
4680
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
4681
|
+
}, {
|
|
4562
4682
|
/**
|
|
4563
4683
|
* The URI of the resource that has been updated. This might be a sub-resource of the one that the client actually subscribed to.
|
|
4564
4684
|
*/
|
|
4565
4685
|
uri: z.ZodString;
|
|
4566
|
-
}
|
|
4686
|
+
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
4687
|
+
/**
|
|
4688
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
4689
|
+
*/
|
|
4690
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
4691
|
+
}, {
|
|
4567
4692
|
/**
|
|
4568
4693
|
* The URI of the resource that has been updated. This might be a sub-resource of the one that the client actually subscribed to.
|
|
4569
4694
|
*/
|
|
4570
4695
|
uri: z.ZodString;
|
|
4571
|
-
}
|
|
4696
|
+
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
4697
|
+
/**
|
|
4698
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
4699
|
+
*/
|
|
4700
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
4701
|
+
}, {
|
|
4572
4702
|
/**
|
|
4573
4703
|
* The URI of the resource that has been updated. This might be a sub-resource of the one that the client actually subscribed to.
|
|
4574
4704
|
*/
|
|
4575
4705
|
uri: z.ZodString;
|
|
4576
|
-
}
|
|
4706
|
+
}>, z.ZodTypeAny, "passthrough">>;
|
|
4577
4707
|
}>, "strip", z.ZodTypeAny, {
|
|
4578
4708
|
params: {
|
|
4579
4709
|
uri: string;
|
|
4710
|
+
_meta?: z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
4580
4711
|
} & {
|
|
4581
4712
|
[k: string]: unknown;
|
|
4582
4713
|
};
|
|
@@ -4584,6 +4715,7 @@ export declare const ResourceUpdatedNotificationSchema: z.ZodObject<z.objectUtil
|
|
|
4584
4715
|
}, {
|
|
4585
4716
|
params: {
|
|
4586
4717
|
uri: string;
|
|
4718
|
+
_meta?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
4587
4719
|
} & {
|
|
4588
4720
|
[k: string]: unknown;
|
|
4589
4721
|
};
|
|
@@ -10612,7 +10744,7 @@ export declare const CallToolResultSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
10612
10744
|
blob: z.ZodString;
|
|
10613
10745
|
}>, z.ZodTypeAny, "passthrough">>]>;
|
|
10614
10746
|
}, z.ZodTypeAny, "passthrough">>]>, "many">;
|
|
10615
|
-
isError: z.ZodDefault<z.ZodBoolean
|
|
10747
|
+
isError: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
10616
10748
|
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
10617
10749
|
/**
|
|
10618
10750
|
* This result property is reserved by the protocol to allow clients and servers to attach additional metadata to their responses.
|
|
@@ -10929,7 +11061,7 @@ export declare const CallToolResultSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
10929
11061
|
blob: z.ZodString;
|
|
10930
11062
|
}>, z.ZodTypeAny, "passthrough">>]>;
|
|
10931
11063
|
}, z.ZodTypeAny, "passthrough">>]>, "many">;
|
|
10932
|
-
isError: z.ZodDefault<z.ZodBoolean
|
|
11064
|
+
isError: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
10933
11065
|
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
10934
11066
|
/**
|
|
10935
11067
|
* This result property is reserved by the protocol to allow clients and servers to attach additional metadata to their responses.
|
|
@@ -11246,7 +11378,7 @@ export declare const CallToolResultSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
11246
11378
|
blob: z.ZodString;
|
|
11247
11379
|
}>, z.ZodTypeAny, "passthrough">>]>;
|
|
11248
11380
|
}, z.ZodTypeAny, "passthrough">>]>, "many">;
|
|
11249
|
-
isError: z.ZodDefault<z.ZodBoolean
|
|
11381
|
+
isError: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
11250
11382
|
}>, z.ZodTypeAny, "passthrough">>;
|
|
11251
11383
|
/**
|
|
11252
11384
|
* CallToolResultSchema extended with backwards compatibility to protocol version 2024-10-07.
|
|
@@ -11567,7 +11699,7 @@ export declare const CompatibilityCallToolResultSchema: z.ZodUnion<[z.ZodObject<
|
|
|
11567
11699
|
blob: z.ZodString;
|
|
11568
11700
|
}>, z.ZodTypeAny, "passthrough">>]>;
|
|
11569
11701
|
}, z.ZodTypeAny, "passthrough">>]>, "many">;
|
|
11570
|
-
isError: z.ZodDefault<z.ZodBoolean
|
|
11702
|
+
isError: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
11571
11703
|
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
11572
11704
|
/**
|
|
11573
11705
|
* This result property is reserved by the protocol to allow clients and servers to attach additional metadata to their responses.
|
|
@@ -11884,7 +12016,7 @@ export declare const CompatibilityCallToolResultSchema: z.ZodUnion<[z.ZodObject<
|
|
|
11884
12016
|
blob: z.ZodString;
|
|
11885
12017
|
}>, z.ZodTypeAny, "passthrough">>]>;
|
|
11886
12018
|
}, z.ZodTypeAny, "passthrough">>]>, "many">;
|
|
11887
|
-
isError: z.ZodDefault<z.ZodBoolean
|
|
12019
|
+
isError: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
11888
12020
|
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
11889
12021
|
/**
|
|
11890
12022
|
* This result property is reserved by the protocol to allow clients and servers to attach additional metadata to their responses.
|
|
@@ -12201,7 +12333,7 @@ export declare const CompatibilityCallToolResultSchema: z.ZodUnion<[z.ZodObject<
|
|
|
12201
12333
|
blob: z.ZodString;
|
|
12202
12334
|
}>, z.ZodTypeAny, "passthrough">>]>;
|
|
12203
12335
|
}, z.ZodTypeAny, "passthrough">>]>, "many">;
|
|
12204
|
-
isError: z.ZodDefault<z.ZodBoolean
|
|
12336
|
+
isError: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
12205
12337
|
}>, z.ZodTypeAny, "passthrough">>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12206
12338
|
/**
|
|
12207
12339
|
* This result property is reserved by the protocol to allow clients and servers to attach additional metadata to their responses.
|
|
@@ -12593,7 +12725,12 @@ export declare const LoggingMessageNotificationSchema: z.ZodObject<z.objectUtil.
|
|
|
12593
12725
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
12594
12726
|
}, {
|
|
12595
12727
|
method: z.ZodLiteral<"notifications/message">;
|
|
12596
|
-
params: z.ZodObject<{
|
|
12728
|
+
params: z.ZodObject<z.objectUtil.extendShape<{
|
|
12729
|
+
/**
|
|
12730
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
12731
|
+
*/
|
|
12732
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
12733
|
+
}, {
|
|
12597
12734
|
/**
|
|
12598
12735
|
* The severity of this log message.
|
|
12599
12736
|
*/
|
|
@@ -12606,7 +12743,12 @@ export declare const LoggingMessageNotificationSchema: z.ZodObject<z.objectUtil.
|
|
|
12606
12743
|
* The data to be logged, such as a string message or an object. Any JSON serializable type is allowed here.
|
|
12607
12744
|
*/
|
|
12608
12745
|
data: z.ZodUnknown;
|
|
12609
|
-
}
|
|
12746
|
+
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
12747
|
+
/**
|
|
12748
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
12749
|
+
*/
|
|
12750
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
12751
|
+
}, {
|
|
12610
12752
|
/**
|
|
12611
12753
|
* The severity of this log message.
|
|
12612
12754
|
*/
|
|
@@ -12619,7 +12761,12 @@ export declare const LoggingMessageNotificationSchema: z.ZodObject<z.objectUtil.
|
|
|
12619
12761
|
* The data to be logged, such as a string message or an object. Any JSON serializable type is allowed here.
|
|
12620
12762
|
*/
|
|
12621
12763
|
data: z.ZodUnknown;
|
|
12622
|
-
}
|
|
12764
|
+
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
12765
|
+
/**
|
|
12766
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
12767
|
+
*/
|
|
12768
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
12769
|
+
}, {
|
|
12623
12770
|
/**
|
|
12624
12771
|
* The severity of this log message.
|
|
12625
12772
|
*/
|
|
@@ -12632,10 +12779,11 @@ export declare const LoggingMessageNotificationSchema: z.ZodObject<z.objectUtil.
|
|
|
12632
12779
|
* The data to be logged, such as a string message or an object. Any JSON serializable type is allowed here.
|
|
12633
12780
|
*/
|
|
12634
12781
|
data: z.ZodUnknown;
|
|
12635
|
-
}
|
|
12782
|
+
}>, z.ZodTypeAny, "passthrough">>;
|
|
12636
12783
|
}>, "strip", z.ZodTypeAny, {
|
|
12637
12784
|
params: {
|
|
12638
12785
|
level: "error" | "debug" | "info" | "notice" | "warning" | "critical" | "alert" | "emergency";
|
|
12786
|
+
_meta?: z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
12639
12787
|
data?: unknown;
|
|
12640
12788
|
logger?: string | undefined;
|
|
12641
12789
|
} & {
|
|
@@ -12645,6 +12793,7 @@ export declare const LoggingMessageNotificationSchema: z.ZodObject<z.objectUtil.
|
|
|
12645
12793
|
}, {
|
|
12646
12794
|
params: {
|
|
12647
12795
|
level: "error" | "debug" | "info" | "notice" | "warning" | "critical" | "alert" | "emergency";
|
|
12796
|
+
_meta?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
12648
12797
|
data?: unknown;
|
|
12649
12798
|
logger?: string | undefined;
|
|
12650
12799
|
} & {
|
|
@@ -15293,17 +15442,17 @@ export declare const ClientRequestSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.e
|
|
|
15293
15442
|
*/
|
|
15294
15443
|
roots: z.ZodOptional<z.ZodObject<{
|
|
15295
15444
|
/**
|
|
15296
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15445
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15297
15446
|
*/
|
|
15298
15447
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15299
15448
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
15300
15449
|
/**
|
|
15301
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15450
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15302
15451
|
*/
|
|
15303
15452
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15304
15453
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
15305
15454
|
/**
|
|
15306
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15455
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15307
15456
|
*/
|
|
15308
15457
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15309
15458
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -15321,17 +15470,17 @@ export declare const ClientRequestSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.e
|
|
|
15321
15470
|
*/
|
|
15322
15471
|
roots: z.ZodOptional<z.ZodObject<{
|
|
15323
15472
|
/**
|
|
15324
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15473
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15325
15474
|
*/
|
|
15326
15475
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15327
15476
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
15328
15477
|
/**
|
|
15329
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15478
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15330
15479
|
*/
|
|
15331
15480
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15332
15481
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
15333
15482
|
/**
|
|
15334
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15483
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15335
15484
|
*/
|
|
15336
15485
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15337
15486
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -15349,17 +15498,17 @@ export declare const ClientRequestSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.e
|
|
|
15349
15498
|
*/
|
|
15350
15499
|
roots: z.ZodOptional<z.ZodObject<{
|
|
15351
15500
|
/**
|
|
15352
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15501
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15353
15502
|
*/
|
|
15354
15503
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15355
15504
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
15356
15505
|
/**
|
|
15357
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15506
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15358
15507
|
*/
|
|
15359
15508
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15360
15509
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
15361
15510
|
/**
|
|
15362
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15511
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15363
15512
|
*/
|
|
15364
15513
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15365
15514
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -15410,17 +15559,17 @@ export declare const ClientRequestSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.e
|
|
|
15410
15559
|
*/
|
|
15411
15560
|
roots: z.ZodOptional<z.ZodObject<{
|
|
15412
15561
|
/**
|
|
15413
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15562
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15414
15563
|
*/
|
|
15415
15564
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15416
15565
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
15417
15566
|
/**
|
|
15418
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15567
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15419
15568
|
*/
|
|
15420
15569
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15421
15570
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
15422
15571
|
/**
|
|
15423
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15572
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15424
15573
|
*/
|
|
15425
15574
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15426
15575
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -15438,17 +15587,17 @@ export declare const ClientRequestSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.e
|
|
|
15438
15587
|
*/
|
|
15439
15588
|
roots: z.ZodOptional<z.ZodObject<{
|
|
15440
15589
|
/**
|
|
15441
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15590
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15442
15591
|
*/
|
|
15443
15592
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15444
15593
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
15445
15594
|
/**
|
|
15446
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15595
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15447
15596
|
*/
|
|
15448
15597
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15449
15598
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
15450
15599
|
/**
|
|
15451
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15600
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15452
15601
|
*/
|
|
15453
15602
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15454
15603
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -15466,17 +15615,17 @@ export declare const ClientRequestSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.e
|
|
|
15466
15615
|
*/
|
|
15467
15616
|
roots: z.ZodOptional<z.ZodObject<{
|
|
15468
15617
|
/**
|
|
15469
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15618
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15470
15619
|
*/
|
|
15471
15620
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15472
15621
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
15473
15622
|
/**
|
|
15474
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15623
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15475
15624
|
*/
|
|
15476
15625
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15477
15626
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
15478
15627
|
/**
|
|
15479
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15628
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15480
15629
|
*/
|
|
15481
15630
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15482
15631
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -15527,17 +15676,17 @@ export declare const ClientRequestSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.e
|
|
|
15527
15676
|
*/
|
|
15528
15677
|
roots: z.ZodOptional<z.ZodObject<{
|
|
15529
15678
|
/**
|
|
15530
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15679
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15531
15680
|
*/
|
|
15532
15681
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15533
15682
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
15534
15683
|
/**
|
|
15535
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15684
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15536
15685
|
*/
|
|
15537
15686
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15538
15687
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
15539
15688
|
/**
|
|
15540
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15689
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15541
15690
|
*/
|
|
15542
15691
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15543
15692
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -15555,17 +15704,17 @@ export declare const ClientRequestSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.e
|
|
|
15555
15704
|
*/
|
|
15556
15705
|
roots: z.ZodOptional<z.ZodObject<{
|
|
15557
15706
|
/**
|
|
15558
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15707
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15559
15708
|
*/
|
|
15560
15709
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15561
15710
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
15562
15711
|
/**
|
|
15563
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15712
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15564
15713
|
*/
|
|
15565
15714
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15566
15715
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
15567
15716
|
/**
|
|
15568
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15717
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15569
15718
|
*/
|
|
15570
15719
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15571
15720
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -15583,17 +15732,17 @@ export declare const ClientRequestSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.e
|
|
|
15583
15732
|
*/
|
|
15584
15733
|
roots: z.ZodOptional<z.ZodObject<{
|
|
15585
15734
|
/**
|
|
15586
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15735
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15587
15736
|
*/
|
|
15588
15737
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15589
15738
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
15590
15739
|
/**
|
|
15591
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15740
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15592
15741
|
*/
|
|
15593
15742
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15594
15743
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
15595
15744
|
/**
|
|
15596
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15745
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15597
15746
|
*/
|
|
15598
15747
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15599
15748
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -15617,7 +15766,7 @@ export declare const ClientRequestSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.e
|
|
|
15617
15766
|
sampling?: z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
15618
15767
|
roots?: z.objectOutputType<{
|
|
15619
15768
|
/**
|
|
15620
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15769
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15621
15770
|
*/
|
|
15622
15771
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15623
15772
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
@@ -15648,7 +15797,7 @@ export declare const ClientRequestSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.e
|
|
|
15648
15797
|
sampling?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
15649
15798
|
roots?: z.objectInputType<{
|
|
15650
15799
|
/**
|
|
15651
|
-
* Whether the client supports notifications for changes to the roots list.
|
|
15800
|
+
* Whether the client supports issuing notifications for changes to the roots list.
|
|
15652
15801
|
*/
|
|
15653
15802
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
15654
15803
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
@@ -17688,8 +17837,100 @@ export declare const ClientNotificationSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
17688
17837
|
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
17689
17838
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
17690
17839
|
}, {
|
|
17691
|
-
method: z.ZodLiteral<"notifications/
|
|
17840
|
+
method: z.ZodLiteral<"notifications/cancelled">;
|
|
17692
17841
|
params: z.ZodObject<z.objectUtil.extendShape<{
|
|
17842
|
+
/**
|
|
17843
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
17844
|
+
*/
|
|
17845
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
17846
|
+
}, {
|
|
17847
|
+
/**
|
|
17848
|
+
* The ID of the request to cancel.
|
|
17849
|
+
*
|
|
17850
|
+
* This MUST correspond to the ID of a request previously issued in the same direction.
|
|
17851
|
+
*/
|
|
17852
|
+
requestId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
17853
|
+
/**
|
|
17854
|
+
* An optional string describing the reason for the cancellation. This MAY be logged or presented to the user.
|
|
17855
|
+
*/
|
|
17856
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
17857
|
+
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
17858
|
+
/**
|
|
17859
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
17860
|
+
*/
|
|
17861
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
17862
|
+
}, {
|
|
17863
|
+
/**
|
|
17864
|
+
* The ID of the request to cancel.
|
|
17865
|
+
*
|
|
17866
|
+
* This MUST correspond to the ID of a request previously issued in the same direction.
|
|
17867
|
+
*/
|
|
17868
|
+
requestId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
17869
|
+
/**
|
|
17870
|
+
* An optional string describing the reason for the cancellation. This MAY be logged or presented to the user.
|
|
17871
|
+
*/
|
|
17872
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
17873
|
+
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
17874
|
+
/**
|
|
17875
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
17876
|
+
*/
|
|
17877
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
17878
|
+
}, {
|
|
17879
|
+
/**
|
|
17880
|
+
* The ID of the request to cancel.
|
|
17881
|
+
*
|
|
17882
|
+
* This MUST correspond to the ID of a request previously issued in the same direction.
|
|
17883
|
+
*/
|
|
17884
|
+
requestId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
17885
|
+
/**
|
|
17886
|
+
* An optional string describing the reason for the cancellation. This MAY be logged or presented to the user.
|
|
17887
|
+
*/
|
|
17888
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
17889
|
+
}>, z.ZodTypeAny, "passthrough">>;
|
|
17890
|
+
}>, "strip", z.ZodTypeAny, {
|
|
17891
|
+
params: {
|
|
17892
|
+
requestId: string | number;
|
|
17893
|
+
_meta?: z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
17894
|
+
reason?: string | undefined;
|
|
17895
|
+
} & {
|
|
17896
|
+
[k: string]: unknown;
|
|
17897
|
+
};
|
|
17898
|
+
method: "notifications/cancelled";
|
|
17899
|
+
}, {
|
|
17900
|
+
params: {
|
|
17901
|
+
requestId: string | number;
|
|
17902
|
+
_meta?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
17903
|
+
reason?: string | undefined;
|
|
17904
|
+
} & {
|
|
17905
|
+
[k: string]: unknown;
|
|
17906
|
+
};
|
|
17907
|
+
method: "notifications/cancelled";
|
|
17908
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
17909
|
+
method: z.ZodString;
|
|
17910
|
+
params: z.ZodOptional<z.ZodObject<{
|
|
17911
|
+
/**
|
|
17912
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
17913
|
+
*/
|
|
17914
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
17915
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
17916
|
+
/**
|
|
17917
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
17918
|
+
*/
|
|
17919
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
17920
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
17921
|
+
/**
|
|
17922
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
17923
|
+
*/
|
|
17924
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
17925
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
17926
|
+
}, {
|
|
17927
|
+
method: z.ZodLiteral<"notifications/progress">;
|
|
17928
|
+
params: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
17929
|
+
/**
|
|
17930
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
17931
|
+
*/
|
|
17932
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
17933
|
+
}, {
|
|
17693
17934
|
/**
|
|
17694
17935
|
* The progress thus far. This should increase every time progress is made, even if the total is unknown.
|
|
17695
17936
|
*/
|
|
@@ -17698,12 +17939,17 @@ export declare const ClientNotificationSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
17698
17939
|
* Total number of items to process (or total progress required), if known.
|
|
17699
17940
|
*/
|
|
17700
17941
|
total: z.ZodOptional<z.ZodNumber>;
|
|
17701
|
-
}
|
|
17942
|
+
}>, {
|
|
17702
17943
|
/**
|
|
17703
17944
|
* The progress token which was given in the initial request, used to associate this notification with the request that is proceeding.
|
|
17704
17945
|
*/
|
|
17705
17946
|
progressToken: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
17706
|
-
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
17947
|
+
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
17948
|
+
/**
|
|
17949
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
17950
|
+
*/
|
|
17951
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
17952
|
+
}, {
|
|
17707
17953
|
/**
|
|
17708
17954
|
* The progress thus far. This should increase every time progress is made, even if the total is unknown.
|
|
17709
17955
|
*/
|
|
@@ -17712,12 +17958,17 @@ export declare const ClientNotificationSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
17712
17958
|
* Total number of items to process (or total progress required), if known.
|
|
17713
17959
|
*/
|
|
17714
17960
|
total: z.ZodOptional<z.ZodNumber>;
|
|
17715
|
-
}
|
|
17961
|
+
}>, {
|
|
17716
17962
|
/**
|
|
17717
17963
|
* The progress token which was given in the initial request, used to associate this notification with the request that is proceeding.
|
|
17718
17964
|
*/
|
|
17719
17965
|
progressToken: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
17720
|
-
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
17966
|
+
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
17967
|
+
/**
|
|
17968
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
17969
|
+
*/
|
|
17970
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
17971
|
+
}, {
|
|
17721
17972
|
/**
|
|
17722
17973
|
* The progress thus far. This should increase every time progress is made, even if the total is unknown.
|
|
17723
17974
|
*/
|
|
@@ -17726,7 +17977,7 @@ export declare const ClientNotificationSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
17726
17977
|
* Total number of items to process (or total progress required), if known.
|
|
17727
17978
|
*/
|
|
17728
17979
|
total: z.ZodOptional<z.ZodNumber>;
|
|
17729
|
-
}
|
|
17980
|
+
}>, {
|
|
17730
17981
|
/**
|
|
17731
17982
|
* The progress token which was given in the initial request, used to associate this notification with the request that is proceeding.
|
|
17732
17983
|
*/
|
|
@@ -17736,6 +17987,7 @@ export declare const ClientNotificationSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
17736
17987
|
params: {
|
|
17737
17988
|
progressToken: string | number;
|
|
17738
17989
|
progress: number;
|
|
17990
|
+
_meta?: z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
17739
17991
|
total?: number | undefined;
|
|
17740
17992
|
} & {
|
|
17741
17993
|
[k: string]: unknown;
|
|
@@ -17745,6 +17997,7 @@ export declare const ClientNotificationSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
17745
17997
|
params: {
|
|
17746
17998
|
progressToken: string | number;
|
|
17747
17999
|
progress: number;
|
|
18000
|
+
_meta?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
17748
18001
|
total?: number | undefined;
|
|
17749
18002
|
} & {
|
|
17750
18003
|
[k: string]: unknown;
|
|
@@ -19472,8 +19725,100 @@ export declare const ServerNotificationSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
19472
19725
|
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
19473
19726
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
19474
19727
|
}, {
|
|
19475
|
-
method: z.ZodLiteral<"notifications/
|
|
19728
|
+
method: z.ZodLiteral<"notifications/cancelled">;
|
|
19476
19729
|
params: z.ZodObject<z.objectUtil.extendShape<{
|
|
19730
|
+
/**
|
|
19731
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
19732
|
+
*/
|
|
19733
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
19734
|
+
}, {
|
|
19735
|
+
/**
|
|
19736
|
+
* The ID of the request to cancel.
|
|
19737
|
+
*
|
|
19738
|
+
* This MUST correspond to the ID of a request previously issued in the same direction.
|
|
19739
|
+
*/
|
|
19740
|
+
requestId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
19741
|
+
/**
|
|
19742
|
+
* An optional string describing the reason for the cancellation. This MAY be logged or presented to the user.
|
|
19743
|
+
*/
|
|
19744
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
19745
|
+
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
19746
|
+
/**
|
|
19747
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
19748
|
+
*/
|
|
19749
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
19750
|
+
}, {
|
|
19751
|
+
/**
|
|
19752
|
+
* The ID of the request to cancel.
|
|
19753
|
+
*
|
|
19754
|
+
* This MUST correspond to the ID of a request previously issued in the same direction.
|
|
19755
|
+
*/
|
|
19756
|
+
requestId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
19757
|
+
/**
|
|
19758
|
+
* An optional string describing the reason for the cancellation. This MAY be logged or presented to the user.
|
|
19759
|
+
*/
|
|
19760
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
19761
|
+
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
19762
|
+
/**
|
|
19763
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
19764
|
+
*/
|
|
19765
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
19766
|
+
}, {
|
|
19767
|
+
/**
|
|
19768
|
+
* The ID of the request to cancel.
|
|
19769
|
+
*
|
|
19770
|
+
* This MUST correspond to the ID of a request previously issued in the same direction.
|
|
19771
|
+
*/
|
|
19772
|
+
requestId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
19773
|
+
/**
|
|
19774
|
+
* An optional string describing the reason for the cancellation. This MAY be logged or presented to the user.
|
|
19775
|
+
*/
|
|
19776
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
19777
|
+
}>, z.ZodTypeAny, "passthrough">>;
|
|
19778
|
+
}>, "strip", z.ZodTypeAny, {
|
|
19779
|
+
params: {
|
|
19780
|
+
requestId: string | number;
|
|
19781
|
+
_meta?: z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
19782
|
+
reason?: string | undefined;
|
|
19783
|
+
} & {
|
|
19784
|
+
[k: string]: unknown;
|
|
19785
|
+
};
|
|
19786
|
+
method: "notifications/cancelled";
|
|
19787
|
+
}, {
|
|
19788
|
+
params: {
|
|
19789
|
+
requestId: string | number;
|
|
19790
|
+
_meta?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
19791
|
+
reason?: string | undefined;
|
|
19792
|
+
} & {
|
|
19793
|
+
[k: string]: unknown;
|
|
19794
|
+
};
|
|
19795
|
+
method: "notifications/cancelled";
|
|
19796
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
19797
|
+
method: z.ZodString;
|
|
19798
|
+
params: z.ZodOptional<z.ZodObject<{
|
|
19799
|
+
/**
|
|
19800
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
19801
|
+
*/
|
|
19802
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
19803
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
19804
|
+
/**
|
|
19805
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
19806
|
+
*/
|
|
19807
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
19808
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
19809
|
+
/**
|
|
19810
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
19811
|
+
*/
|
|
19812
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
19813
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
19814
|
+
}, {
|
|
19815
|
+
method: z.ZodLiteral<"notifications/progress">;
|
|
19816
|
+
params: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
19817
|
+
/**
|
|
19818
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
19819
|
+
*/
|
|
19820
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
19821
|
+
}, {
|
|
19477
19822
|
/**
|
|
19478
19823
|
* The progress thus far. This should increase every time progress is made, even if the total is unknown.
|
|
19479
19824
|
*/
|
|
@@ -19482,12 +19827,17 @@ export declare const ServerNotificationSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
19482
19827
|
* Total number of items to process (or total progress required), if known.
|
|
19483
19828
|
*/
|
|
19484
19829
|
total: z.ZodOptional<z.ZodNumber>;
|
|
19485
|
-
}
|
|
19830
|
+
}>, {
|
|
19486
19831
|
/**
|
|
19487
19832
|
* The progress token which was given in the initial request, used to associate this notification with the request that is proceeding.
|
|
19488
19833
|
*/
|
|
19489
19834
|
progressToken: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
19490
|
-
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
19835
|
+
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
19836
|
+
/**
|
|
19837
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
19838
|
+
*/
|
|
19839
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
19840
|
+
}, {
|
|
19491
19841
|
/**
|
|
19492
19842
|
* The progress thus far. This should increase every time progress is made, even if the total is unknown.
|
|
19493
19843
|
*/
|
|
@@ -19496,12 +19846,17 @@ export declare const ServerNotificationSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
19496
19846
|
* Total number of items to process (or total progress required), if known.
|
|
19497
19847
|
*/
|
|
19498
19848
|
total: z.ZodOptional<z.ZodNumber>;
|
|
19499
|
-
}
|
|
19849
|
+
}>, {
|
|
19500
19850
|
/**
|
|
19501
19851
|
* The progress token which was given in the initial request, used to associate this notification with the request that is proceeding.
|
|
19502
19852
|
*/
|
|
19503
19853
|
progressToken: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
19504
|
-
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
19854
|
+
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
19855
|
+
/**
|
|
19856
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
19857
|
+
*/
|
|
19858
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
19859
|
+
}, {
|
|
19505
19860
|
/**
|
|
19506
19861
|
* The progress thus far. This should increase every time progress is made, even if the total is unknown.
|
|
19507
19862
|
*/
|
|
@@ -19510,7 +19865,7 @@ export declare const ServerNotificationSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
19510
19865
|
* Total number of items to process (or total progress required), if known.
|
|
19511
19866
|
*/
|
|
19512
19867
|
total: z.ZodOptional<z.ZodNumber>;
|
|
19513
|
-
}
|
|
19868
|
+
}>, {
|
|
19514
19869
|
/**
|
|
19515
19870
|
* The progress token which was given in the initial request, used to associate this notification with the request that is proceeding.
|
|
19516
19871
|
*/
|
|
@@ -19520,6 +19875,7 @@ export declare const ServerNotificationSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
19520
19875
|
params: {
|
|
19521
19876
|
progressToken: string | number;
|
|
19522
19877
|
progress: number;
|
|
19878
|
+
_meta?: z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
19523
19879
|
total?: number | undefined;
|
|
19524
19880
|
} & {
|
|
19525
19881
|
[k: string]: unknown;
|
|
@@ -19529,6 +19885,7 @@ export declare const ServerNotificationSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
19529
19885
|
params: {
|
|
19530
19886
|
progressToken: string | number;
|
|
19531
19887
|
progress: number;
|
|
19888
|
+
_meta?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
19532
19889
|
total?: number | undefined;
|
|
19533
19890
|
} & {
|
|
19534
19891
|
[k: string]: unknown;
|
|
@@ -19554,7 +19911,12 @@ export declare const ServerNotificationSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
19554
19911
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
19555
19912
|
}, {
|
|
19556
19913
|
method: z.ZodLiteral<"notifications/message">;
|
|
19557
|
-
params: z.ZodObject<{
|
|
19914
|
+
params: z.ZodObject<z.objectUtil.extendShape<{
|
|
19915
|
+
/**
|
|
19916
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
19917
|
+
*/
|
|
19918
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
19919
|
+
}, {
|
|
19558
19920
|
/**
|
|
19559
19921
|
* The severity of this log message.
|
|
19560
19922
|
*/
|
|
@@ -19567,7 +19929,12 @@ export declare const ServerNotificationSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
19567
19929
|
* The data to be logged, such as a string message or an object. Any JSON serializable type is allowed here.
|
|
19568
19930
|
*/
|
|
19569
19931
|
data: z.ZodUnknown;
|
|
19570
|
-
}
|
|
19932
|
+
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
19933
|
+
/**
|
|
19934
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
19935
|
+
*/
|
|
19936
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
19937
|
+
}, {
|
|
19571
19938
|
/**
|
|
19572
19939
|
* The severity of this log message.
|
|
19573
19940
|
*/
|
|
@@ -19580,7 +19947,12 @@ export declare const ServerNotificationSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
19580
19947
|
* The data to be logged, such as a string message or an object. Any JSON serializable type is allowed here.
|
|
19581
19948
|
*/
|
|
19582
19949
|
data: z.ZodUnknown;
|
|
19583
|
-
}
|
|
19950
|
+
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
19951
|
+
/**
|
|
19952
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
19953
|
+
*/
|
|
19954
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
19955
|
+
}, {
|
|
19584
19956
|
/**
|
|
19585
19957
|
* The severity of this log message.
|
|
19586
19958
|
*/
|
|
@@ -19593,10 +19965,11 @@ export declare const ServerNotificationSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
19593
19965
|
* The data to be logged, such as a string message or an object. Any JSON serializable type is allowed here.
|
|
19594
19966
|
*/
|
|
19595
19967
|
data: z.ZodUnknown;
|
|
19596
|
-
}
|
|
19968
|
+
}>, z.ZodTypeAny, "passthrough">>;
|
|
19597
19969
|
}>, "strip", z.ZodTypeAny, {
|
|
19598
19970
|
params: {
|
|
19599
19971
|
level: "error" | "debug" | "info" | "notice" | "warning" | "critical" | "alert" | "emergency";
|
|
19972
|
+
_meta?: z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
19600
19973
|
data?: unknown;
|
|
19601
19974
|
logger?: string | undefined;
|
|
19602
19975
|
} & {
|
|
@@ -19606,6 +19979,7 @@ export declare const ServerNotificationSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
19606
19979
|
}, {
|
|
19607
19980
|
params: {
|
|
19608
19981
|
level: "error" | "debug" | "info" | "notice" | "warning" | "critical" | "alert" | "emergency";
|
|
19982
|
+
_meta?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
19609
19983
|
data?: unknown;
|
|
19610
19984
|
logger?: string | undefined;
|
|
19611
19985
|
} & {
|
|
@@ -19632,25 +20006,41 @@ export declare const ServerNotificationSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
19632
20006
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
19633
20007
|
}, {
|
|
19634
20008
|
method: z.ZodLiteral<"notifications/resources/updated">;
|
|
19635
|
-
params: z.ZodObject<{
|
|
20009
|
+
params: z.ZodObject<z.objectUtil.extendShape<{
|
|
20010
|
+
/**
|
|
20011
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
20012
|
+
*/
|
|
20013
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
20014
|
+
}, {
|
|
19636
20015
|
/**
|
|
19637
20016
|
* The URI of the resource that has been updated. This might be a sub-resource of the one that the client actually subscribed to.
|
|
19638
20017
|
*/
|
|
19639
20018
|
uri: z.ZodString;
|
|
19640
|
-
}
|
|
20019
|
+
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
20020
|
+
/**
|
|
20021
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
20022
|
+
*/
|
|
20023
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
20024
|
+
}, {
|
|
19641
20025
|
/**
|
|
19642
20026
|
* The URI of the resource that has been updated. This might be a sub-resource of the one that the client actually subscribed to.
|
|
19643
20027
|
*/
|
|
19644
20028
|
uri: z.ZodString;
|
|
19645
|
-
}
|
|
20029
|
+
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
20030
|
+
/**
|
|
20031
|
+
* This parameter name is reserved by MCP to allow clients and servers to attach additional metadata to their notifications.
|
|
20032
|
+
*/
|
|
20033
|
+
_meta: z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
|
|
20034
|
+
}, {
|
|
19646
20035
|
/**
|
|
19647
20036
|
* The URI of the resource that has been updated. This might be a sub-resource of the one that the client actually subscribed to.
|
|
19648
20037
|
*/
|
|
19649
20038
|
uri: z.ZodString;
|
|
19650
|
-
}
|
|
20039
|
+
}>, z.ZodTypeAny, "passthrough">>;
|
|
19651
20040
|
}>, "strip", z.ZodTypeAny, {
|
|
19652
20041
|
params: {
|
|
19653
20042
|
uri: string;
|
|
20043
|
+
_meta?: z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
19654
20044
|
} & {
|
|
19655
20045
|
[k: string]: unknown;
|
|
19656
20046
|
};
|
|
@@ -19658,6 +20048,7 @@ export declare const ServerNotificationSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
19658
20048
|
}, {
|
|
19659
20049
|
params: {
|
|
19660
20050
|
uri: string;
|
|
20051
|
+
_meta?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
19661
20052
|
} & {
|
|
19662
20053
|
[k: string]: unknown;
|
|
19663
20054
|
};
|
|
@@ -19804,17 +20195,17 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
19804
20195
|
*/
|
|
19805
20196
|
prompts: z.ZodOptional<z.ZodObject<{
|
|
19806
20197
|
/**
|
|
19807
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
20198
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
19808
20199
|
*/
|
|
19809
20200
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
19810
20201
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
19811
20202
|
/**
|
|
19812
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
20203
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
19813
20204
|
*/
|
|
19814
20205
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
19815
20206
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
19816
20207
|
/**
|
|
19817
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
20208
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
19818
20209
|
*/
|
|
19819
20210
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
19820
20211
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -19823,29 +20214,29 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
19823
20214
|
*/
|
|
19824
20215
|
resources: z.ZodOptional<z.ZodObject<{
|
|
19825
20216
|
/**
|
|
19826
|
-
* Whether this server supports subscribing to resource updates.
|
|
20217
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
19827
20218
|
*/
|
|
19828
20219
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
19829
20220
|
/**
|
|
19830
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
20221
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
19831
20222
|
*/
|
|
19832
20223
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
19833
20224
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
19834
20225
|
/**
|
|
19835
|
-
* Whether this server supports subscribing to resource updates.
|
|
20226
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
19836
20227
|
*/
|
|
19837
20228
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
19838
20229
|
/**
|
|
19839
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
20230
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
19840
20231
|
*/
|
|
19841
20232
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
19842
20233
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
19843
20234
|
/**
|
|
19844
|
-
* Whether this server supports subscribing to resource updates.
|
|
20235
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
19845
20236
|
*/
|
|
19846
20237
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
19847
20238
|
/**
|
|
19848
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
20239
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
19849
20240
|
*/
|
|
19850
20241
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
19851
20242
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -19854,17 +20245,17 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
19854
20245
|
*/
|
|
19855
20246
|
tools: z.ZodOptional<z.ZodObject<{
|
|
19856
20247
|
/**
|
|
19857
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
20248
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
19858
20249
|
*/
|
|
19859
20250
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
19860
20251
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
19861
20252
|
/**
|
|
19862
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
20253
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
19863
20254
|
*/
|
|
19864
20255
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
19865
20256
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
19866
20257
|
/**
|
|
19867
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
20258
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
19868
20259
|
*/
|
|
19869
20260
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
19870
20261
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -19882,17 +20273,17 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
19882
20273
|
*/
|
|
19883
20274
|
prompts: z.ZodOptional<z.ZodObject<{
|
|
19884
20275
|
/**
|
|
19885
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
20276
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
19886
20277
|
*/
|
|
19887
20278
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
19888
20279
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
19889
20280
|
/**
|
|
19890
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
20281
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
19891
20282
|
*/
|
|
19892
20283
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
19893
20284
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
19894
20285
|
/**
|
|
19895
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
20286
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
19896
20287
|
*/
|
|
19897
20288
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
19898
20289
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -19901,29 +20292,29 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
19901
20292
|
*/
|
|
19902
20293
|
resources: z.ZodOptional<z.ZodObject<{
|
|
19903
20294
|
/**
|
|
19904
|
-
* Whether this server supports subscribing to resource updates.
|
|
20295
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
19905
20296
|
*/
|
|
19906
20297
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
19907
20298
|
/**
|
|
19908
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
20299
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
19909
20300
|
*/
|
|
19910
20301
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
19911
20302
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
19912
20303
|
/**
|
|
19913
|
-
* Whether this server supports subscribing to resource updates.
|
|
20304
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
19914
20305
|
*/
|
|
19915
20306
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
19916
20307
|
/**
|
|
19917
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
20308
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
19918
20309
|
*/
|
|
19919
20310
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
19920
20311
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
19921
20312
|
/**
|
|
19922
|
-
* Whether this server supports subscribing to resource updates.
|
|
20313
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
19923
20314
|
*/
|
|
19924
20315
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
19925
20316
|
/**
|
|
19926
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
20317
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
19927
20318
|
*/
|
|
19928
20319
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
19929
20320
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -19932,17 +20323,17 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
19932
20323
|
*/
|
|
19933
20324
|
tools: z.ZodOptional<z.ZodObject<{
|
|
19934
20325
|
/**
|
|
19935
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
20326
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
19936
20327
|
*/
|
|
19937
20328
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
19938
20329
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
19939
20330
|
/**
|
|
19940
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
20331
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
19941
20332
|
*/
|
|
19942
20333
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
19943
20334
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
19944
20335
|
/**
|
|
19945
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
20336
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
19946
20337
|
*/
|
|
19947
20338
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
19948
20339
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -19960,17 +20351,17 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
19960
20351
|
*/
|
|
19961
20352
|
prompts: z.ZodOptional<z.ZodObject<{
|
|
19962
20353
|
/**
|
|
19963
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
20354
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
19964
20355
|
*/
|
|
19965
20356
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
19966
20357
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
19967
20358
|
/**
|
|
19968
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
20359
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
19969
20360
|
*/
|
|
19970
20361
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
19971
20362
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
19972
20363
|
/**
|
|
19973
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
20364
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
19974
20365
|
*/
|
|
19975
20366
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
19976
20367
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -19979,29 +20370,29 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
19979
20370
|
*/
|
|
19980
20371
|
resources: z.ZodOptional<z.ZodObject<{
|
|
19981
20372
|
/**
|
|
19982
|
-
* Whether this server supports subscribing to resource updates.
|
|
20373
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
19983
20374
|
*/
|
|
19984
20375
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
19985
20376
|
/**
|
|
19986
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
20377
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
19987
20378
|
*/
|
|
19988
20379
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
19989
20380
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
19990
20381
|
/**
|
|
19991
|
-
* Whether this server supports subscribing to resource updates.
|
|
20382
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
19992
20383
|
*/
|
|
19993
20384
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
19994
20385
|
/**
|
|
19995
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
20386
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
19996
20387
|
*/
|
|
19997
20388
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
19998
20389
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
19999
20390
|
/**
|
|
20000
|
-
* Whether this server supports subscribing to resource updates.
|
|
20391
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
20001
20392
|
*/
|
|
20002
20393
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
20003
20394
|
/**
|
|
20004
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
20395
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
20005
20396
|
*/
|
|
20006
20397
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20007
20398
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -20010,17 +20401,17 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20010
20401
|
*/
|
|
20011
20402
|
tools: z.ZodOptional<z.ZodObject<{
|
|
20012
20403
|
/**
|
|
20013
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
20404
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
20014
20405
|
*/
|
|
20015
20406
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20016
20407
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
20017
20408
|
/**
|
|
20018
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
20409
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
20019
20410
|
*/
|
|
20020
20411
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20021
20412
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
20022
20413
|
/**
|
|
20023
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
20414
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
20024
20415
|
*/
|
|
20025
20416
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20026
20417
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -20059,17 +20450,17 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20059
20450
|
*/
|
|
20060
20451
|
prompts: z.ZodOptional<z.ZodObject<{
|
|
20061
20452
|
/**
|
|
20062
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
20453
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
20063
20454
|
*/
|
|
20064
20455
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20065
20456
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
20066
20457
|
/**
|
|
20067
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
20458
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
20068
20459
|
*/
|
|
20069
20460
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20070
20461
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
20071
20462
|
/**
|
|
20072
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
20463
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
20073
20464
|
*/
|
|
20074
20465
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20075
20466
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -20078,29 +20469,29 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20078
20469
|
*/
|
|
20079
20470
|
resources: z.ZodOptional<z.ZodObject<{
|
|
20080
20471
|
/**
|
|
20081
|
-
* Whether this server supports subscribing to resource updates.
|
|
20472
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
20082
20473
|
*/
|
|
20083
20474
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
20084
20475
|
/**
|
|
20085
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
20476
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
20086
20477
|
*/
|
|
20087
20478
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20088
20479
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
20089
20480
|
/**
|
|
20090
|
-
* Whether this server supports subscribing to resource updates.
|
|
20481
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
20091
20482
|
*/
|
|
20092
20483
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
20093
20484
|
/**
|
|
20094
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
20485
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
20095
20486
|
*/
|
|
20096
20487
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20097
20488
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
20098
20489
|
/**
|
|
20099
|
-
* Whether this server supports subscribing to resource updates.
|
|
20490
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
20100
20491
|
*/
|
|
20101
20492
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
20102
20493
|
/**
|
|
20103
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
20494
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
20104
20495
|
*/
|
|
20105
20496
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20106
20497
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -20109,17 +20500,17 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20109
20500
|
*/
|
|
20110
20501
|
tools: z.ZodOptional<z.ZodObject<{
|
|
20111
20502
|
/**
|
|
20112
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
20503
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
20113
20504
|
*/
|
|
20114
20505
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20115
20506
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
20116
20507
|
/**
|
|
20117
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
20508
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
20118
20509
|
*/
|
|
20119
20510
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20120
20511
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
20121
20512
|
/**
|
|
20122
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
20513
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
20123
20514
|
*/
|
|
20124
20515
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20125
20516
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -20137,17 +20528,17 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20137
20528
|
*/
|
|
20138
20529
|
prompts: z.ZodOptional<z.ZodObject<{
|
|
20139
20530
|
/**
|
|
20140
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
20531
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
20141
20532
|
*/
|
|
20142
20533
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20143
20534
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
20144
20535
|
/**
|
|
20145
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
20536
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
20146
20537
|
*/
|
|
20147
20538
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20148
20539
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
20149
20540
|
/**
|
|
20150
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
20541
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
20151
20542
|
*/
|
|
20152
20543
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20153
20544
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -20156,29 +20547,29 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20156
20547
|
*/
|
|
20157
20548
|
resources: z.ZodOptional<z.ZodObject<{
|
|
20158
20549
|
/**
|
|
20159
|
-
* Whether this server supports subscribing to resource updates.
|
|
20550
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
20160
20551
|
*/
|
|
20161
20552
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
20162
20553
|
/**
|
|
20163
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
20554
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
20164
20555
|
*/
|
|
20165
20556
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20166
20557
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
20167
20558
|
/**
|
|
20168
|
-
* Whether this server supports subscribing to resource updates.
|
|
20559
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
20169
20560
|
*/
|
|
20170
20561
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
20171
20562
|
/**
|
|
20172
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
20563
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
20173
20564
|
*/
|
|
20174
20565
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20175
20566
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
20176
20567
|
/**
|
|
20177
|
-
* Whether this server supports subscribing to resource updates.
|
|
20568
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
20178
20569
|
*/
|
|
20179
20570
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
20180
20571
|
/**
|
|
20181
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
20572
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
20182
20573
|
*/
|
|
20183
20574
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20184
20575
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -20187,17 +20578,17 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20187
20578
|
*/
|
|
20188
20579
|
tools: z.ZodOptional<z.ZodObject<{
|
|
20189
20580
|
/**
|
|
20190
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
20581
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
20191
20582
|
*/
|
|
20192
20583
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20193
20584
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
20194
20585
|
/**
|
|
20195
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
20586
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
20196
20587
|
*/
|
|
20197
20588
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20198
20589
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
20199
20590
|
/**
|
|
20200
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
20591
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
20201
20592
|
*/
|
|
20202
20593
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20203
20594
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -20215,17 +20606,17 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20215
20606
|
*/
|
|
20216
20607
|
prompts: z.ZodOptional<z.ZodObject<{
|
|
20217
20608
|
/**
|
|
20218
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
20609
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
20219
20610
|
*/
|
|
20220
20611
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20221
20612
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
20222
20613
|
/**
|
|
20223
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
20614
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
20224
20615
|
*/
|
|
20225
20616
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20226
20617
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
20227
20618
|
/**
|
|
20228
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
20619
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
20229
20620
|
*/
|
|
20230
20621
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20231
20622
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -20234,29 +20625,29 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20234
20625
|
*/
|
|
20235
20626
|
resources: z.ZodOptional<z.ZodObject<{
|
|
20236
20627
|
/**
|
|
20237
|
-
* Whether this server supports subscribing to resource updates.
|
|
20628
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
20238
20629
|
*/
|
|
20239
20630
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
20240
20631
|
/**
|
|
20241
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
20632
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
20242
20633
|
*/
|
|
20243
20634
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20244
20635
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
20245
20636
|
/**
|
|
20246
|
-
* Whether this server supports subscribing to resource updates.
|
|
20637
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
20247
20638
|
*/
|
|
20248
20639
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
20249
20640
|
/**
|
|
20250
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
20641
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
20251
20642
|
*/
|
|
20252
20643
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20253
20644
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
20254
20645
|
/**
|
|
20255
|
-
* Whether this server supports subscribing to resource updates.
|
|
20646
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
20256
20647
|
*/
|
|
20257
20648
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
20258
20649
|
/**
|
|
20259
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
20650
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
20260
20651
|
*/
|
|
20261
20652
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20262
20653
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -20265,17 +20656,17 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20265
20656
|
*/
|
|
20266
20657
|
tools: z.ZodOptional<z.ZodObject<{
|
|
20267
20658
|
/**
|
|
20268
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
20659
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
20269
20660
|
*/
|
|
20270
20661
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20271
20662
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
20272
20663
|
/**
|
|
20273
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
20664
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
20274
20665
|
*/
|
|
20275
20666
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20276
20667
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
20277
20668
|
/**
|
|
20278
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
20669
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
20279
20670
|
*/
|
|
20280
20671
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20281
20672
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -20314,17 +20705,17 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20314
20705
|
*/
|
|
20315
20706
|
prompts: z.ZodOptional<z.ZodObject<{
|
|
20316
20707
|
/**
|
|
20317
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
20708
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
20318
20709
|
*/
|
|
20319
20710
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20320
20711
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
20321
20712
|
/**
|
|
20322
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
20713
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
20323
20714
|
*/
|
|
20324
20715
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20325
20716
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
20326
20717
|
/**
|
|
20327
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
20718
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
20328
20719
|
*/
|
|
20329
20720
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20330
20721
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -20333,29 +20724,29 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20333
20724
|
*/
|
|
20334
20725
|
resources: z.ZodOptional<z.ZodObject<{
|
|
20335
20726
|
/**
|
|
20336
|
-
* Whether this server supports subscribing to resource updates.
|
|
20727
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
20337
20728
|
*/
|
|
20338
20729
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
20339
20730
|
/**
|
|
20340
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
20731
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
20341
20732
|
*/
|
|
20342
20733
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20343
20734
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
20344
20735
|
/**
|
|
20345
|
-
* Whether this server supports subscribing to resource updates.
|
|
20736
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
20346
20737
|
*/
|
|
20347
20738
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
20348
20739
|
/**
|
|
20349
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
20740
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
20350
20741
|
*/
|
|
20351
20742
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20352
20743
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
20353
20744
|
/**
|
|
20354
|
-
* Whether this server supports subscribing to resource updates.
|
|
20745
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
20355
20746
|
*/
|
|
20356
20747
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
20357
20748
|
/**
|
|
20358
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
20749
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
20359
20750
|
*/
|
|
20360
20751
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20361
20752
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -20364,17 +20755,17 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20364
20755
|
*/
|
|
20365
20756
|
tools: z.ZodOptional<z.ZodObject<{
|
|
20366
20757
|
/**
|
|
20367
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
20758
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
20368
20759
|
*/
|
|
20369
20760
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20370
20761
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
20371
20762
|
/**
|
|
20372
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
20763
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
20373
20764
|
*/
|
|
20374
20765
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20375
20766
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
20376
20767
|
/**
|
|
20377
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
20768
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
20378
20769
|
*/
|
|
20379
20770
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20380
20771
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -20392,17 +20783,17 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20392
20783
|
*/
|
|
20393
20784
|
prompts: z.ZodOptional<z.ZodObject<{
|
|
20394
20785
|
/**
|
|
20395
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
20786
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
20396
20787
|
*/
|
|
20397
20788
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20398
20789
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
20399
20790
|
/**
|
|
20400
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
20791
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
20401
20792
|
*/
|
|
20402
20793
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20403
20794
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
20404
20795
|
/**
|
|
20405
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
20796
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
20406
20797
|
*/
|
|
20407
20798
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20408
20799
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -20411,29 +20802,29 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20411
20802
|
*/
|
|
20412
20803
|
resources: z.ZodOptional<z.ZodObject<{
|
|
20413
20804
|
/**
|
|
20414
|
-
* Whether this server supports subscribing to resource updates.
|
|
20805
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
20415
20806
|
*/
|
|
20416
20807
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
20417
20808
|
/**
|
|
20418
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
20809
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
20419
20810
|
*/
|
|
20420
20811
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20421
20812
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
20422
20813
|
/**
|
|
20423
|
-
* Whether this server supports subscribing to resource updates.
|
|
20814
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
20424
20815
|
*/
|
|
20425
20816
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
20426
20817
|
/**
|
|
20427
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
20818
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
20428
20819
|
*/
|
|
20429
20820
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20430
20821
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
20431
20822
|
/**
|
|
20432
|
-
* Whether this server supports subscribing to resource updates.
|
|
20823
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
20433
20824
|
*/
|
|
20434
20825
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
20435
20826
|
/**
|
|
20436
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
20827
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
20437
20828
|
*/
|
|
20438
20829
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20439
20830
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -20442,17 +20833,17 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20442
20833
|
*/
|
|
20443
20834
|
tools: z.ZodOptional<z.ZodObject<{
|
|
20444
20835
|
/**
|
|
20445
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
20836
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
20446
20837
|
*/
|
|
20447
20838
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20448
20839
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
20449
20840
|
/**
|
|
20450
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
20841
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
20451
20842
|
*/
|
|
20452
20843
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20453
20844
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
20454
20845
|
/**
|
|
20455
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
20846
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
20456
20847
|
*/
|
|
20457
20848
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20458
20849
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -20470,17 +20861,17 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20470
20861
|
*/
|
|
20471
20862
|
prompts: z.ZodOptional<z.ZodObject<{
|
|
20472
20863
|
/**
|
|
20473
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
20864
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
20474
20865
|
*/
|
|
20475
20866
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20476
20867
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
20477
20868
|
/**
|
|
20478
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
20869
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
20479
20870
|
*/
|
|
20480
20871
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20481
20872
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
20482
20873
|
/**
|
|
20483
|
-
* Whether this server supports notifications for changes to the prompt list.
|
|
20874
|
+
* Whether this server supports issuing notifications for changes to the prompt list.
|
|
20484
20875
|
*/
|
|
20485
20876
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20486
20877
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -20489,29 +20880,29 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20489
20880
|
*/
|
|
20490
20881
|
resources: z.ZodOptional<z.ZodObject<{
|
|
20491
20882
|
/**
|
|
20492
|
-
* Whether this server supports subscribing to resource updates.
|
|
20883
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
20493
20884
|
*/
|
|
20494
20885
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
20495
20886
|
/**
|
|
20496
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
20887
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
20497
20888
|
*/
|
|
20498
20889
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20499
20890
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
20500
20891
|
/**
|
|
20501
|
-
* Whether this server supports subscribing to resource updates.
|
|
20892
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
20502
20893
|
*/
|
|
20503
20894
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
20504
20895
|
/**
|
|
20505
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
20896
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
20506
20897
|
*/
|
|
20507
20898
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20508
20899
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
20509
20900
|
/**
|
|
20510
|
-
* Whether this server supports subscribing to resource updates.
|
|
20901
|
+
* Whether this server supports clients subscribing to resource updates.
|
|
20511
20902
|
*/
|
|
20512
20903
|
subscribe: z.ZodOptional<z.ZodBoolean>;
|
|
20513
20904
|
/**
|
|
20514
|
-
* Whether this server supports notifications for changes to the resource list.
|
|
20905
|
+
* Whether this server supports issuing notifications for changes to the resource list.
|
|
20515
20906
|
*/
|
|
20516
20907
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20517
20908
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -20520,17 +20911,17 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20520
20911
|
*/
|
|
20521
20912
|
tools: z.ZodOptional<z.ZodObject<{
|
|
20522
20913
|
/**
|
|
20523
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
20914
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
20524
20915
|
*/
|
|
20525
20916
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20526
20917
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
20527
20918
|
/**
|
|
20528
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
20919
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
20529
20920
|
*/
|
|
20530
20921
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20531
20922
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
20532
20923
|
/**
|
|
20533
|
-
* Whether this server supports notifications for changes to the tool list.
|
|
20924
|
+
* Whether this server supports issuing notifications for changes to the tool list.
|
|
20534
20925
|
*/
|
|
20535
20926
|
listChanged: z.ZodOptional<z.ZodBoolean>;
|
|
20536
20927
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
@@ -25076,7 +25467,7 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
25076
25467
|
blob: z.ZodString;
|
|
25077
25468
|
}>, z.ZodTypeAny, "passthrough">>]>;
|
|
25078
25469
|
}, z.ZodTypeAny, "passthrough">>]>, "many">;
|
|
25079
|
-
isError: z.ZodDefault<z.ZodBoolean
|
|
25470
|
+
isError: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
25080
25471
|
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
25081
25472
|
/**
|
|
25082
25473
|
* This result property is reserved by the protocol to allow clients and servers to attach additional metadata to their responses.
|
|
@@ -25393,7 +25784,7 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
25393
25784
|
blob: z.ZodString;
|
|
25394
25785
|
}>, z.ZodTypeAny, "passthrough">>]>;
|
|
25395
25786
|
}, z.ZodTypeAny, "passthrough">>]>, "many">;
|
|
25396
|
-
isError: z.ZodDefault<z.ZodBoolean
|
|
25787
|
+
isError: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
25397
25788
|
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
25398
25789
|
/**
|
|
25399
25790
|
* This result property is reserved by the protocol to allow clients and servers to attach additional metadata to their responses.
|
|
@@ -25710,7 +26101,7 @@ export declare const ServerResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
25710
26101
|
blob: z.ZodString;
|
|
25711
26102
|
}>, z.ZodTypeAny, "passthrough">>]>;
|
|
25712
26103
|
}, z.ZodTypeAny, "passthrough">>]>, "many">;
|
|
25713
|
-
isError: z.ZodDefault<z.ZodBoolean
|
|
26104
|
+
isError: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
25714
26105
|
}>, z.ZodTypeAny, "passthrough">>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
25715
26106
|
/**
|
|
25716
26107
|
* This result property is reserved by the protocol to allow clients and servers to attach additional metadata to their responses.
|
|
@@ -25966,6 +26357,7 @@ export type JSONRPCResponse = z.infer<typeof JSONRPCResponseSchema>;
|
|
|
25966
26357
|
export type JSONRPCError = z.infer<typeof JSONRPCErrorSchema>;
|
|
25967
26358
|
export type JSONRPCMessage = z.infer<typeof JSONRPCMessageSchema>;
|
|
25968
26359
|
export type EmptyResult = z.infer<typeof EmptyResultSchema>;
|
|
26360
|
+
export type CancelledNotification = z.infer<typeof CancelledNotificationSchema>;
|
|
25969
26361
|
export type Implementation = z.infer<typeof ImplementationSchema>;
|
|
25970
26362
|
export type ClientCapabilities = z.infer<typeof ClientCapabilitiesSchema>;
|
|
25971
26363
|
export type InitializeRequest = z.infer<typeof InitializeRequestSchema>;
|