@continuumdao/ctm-mpc-defi 0.2.3 → 0.2.4

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.
@@ -654,6 +654,841 @@ type McpUniswapV4QuoteOutput = z.infer<typeof mcpUniswapV4QuoteOutputSchema>;
654
654
  type McpUniswapV4CreateSwapInput = z.infer<typeof mcpUniswapV4CreateSwapInputSchema>;
655
655
  type McpUniswapV4CreateSwapOutput = z.infer<typeof mcpUniswapV4CreateSwapOutputSchema>;
656
656
  type McpUniswapV4BuildSwapMultisignInput = z.infer<typeof mcpUniswapV4BuildSwapMultisignInputSchema>;
657
+ /** MCP: POST /lp/create */
658
+ declare const mcpUniswapV4LpCreatePositionInputSchema: z.ZodObject<{
659
+ uniswapApiKey: z.ZodString;
660
+ walletAddress: z.ZodOptional<z.ZodString>;
661
+ chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
662
+ slippageTolerance: z.ZodOptional<z.ZodNumber>;
663
+ simulateTransaction: z.ZodOptional<z.ZodBoolean>;
664
+ baseUrl: z.ZodOptional<z.ZodString>;
665
+ keyGen: z.ZodOptional<z.ZodString>;
666
+ managementNodeUrl: z.ZodOptional<z.ZodString>;
667
+ } & {
668
+ existingPool: z.ZodOptional<z.ZodObject<{
669
+ token0Address: z.ZodString;
670
+ token1Address: z.ZodString;
671
+ poolReference: z.ZodString;
672
+ }, "strip", z.ZodTypeAny, {
673
+ token0Address: string;
674
+ token1Address: string;
675
+ poolReference: string;
676
+ }, {
677
+ token0Address: string;
678
+ token1Address: string;
679
+ poolReference: string;
680
+ }>>;
681
+ newPool: z.ZodOptional<z.ZodObject<{
682
+ token0Address: z.ZodString;
683
+ token1Address: z.ZodString;
684
+ fee: z.ZodNumber;
685
+ tickSpacing: z.ZodNumber;
686
+ hooks: z.ZodOptional<z.ZodString>;
687
+ initialPrice: z.ZodString;
688
+ }, "strip", z.ZodTypeAny, {
689
+ token0Address: string;
690
+ token1Address: string;
691
+ fee: number;
692
+ tickSpacing: number;
693
+ initialPrice: string;
694
+ hooks?: string | undefined;
695
+ }, {
696
+ token0Address: string;
697
+ token1Address: string;
698
+ fee: number;
699
+ tickSpacing: number;
700
+ initialPrice: string;
701
+ hooks?: string | undefined;
702
+ }>>;
703
+ independentToken: z.ZodObject<{
704
+ tokenAddress: z.ZodString;
705
+ amount: z.ZodString;
706
+ }, "strip", z.ZodTypeAny, {
707
+ amount: string;
708
+ tokenAddress: string;
709
+ }, {
710
+ amount: string;
711
+ tokenAddress: string;
712
+ }>;
713
+ priceBounds: z.ZodOptional<z.ZodObject<{
714
+ minPrice: z.ZodString;
715
+ maxPrice: z.ZodString;
716
+ }, "strip", z.ZodTypeAny, {
717
+ minPrice: string;
718
+ maxPrice: string;
719
+ }, {
720
+ minPrice: string;
721
+ maxPrice: string;
722
+ }>>;
723
+ tickBounds: z.ZodOptional<z.ZodObject<{
724
+ tickLower: z.ZodNumber;
725
+ tickUpper: z.ZodNumber;
726
+ }, "strip", z.ZodTypeAny, {
727
+ tickLower: number;
728
+ tickUpper: number;
729
+ }, {
730
+ tickLower: number;
731
+ tickUpper: number;
732
+ }>>;
733
+ }, "strip", z.ZodTypeAny, {
734
+ chainId: string | number;
735
+ uniswapApiKey: string;
736
+ independentToken: {
737
+ amount: string;
738
+ tokenAddress: string;
739
+ };
740
+ keyGen?: string | undefined;
741
+ managementNodeUrl?: string | undefined;
742
+ baseUrl?: string | undefined;
743
+ slippageTolerance?: number | undefined;
744
+ walletAddress?: string | undefined;
745
+ simulateTransaction?: boolean | undefined;
746
+ existingPool?: {
747
+ token0Address: string;
748
+ token1Address: string;
749
+ poolReference: string;
750
+ } | undefined;
751
+ newPool?: {
752
+ token0Address: string;
753
+ token1Address: string;
754
+ fee: number;
755
+ tickSpacing: number;
756
+ initialPrice: string;
757
+ hooks?: string | undefined;
758
+ } | undefined;
759
+ priceBounds?: {
760
+ minPrice: string;
761
+ maxPrice: string;
762
+ } | undefined;
763
+ tickBounds?: {
764
+ tickLower: number;
765
+ tickUpper: number;
766
+ } | undefined;
767
+ }, {
768
+ chainId: string | number;
769
+ uniswapApiKey: string;
770
+ independentToken: {
771
+ amount: string;
772
+ tokenAddress: string;
773
+ };
774
+ keyGen?: string | undefined;
775
+ managementNodeUrl?: string | undefined;
776
+ baseUrl?: string | undefined;
777
+ slippageTolerance?: number | undefined;
778
+ walletAddress?: string | undefined;
779
+ simulateTransaction?: boolean | undefined;
780
+ existingPool?: {
781
+ token0Address: string;
782
+ token1Address: string;
783
+ poolReference: string;
784
+ } | undefined;
785
+ newPool?: {
786
+ token0Address: string;
787
+ token1Address: string;
788
+ fee: number;
789
+ tickSpacing: number;
790
+ initialPrice: string;
791
+ hooks?: string | undefined;
792
+ } | undefined;
793
+ priceBounds?: {
794
+ minPrice: string;
795
+ maxPrice: string;
796
+ } | undefined;
797
+ tickBounds?: {
798
+ tickLower: number;
799
+ tickUpper: number;
800
+ } | undefined;
801
+ }>;
802
+ declare const mcpUniswapV4LpCreatePositionOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
803
+ /** MCP: POST /lp/increase */
804
+ declare const mcpUniswapV4LpIncreaseInputSchema: z.ZodObject<{
805
+ uniswapApiKey: z.ZodString;
806
+ walletAddress: z.ZodOptional<z.ZodString>;
807
+ chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
808
+ slippageTolerance: z.ZodOptional<z.ZodNumber>;
809
+ simulateTransaction: z.ZodOptional<z.ZodBoolean>;
810
+ baseUrl: z.ZodOptional<z.ZodString>;
811
+ keyGen: z.ZodOptional<z.ZodString>;
812
+ managementNodeUrl: z.ZodOptional<z.ZodString>;
813
+ } & {
814
+ token0Address: z.ZodString;
815
+ token1Address: z.ZodString;
816
+ nftTokenId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
817
+ independentToken: z.ZodObject<{
818
+ tokenAddress: z.ZodString;
819
+ amount: z.ZodString;
820
+ }, "strip", z.ZodTypeAny, {
821
+ amount: string;
822
+ tokenAddress: string;
823
+ }, {
824
+ amount: string;
825
+ tokenAddress: string;
826
+ }>;
827
+ }, "strip", z.ZodTypeAny, {
828
+ chainId: string | number;
829
+ uniswapApiKey: string;
830
+ independentToken: {
831
+ amount: string;
832
+ tokenAddress: string;
833
+ };
834
+ token0Address: string;
835
+ token1Address: string;
836
+ nftTokenId: string | number;
837
+ keyGen?: string | undefined;
838
+ managementNodeUrl?: string | undefined;
839
+ baseUrl?: string | undefined;
840
+ slippageTolerance?: number | undefined;
841
+ walletAddress?: string | undefined;
842
+ simulateTransaction?: boolean | undefined;
843
+ }, {
844
+ chainId: string | number;
845
+ uniswapApiKey: string;
846
+ independentToken: {
847
+ amount: string;
848
+ tokenAddress: string;
849
+ };
850
+ token0Address: string;
851
+ token1Address: string;
852
+ nftTokenId: string | number;
853
+ keyGen?: string | undefined;
854
+ managementNodeUrl?: string | undefined;
855
+ baseUrl?: string | undefined;
856
+ slippageTolerance?: number | undefined;
857
+ walletAddress?: string | undefined;
858
+ simulateTransaction?: boolean | undefined;
859
+ }>;
860
+ declare const mcpUniswapV4LpIncreaseOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
861
+ /** MCP: POST /lp/decrease */
862
+ declare const mcpUniswapV4LpDecreaseInputSchema: z.ZodObject<{
863
+ uniswapApiKey: z.ZodString;
864
+ walletAddress: z.ZodOptional<z.ZodString>;
865
+ chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
866
+ slippageTolerance: z.ZodOptional<z.ZodNumber>;
867
+ simulateTransaction: z.ZodOptional<z.ZodBoolean>;
868
+ baseUrl: z.ZodOptional<z.ZodString>;
869
+ keyGen: z.ZodOptional<z.ZodString>;
870
+ managementNodeUrl: z.ZodOptional<z.ZodString>;
871
+ } & {
872
+ token0Address: z.ZodString;
873
+ token1Address: z.ZodString;
874
+ nftTokenId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
875
+ liquidityPercentageToDecrease: z.ZodNumber;
876
+ }, "strip", z.ZodTypeAny, {
877
+ chainId: string | number;
878
+ uniswapApiKey: string;
879
+ token0Address: string;
880
+ token1Address: string;
881
+ nftTokenId: string | number;
882
+ liquidityPercentageToDecrease: number;
883
+ keyGen?: string | undefined;
884
+ managementNodeUrl?: string | undefined;
885
+ baseUrl?: string | undefined;
886
+ slippageTolerance?: number | undefined;
887
+ walletAddress?: string | undefined;
888
+ simulateTransaction?: boolean | undefined;
889
+ }, {
890
+ chainId: string | number;
891
+ uniswapApiKey: string;
892
+ token0Address: string;
893
+ token1Address: string;
894
+ nftTokenId: string | number;
895
+ liquidityPercentageToDecrease: number;
896
+ keyGen?: string | undefined;
897
+ managementNodeUrl?: string | undefined;
898
+ baseUrl?: string | undefined;
899
+ slippageTolerance?: number | undefined;
900
+ walletAddress?: string | undefined;
901
+ simulateTransaction?: boolean | undefined;
902
+ }>;
903
+ declare const mcpUniswapV4LpDecreaseOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
904
+ /** MCP: POST /lp/claim */
905
+ declare const mcpUniswapV4LpClaimInputSchema: z.ZodObject<{
906
+ uniswapApiKey: z.ZodString;
907
+ walletAddress: z.ZodOptional<z.ZodString>;
908
+ chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
909
+ slippageTolerance: z.ZodOptional<z.ZodNumber>;
910
+ simulateTransaction: z.ZodOptional<z.ZodBoolean>;
911
+ baseUrl: z.ZodOptional<z.ZodString>;
912
+ keyGen: z.ZodOptional<z.ZodString>;
913
+ managementNodeUrl: z.ZodOptional<z.ZodString>;
914
+ } & {
915
+ tokenId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
916
+ }, "strip", z.ZodTypeAny, {
917
+ chainId: string | number;
918
+ uniswapApiKey: string;
919
+ tokenId: string | number;
920
+ keyGen?: string | undefined;
921
+ managementNodeUrl?: string | undefined;
922
+ baseUrl?: string | undefined;
923
+ slippageTolerance?: number | undefined;
924
+ walletAddress?: string | undefined;
925
+ simulateTransaction?: boolean | undefined;
926
+ }, {
927
+ chainId: string | number;
928
+ uniswapApiKey: string;
929
+ tokenId: string | number;
930
+ keyGen?: string | undefined;
931
+ managementNodeUrl?: string | undefined;
932
+ baseUrl?: string | undefined;
933
+ slippageTolerance?: number | undefined;
934
+ walletAddress?: string | undefined;
935
+ simulateTransaction?: boolean | undefined;
936
+ }>;
937
+ declare const mcpUniswapV4LpClaimOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
938
+ /** MCP: list position NFTs from node token registry (no RPC log scan). */
939
+ declare const mcpUniswapV4LpListPositionsInputSchema: z.ZodObject<{
940
+ chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
941
+ keyGenId: z.ZodOptional<z.ZodString>;
942
+ walletAddress: z.ZodOptional<z.ZodString>;
943
+ positionManagerAddress: z.ZodOptional<z.ZodString>;
944
+ }, "strip", z.ZodTypeAny, {
945
+ chainId: string | number;
946
+ walletAddress?: string | undefined;
947
+ keyGenId?: string | undefined;
948
+ positionManagerAddress?: string | undefined;
949
+ }, {
950
+ chainId: string | number;
951
+ walletAddress?: string | undefined;
952
+ keyGenId?: string | undefined;
953
+ positionManagerAddress?: string | undefined;
954
+ }>;
955
+ declare const mcpUniswapV4LpListPositionsOutputSchema: z.ZodObject<{
956
+ source: z.ZodLiteral<"token_registry">;
957
+ positions: z.ZodArray<z.ZodObject<{
958
+ tokenId: z.ZodString;
959
+ positionManager: z.ZodString;
960
+ owner: z.ZodString;
961
+ name: z.ZodOptional<z.ZodString>;
962
+ symbol: z.ZodOptional<z.ZodString>;
963
+ }, "strip", z.ZodTypeAny, {
964
+ owner: string;
965
+ tokenId: string;
966
+ positionManager: string;
967
+ symbol?: string | undefined;
968
+ name?: string | undefined;
969
+ }, {
970
+ owner: string;
971
+ tokenId: string;
972
+ positionManager: string;
973
+ symbol?: string | undefined;
974
+ name?: string | undefined;
975
+ }>, "many">;
976
+ }, "strip", z.ZodTypeAny, {
977
+ source: "token_registry";
978
+ positions: {
979
+ owner: string;
980
+ tokenId: string;
981
+ positionManager: string;
982
+ symbol?: string | undefined;
983
+ name?: string | undefined;
984
+ }[];
985
+ }, {
986
+ source: "token_registry";
987
+ positions: {
988
+ owner: string;
989
+ tokenId: string;
990
+ positionManager: string;
991
+ symbol?: string | undefined;
992
+ name?: string | undefined;
993
+ }[];
994
+ }>;
995
+ /** MCP: save a minted position NFT in the node token registry (management-signed). */
996
+ declare const mcpUniswapV4RegisterPositionNftInputSchema: z.ZodObject<{
997
+ chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
998
+ tokenId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
999
+ keyGenId: z.ZodOptional<z.ZodString>;
1000
+ positionManagerAddress: z.ZodOptional<z.ZodString>;
1001
+ name: z.ZodOptional<z.ZodString>;
1002
+ symbol: z.ZodOptional<z.ZodString>;
1003
+ tokenURI: z.ZodOptional<z.ZodString>;
1004
+ }, "strip", z.ZodTypeAny, {
1005
+ chainId: string | number;
1006
+ tokenId: string | number;
1007
+ symbol?: string | undefined;
1008
+ name?: string | undefined;
1009
+ keyGenId?: string | undefined;
1010
+ positionManagerAddress?: string | undefined;
1011
+ tokenURI?: string | undefined;
1012
+ }, {
1013
+ chainId: string | number;
1014
+ tokenId: string | number;
1015
+ symbol?: string | undefined;
1016
+ name?: string | undefined;
1017
+ keyGenId?: string | undefined;
1018
+ positionManagerAddress?: string | undefined;
1019
+ tokenURI?: string | undefined;
1020
+ }>;
1021
+ declare const mcpUniswapV4RegisterPositionNftOutputSchema: z.ZodObject<{
1022
+ message: z.ZodString;
1023
+ tokenId: z.ZodString;
1024
+ positionManager: z.ZodString;
1025
+ }, "strip", z.ZodTypeAny, {
1026
+ message: string;
1027
+ tokenId: string;
1028
+ positionManager: string;
1029
+ }, {
1030
+ message: string;
1031
+ tokenId: string;
1032
+ positionManager: string;
1033
+ }>;
1034
+ /** MCP: parse mint tx receipt and register position NFT (management-signed). */
1035
+ declare const mcpUniswapV4RegisterPositionFromMintTxInputSchema: z.ZodObject<{
1036
+ chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1037
+ txHash: z.ZodString;
1038
+ keyGenId: z.ZodOptional<z.ZodString>;
1039
+ walletAddress: z.ZodOptional<z.ZodString>;
1040
+ rpcUrl: z.ZodOptional<z.ZodString>;
1041
+ positionManagerAddress: z.ZodOptional<z.ZodString>;
1042
+ }, "strip", z.ZodTypeAny, {
1043
+ chainId: string | number;
1044
+ txHash: string;
1045
+ rpcUrl?: string | undefined;
1046
+ walletAddress?: string | undefined;
1047
+ keyGenId?: string | undefined;
1048
+ positionManagerAddress?: string | undefined;
1049
+ }, {
1050
+ chainId: string | number;
1051
+ txHash: string;
1052
+ rpcUrl?: string | undefined;
1053
+ walletAddress?: string | undefined;
1054
+ keyGenId?: string | undefined;
1055
+ positionManagerAddress?: string | undefined;
1056
+ }>;
1057
+ declare const mcpUniswapV4RegisterPositionFromMintTxOutputSchema: z.ZodObject<{
1058
+ message: z.ZodString;
1059
+ tokenId: z.ZodString;
1060
+ positionManager: z.ZodString;
1061
+ registered: z.ZodBoolean;
1062
+ }, "strip", z.ZodTypeAny, {
1063
+ message: string;
1064
+ tokenId: string;
1065
+ positionManager: string;
1066
+ registered: boolean;
1067
+ }, {
1068
+ message: string;
1069
+ tokenId: string;
1070
+ positionManager: string;
1071
+ registered: boolean;
1072
+ }>;
1073
+ declare const mcpUniswapV4BuildMintLiquidityMultisignInputSchema: z.ZodObject<{
1074
+ keyGen: z.ZodObject<{
1075
+ pubkeyhex: z.ZodString;
1076
+ keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1077
+ ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1078
+ }, "strip", z.ZodTypeAny, {
1079
+ pubkeyhex: string;
1080
+ keylist?: string[] | undefined;
1081
+ ClientKeys?: Record<string, string> | undefined;
1082
+ }, {
1083
+ pubkeyhex: string;
1084
+ keylist?: string[] | undefined;
1085
+ ClientKeys?: Record<string, string> | undefined;
1086
+ }>;
1087
+ purposeText: z.ZodString;
1088
+ useCustomGas: z.ZodBoolean;
1089
+ chainId: z.ZodNumber;
1090
+ rpcUrl: z.ZodString;
1091
+ executorAddress: z.ZodString;
1092
+ chainDetail: z.ZodObject<{
1093
+ legacy: z.ZodOptional<z.ZodBoolean>;
1094
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1095
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1096
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1097
+ baseFee: z.ZodOptional<z.ZodNumber>;
1098
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1099
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1100
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1101
+ legacy: z.ZodOptional<z.ZodBoolean>;
1102
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1103
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1104
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1105
+ baseFee: z.ZodOptional<z.ZodNumber>;
1106
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1107
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1108
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1109
+ legacy: z.ZodOptional<z.ZodBoolean>;
1110
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1111
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1112
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1113
+ baseFee: z.ZodOptional<z.ZodNumber>;
1114
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1115
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1116
+ }, z.ZodTypeAny, "passthrough">>;
1117
+ customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1118
+ } & {
1119
+ lpResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1120
+ nativeWrapped: z.ZodOptional<z.ZodString>;
1121
+ poolReference: z.ZodOptional<z.ZodString>;
1122
+ }, "strip", z.ZodTypeAny, {
1123
+ keyGen: {
1124
+ pubkeyhex: string;
1125
+ keylist?: string[] | undefined;
1126
+ ClientKeys?: Record<string, string> | undefined;
1127
+ };
1128
+ purposeText: string;
1129
+ useCustomGas: boolean;
1130
+ chainId: number;
1131
+ rpcUrl: string;
1132
+ executorAddress: string;
1133
+ chainDetail: {
1134
+ legacy?: boolean | undefined;
1135
+ gasPrice?: number | undefined;
1136
+ gasLimit?: number | undefined;
1137
+ gasMultiplier?: number | undefined;
1138
+ baseFee?: number | undefined;
1139
+ priorityFee?: number | undefined;
1140
+ baseFeeMultiplier?: number | undefined;
1141
+ } & {
1142
+ [k: string]: unknown;
1143
+ };
1144
+ lpResponse: Record<string, unknown>;
1145
+ customGasChainDetails?: Record<string, unknown> | undefined;
1146
+ nativeWrapped?: string | undefined;
1147
+ poolReference?: string | undefined;
1148
+ }, {
1149
+ keyGen: {
1150
+ pubkeyhex: string;
1151
+ keylist?: string[] | undefined;
1152
+ ClientKeys?: Record<string, string> | undefined;
1153
+ };
1154
+ purposeText: string;
1155
+ useCustomGas: boolean;
1156
+ chainId: number;
1157
+ rpcUrl: string;
1158
+ executorAddress: string;
1159
+ chainDetail: {
1160
+ legacy?: boolean | undefined;
1161
+ gasPrice?: number | undefined;
1162
+ gasLimit?: number | undefined;
1163
+ gasMultiplier?: number | undefined;
1164
+ baseFee?: number | undefined;
1165
+ priorityFee?: number | undefined;
1166
+ baseFeeMultiplier?: number | undefined;
1167
+ } & {
1168
+ [k: string]: unknown;
1169
+ };
1170
+ lpResponse: Record<string, unknown>;
1171
+ customGasChainDetails?: Record<string, unknown> | undefined;
1172
+ nativeWrapped?: string | undefined;
1173
+ poolReference?: string | undefined;
1174
+ }>;
1175
+ declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodObject<{
1176
+ keyGen: z.ZodObject<{
1177
+ pubkeyhex: z.ZodString;
1178
+ keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1179
+ ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1180
+ }, "strip", z.ZodTypeAny, {
1181
+ pubkeyhex: string;
1182
+ keylist?: string[] | undefined;
1183
+ ClientKeys?: Record<string, string> | undefined;
1184
+ }, {
1185
+ pubkeyhex: string;
1186
+ keylist?: string[] | undefined;
1187
+ ClientKeys?: Record<string, string> | undefined;
1188
+ }>;
1189
+ purposeText: z.ZodString;
1190
+ useCustomGas: z.ZodBoolean;
1191
+ chainId: z.ZodNumber;
1192
+ rpcUrl: z.ZodString;
1193
+ executorAddress: z.ZodString;
1194
+ chainDetail: z.ZodObject<{
1195
+ legacy: z.ZodOptional<z.ZodBoolean>;
1196
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1197
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1198
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1199
+ baseFee: z.ZodOptional<z.ZodNumber>;
1200
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1201
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1202
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1203
+ legacy: z.ZodOptional<z.ZodBoolean>;
1204
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1205
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1206
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1207
+ baseFee: z.ZodOptional<z.ZodNumber>;
1208
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1209
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1210
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1211
+ legacy: z.ZodOptional<z.ZodBoolean>;
1212
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1213
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1214
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1215
+ baseFee: z.ZodOptional<z.ZodNumber>;
1216
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1217
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1218
+ }, z.ZodTypeAny, "passthrough">>;
1219
+ customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1220
+ } & {
1221
+ nftTokenId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
1222
+ lpResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1223
+ nativeWrapped: z.ZodOptional<z.ZodString>;
1224
+ poolReference: z.ZodOptional<z.ZodString>;
1225
+ }, "strip", z.ZodTypeAny, {
1226
+ keyGen: {
1227
+ pubkeyhex: string;
1228
+ keylist?: string[] | undefined;
1229
+ ClientKeys?: Record<string, string> | undefined;
1230
+ };
1231
+ purposeText: string;
1232
+ useCustomGas: boolean;
1233
+ chainId: number;
1234
+ rpcUrl: string;
1235
+ executorAddress: string;
1236
+ chainDetail: {
1237
+ legacy?: boolean | undefined;
1238
+ gasPrice?: number | undefined;
1239
+ gasLimit?: number | undefined;
1240
+ gasMultiplier?: number | undefined;
1241
+ baseFee?: number | undefined;
1242
+ priorityFee?: number | undefined;
1243
+ baseFeeMultiplier?: number | undefined;
1244
+ } & {
1245
+ [k: string]: unknown;
1246
+ };
1247
+ nftTokenId: string | number;
1248
+ lpResponse: Record<string, unknown>;
1249
+ customGasChainDetails?: Record<string, unknown> | undefined;
1250
+ nativeWrapped?: string | undefined;
1251
+ poolReference?: string | undefined;
1252
+ }, {
1253
+ keyGen: {
1254
+ pubkeyhex: string;
1255
+ keylist?: string[] | undefined;
1256
+ ClientKeys?: Record<string, string> | undefined;
1257
+ };
1258
+ purposeText: string;
1259
+ useCustomGas: boolean;
1260
+ chainId: number;
1261
+ rpcUrl: string;
1262
+ executorAddress: string;
1263
+ chainDetail: {
1264
+ legacy?: boolean | undefined;
1265
+ gasPrice?: number | undefined;
1266
+ gasLimit?: number | undefined;
1267
+ gasMultiplier?: number | undefined;
1268
+ baseFee?: number | undefined;
1269
+ priorityFee?: number | undefined;
1270
+ baseFeeMultiplier?: number | undefined;
1271
+ } & {
1272
+ [k: string]: unknown;
1273
+ };
1274
+ nftTokenId: string | number;
1275
+ lpResponse: Record<string, unknown>;
1276
+ customGasChainDetails?: Record<string, unknown> | undefined;
1277
+ nativeWrapped?: string | undefined;
1278
+ poolReference?: string | undefined;
1279
+ }>;
1280
+ declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodObject<{
1281
+ keyGen: z.ZodObject<{
1282
+ pubkeyhex: z.ZodString;
1283
+ keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1284
+ ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1285
+ }, "strip", z.ZodTypeAny, {
1286
+ pubkeyhex: string;
1287
+ keylist?: string[] | undefined;
1288
+ ClientKeys?: Record<string, string> | undefined;
1289
+ }, {
1290
+ pubkeyhex: string;
1291
+ keylist?: string[] | undefined;
1292
+ ClientKeys?: Record<string, string> | undefined;
1293
+ }>;
1294
+ purposeText: z.ZodString;
1295
+ useCustomGas: z.ZodBoolean;
1296
+ chainId: z.ZodNumber;
1297
+ rpcUrl: z.ZodString;
1298
+ executorAddress: z.ZodString;
1299
+ chainDetail: z.ZodObject<{
1300
+ legacy: z.ZodOptional<z.ZodBoolean>;
1301
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1302
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1303
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1304
+ baseFee: z.ZodOptional<z.ZodNumber>;
1305
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1306
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1307
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1308
+ legacy: z.ZodOptional<z.ZodBoolean>;
1309
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1310
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1311
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1312
+ baseFee: z.ZodOptional<z.ZodNumber>;
1313
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1314
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1315
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1316
+ legacy: z.ZodOptional<z.ZodBoolean>;
1317
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1318
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1319
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1320
+ baseFee: z.ZodOptional<z.ZodNumber>;
1321
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1322
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1323
+ }, z.ZodTypeAny, "passthrough">>;
1324
+ customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1325
+ } & {
1326
+ nftTokenId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
1327
+ lpResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1328
+ nativeWrapped: z.ZodOptional<z.ZodString>;
1329
+ poolReference: z.ZodOptional<z.ZodString>;
1330
+ }, "strip", z.ZodTypeAny, {
1331
+ keyGen: {
1332
+ pubkeyhex: string;
1333
+ keylist?: string[] | undefined;
1334
+ ClientKeys?: Record<string, string> | undefined;
1335
+ };
1336
+ purposeText: string;
1337
+ useCustomGas: boolean;
1338
+ chainId: number;
1339
+ rpcUrl: string;
1340
+ executorAddress: string;
1341
+ chainDetail: {
1342
+ legacy?: boolean | undefined;
1343
+ gasPrice?: number | undefined;
1344
+ gasLimit?: number | undefined;
1345
+ gasMultiplier?: number | undefined;
1346
+ baseFee?: number | undefined;
1347
+ priorityFee?: number | undefined;
1348
+ baseFeeMultiplier?: number | undefined;
1349
+ } & {
1350
+ [k: string]: unknown;
1351
+ };
1352
+ nftTokenId: string | number;
1353
+ lpResponse: Record<string, unknown>;
1354
+ customGasChainDetails?: Record<string, unknown> | undefined;
1355
+ nativeWrapped?: string | undefined;
1356
+ poolReference?: string | undefined;
1357
+ }, {
1358
+ keyGen: {
1359
+ pubkeyhex: string;
1360
+ keylist?: string[] | undefined;
1361
+ ClientKeys?: Record<string, string> | undefined;
1362
+ };
1363
+ purposeText: string;
1364
+ useCustomGas: boolean;
1365
+ chainId: number;
1366
+ rpcUrl: string;
1367
+ executorAddress: string;
1368
+ chainDetail: {
1369
+ legacy?: boolean | undefined;
1370
+ gasPrice?: number | undefined;
1371
+ gasLimit?: number | undefined;
1372
+ gasMultiplier?: number | undefined;
1373
+ baseFee?: number | undefined;
1374
+ priorityFee?: number | undefined;
1375
+ baseFeeMultiplier?: number | undefined;
1376
+ } & {
1377
+ [k: string]: unknown;
1378
+ };
1379
+ nftTokenId: string | number;
1380
+ lpResponse: Record<string, unknown>;
1381
+ customGasChainDetails?: Record<string, unknown> | undefined;
1382
+ nativeWrapped?: string | undefined;
1383
+ poolReference?: string | undefined;
1384
+ }>;
1385
+ declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodObject<{
1386
+ keyGen: z.ZodObject<{
1387
+ pubkeyhex: z.ZodString;
1388
+ keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1389
+ ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1390
+ }, "strip", z.ZodTypeAny, {
1391
+ pubkeyhex: string;
1392
+ keylist?: string[] | undefined;
1393
+ ClientKeys?: Record<string, string> | undefined;
1394
+ }, {
1395
+ pubkeyhex: string;
1396
+ keylist?: string[] | undefined;
1397
+ ClientKeys?: Record<string, string> | undefined;
1398
+ }>;
1399
+ purposeText: z.ZodString;
1400
+ useCustomGas: z.ZodBoolean;
1401
+ chainId: z.ZodNumber;
1402
+ rpcUrl: z.ZodString;
1403
+ executorAddress: z.ZodString;
1404
+ chainDetail: z.ZodObject<{
1405
+ legacy: z.ZodOptional<z.ZodBoolean>;
1406
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1407
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1408
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1409
+ baseFee: z.ZodOptional<z.ZodNumber>;
1410
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1411
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1412
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1413
+ legacy: z.ZodOptional<z.ZodBoolean>;
1414
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1415
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1416
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1417
+ baseFee: z.ZodOptional<z.ZodNumber>;
1418
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1419
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1420
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1421
+ legacy: z.ZodOptional<z.ZodBoolean>;
1422
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1423
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1424
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1425
+ baseFee: z.ZodOptional<z.ZodNumber>;
1426
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1427
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1428
+ }, z.ZodTypeAny, "passthrough">>;
1429
+ customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1430
+ } & {
1431
+ nftTokenId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
1432
+ lpResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1433
+ nativeWrapped: z.ZodOptional<z.ZodString>;
1434
+ poolReference: z.ZodOptional<z.ZodString>;
1435
+ }, "strip", z.ZodTypeAny, {
1436
+ keyGen: {
1437
+ pubkeyhex: string;
1438
+ keylist?: string[] | undefined;
1439
+ ClientKeys?: Record<string, string> | undefined;
1440
+ };
1441
+ purposeText: string;
1442
+ useCustomGas: boolean;
1443
+ chainId: number;
1444
+ rpcUrl: string;
1445
+ executorAddress: string;
1446
+ chainDetail: {
1447
+ legacy?: boolean | undefined;
1448
+ gasPrice?: number | undefined;
1449
+ gasLimit?: number | undefined;
1450
+ gasMultiplier?: number | undefined;
1451
+ baseFee?: number | undefined;
1452
+ priorityFee?: number | undefined;
1453
+ baseFeeMultiplier?: number | undefined;
1454
+ } & {
1455
+ [k: string]: unknown;
1456
+ };
1457
+ nftTokenId: string | number;
1458
+ lpResponse: Record<string, unknown>;
1459
+ customGasChainDetails?: Record<string, unknown> | undefined;
1460
+ nativeWrapped?: string | undefined;
1461
+ poolReference?: string | undefined;
1462
+ }, {
1463
+ keyGen: {
1464
+ pubkeyhex: string;
1465
+ keylist?: string[] | undefined;
1466
+ ClientKeys?: Record<string, string> | undefined;
1467
+ };
1468
+ purposeText: string;
1469
+ useCustomGas: boolean;
1470
+ chainId: number;
1471
+ rpcUrl: string;
1472
+ executorAddress: string;
1473
+ chainDetail: {
1474
+ legacy?: boolean | undefined;
1475
+ gasPrice?: number | undefined;
1476
+ gasLimit?: number | undefined;
1477
+ gasMultiplier?: number | undefined;
1478
+ baseFee?: number | undefined;
1479
+ priorityFee?: number | undefined;
1480
+ baseFeeMultiplier?: number | undefined;
1481
+ } & {
1482
+ [k: string]: unknown;
1483
+ };
1484
+ nftTokenId: string | number;
1485
+ lpResponse: Record<string, unknown>;
1486
+ customGasChainDetails?: Record<string, unknown> | undefined;
1487
+ nativeWrapped?: string | undefined;
1488
+ poolReference?: string | undefined;
1489
+ }>;
1490
+ type McpUniswapV4LpCreatePositionInput = z.infer<typeof mcpUniswapV4LpCreatePositionInputSchema>;
1491
+ type McpUniswapV4BuildMintLiquidityMultisignInput = z.infer<typeof mcpUniswapV4BuildMintLiquidityMultisignInputSchema>;
657
1492
 
658
1493
  /** Input for MCP tool `ctm_curve_dao_quote` → handler `curveDaoQuote`. */
659
1494
  declare const mcpCurveDaoQuoteInputSchema: z.ZodObject<{
@@ -1082,4 +1917,4 @@ declare function getAgentCatalog(): {
1082
1917
  };
1083
1918
  };
1084
1919
 
1085
- export { type ChainDetailMcpInput, EVM_COMMON_PARAM_DOCS, type EvmMultisignCommonInput, type KeyGenMcpInput, MANAGEMENT_SIG_DOC, MCP_NON_SUBMIT_TOOL_NAMES, MCP_TOOL_DEFINITIONS, MCP_TOOL_INPUT_SCHEMAS, MCP_TOOL_OUTPUT_SCHEMAS, MULTISIGN_OUTPUT_DOC, type McpAaveV4DepositInput, type McpCurveDaoBuildSwapMultisignInput, type McpCurveDaoQuoteInput, type McpCurveDaoQuoteOutput, type McpEthenaStakeInput, type McpEulerV2IsolatedLendInput, type McpJsonSchema, type McpLidoSubmitInput, type McpMapleDepositInput, type McpSchemaProperty, type McpSkyLockstakeStakeInput, type McpToolDefinition, type McpToolHandler, type McpToolInputMap, type McpToolName, type McpToolOutputMap, type McpUniswapV4BuildSwapMultisignInput, type McpUniswapV4CreateSwapInput, type McpUniswapV4CreateSwapOutput, type McpUniswapV4QuoteInput, type McpUniswapV4QuoteOutput, type MultisignOutput, PROTOCOL_SUPPORT_ADVISORS, type ProtocolSupportAdvisor, type SupportedTokenRow, type TokenFilterKind, chainDetailSchema, evmAddressSchema, evmMultisignCommonInputSchema, getAgentCatalog, getAgentCatalogForMcp, getMcpToolByName, getMcpToolDefinitions, getMcpToolInputSchema, getMcpToolOutputSchema, getProtocolDiscoverySummary, getProtocolSkill, getProtocolSupportAdvisor, getToolsForProtocol, jsonObjectSchema, keyGenSchema, listProtocolSupportAdvisorIds, listProtocolsWithSkills, mcpAaveV4BorrowInputSchema, mcpAaveV4DepositInputSchema, mcpAaveV4RepayInputSchema, mcpAaveV4WithdrawInputSchema, mcpCurveDaoBuildSwapMultisignInputSchema, mcpCurveDaoQuoteInputSchema, mcpCurveDaoQuoteOutputSchema, mcpEthenaClaimInputSchema, mcpEthenaCooldownInputSchema, mcpEthenaRedeemInputSchema, mcpEthenaStakeInputSchema, mcpEulerV2BorrowRepayInputSchema, mcpEulerV2CollateralDepositInputSchema, mcpEulerV2CollateralWithdrawInputSchema, mcpEulerV2IsolatedBorrowInputSchema, mcpEulerV2IsolatedLendInputSchema, mcpEulerV2VaultWithdrawInputSchema, mcpLidoClaimWithdrawalInputSchema, mcpLidoRequestWithdrawalsInputSchema, mcpLidoSubmitInputSchema, mcpLidoUnwrapWstEthInputSchema, mcpLidoWrapStEthInputSchema, mcpMapleDepositInputSchema, mcpMapleRequestRedeemInputSchema, mcpMultisignInput, multisignOutputSchema as mcpMultisignOutputSchema, mcpServerCommonInputSchema, mcpServerMultisignInput, mcpServerSubmitOutputSchema, mcpSkyLockstakeCloseInputSchema, mcpSkyLockstakeDrawInputSchema, mcpSkyLockstakeGetRewardInputSchema, mcpSkyLockstakeStakeInputSchema, mcpSkyLockstakeWipeInputSchema, mcpSkySusdsDepositInputSchema, mcpSkySusdsRedeemInputSchema, mcpUniswapV4BuildSwapMultisignInputSchema, mcpUniswapV4CreateSwapInputSchema, mcpUniswapV4CreateSwapOutputSchema, mcpUniswapV4QuoteInputSchema, mcpUniswapV4QuoteOutputSchema, multisignOutputSchema, parseMcpToolInput, parseMcpToolOutput, uniswapQuoteTradeTypeSchema, zodSchemaToMcpJsonSchema };
1920
+ export { type ChainDetailMcpInput, EVM_COMMON_PARAM_DOCS, type EvmMultisignCommonInput, type KeyGenMcpInput, MANAGEMENT_SIG_DOC, MCP_NON_SUBMIT_TOOL_NAMES, MCP_TOOL_DEFINITIONS, MCP_TOOL_INPUT_SCHEMAS, MCP_TOOL_OUTPUT_SCHEMAS, MULTISIGN_OUTPUT_DOC, type McpAaveV4DepositInput, type McpCurveDaoBuildSwapMultisignInput, type McpCurveDaoQuoteInput, type McpCurveDaoQuoteOutput, type McpEthenaStakeInput, type McpEulerV2IsolatedLendInput, type McpJsonSchema, type McpLidoSubmitInput, type McpMapleDepositInput, type McpSchemaProperty, type McpSkyLockstakeStakeInput, type McpToolDefinition, type McpToolHandler, type McpToolInputMap, type McpToolName, type McpToolOutputMap, type McpUniswapV4BuildMintLiquidityMultisignInput, type McpUniswapV4BuildSwapMultisignInput, type McpUniswapV4CreateSwapInput, type McpUniswapV4CreateSwapOutput, type McpUniswapV4LpCreatePositionInput, type McpUniswapV4QuoteInput, type McpUniswapV4QuoteOutput, type MultisignOutput, PROTOCOL_SUPPORT_ADVISORS, type ProtocolSupportAdvisor, type SupportedTokenRow, type TokenFilterKind, chainDetailSchema, evmAddressSchema, evmMultisignCommonInputSchema, getAgentCatalog, getAgentCatalogForMcp, getMcpToolByName, getMcpToolDefinitions, getMcpToolInputSchema, getMcpToolOutputSchema, getProtocolDiscoverySummary, getProtocolSkill, getProtocolSupportAdvisor, getToolsForProtocol, jsonObjectSchema, keyGenSchema, listProtocolSupportAdvisorIds, listProtocolsWithSkills, mcpAaveV4BorrowInputSchema, mcpAaveV4DepositInputSchema, mcpAaveV4RepayInputSchema, mcpAaveV4WithdrawInputSchema, mcpCurveDaoBuildSwapMultisignInputSchema, mcpCurveDaoQuoteInputSchema, mcpCurveDaoQuoteOutputSchema, mcpEthenaClaimInputSchema, mcpEthenaCooldownInputSchema, mcpEthenaRedeemInputSchema, mcpEthenaStakeInputSchema, mcpEulerV2BorrowRepayInputSchema, mcpEulerV2CollateralDepositInputSchema, mcpEulerV2CollateralWithdrawInputSchema, mcpEulerV2IsolatedBorrowInputSchema, mcpEulerV2IsolatedLendInputSchema, mcpEulerV2VaultWithdrawInputSchema, mcpLidoClaimWithdrawalInputSchema, mcpLidoRequestWithdrawalsInputSchema, mcpLidoSubmitInputSchema, mcpLidoUnwrapWstEthInputSchema, mcpLidoWrapStEthInputSchema, mcpMapleDepositInputSchema, mcpMapleRequestRedeemInputSchema, mcpMultisignInput, multisignOutputSchema as mcpMultisignOutputSchema, mcpServerCommonInputSchema, mcpServerMultisignInput, mcpServerSubmitOutputSchema, mcpSkyLockstakeCloseInputSchema, mcpSkyLockstakeDrawInputSchema, mcpSkyLockstakeGetRewardInputSchema, mcpSkyLockstakeStakeInputSchema, mcpSkyLockstakeWipeInputSchema, mcpSkySusdsDepositInputSchema, mcpSkySusdsRedeemInputSchema, mcpUniswapV4BuildCollectFeesMultisignInputSchema, mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildMintLiquidityMultisignInputSchema, mcpUniswapV4BuildSwapMultisignInputSchema, mcpUniswapV4CreateSwapInputSchema, mcpUniswapV4CreateSwapOutputSchema, mcpUniswapV4LpClaimInputSchema, mcpUniswapV4LpClaimOutputSchema, mcpUniswapV4LpCreatePositionInputSchema, mcpUniswapV4LpCreatePositionOutputSchema, mcpUniswapV4LpDecreaseInputSchema, mcpUniswapV4LpDecreaseOutputSchema, mcpUniswapV4LpIncreaseInputSchema, mcpUniswapV4LpIncreaseOutputSchema, mcpUniswapV4LpListPositionsInputSchema, mcpUniswapV4LpListPositionsOutputSchema, mcpUniswapV4QuoteInputSchema, mcpUniswapV4QuoteOutputSchema, mcpUniswapV4RegisterPositionFromMintTxInputSchema, mcpUniswapV4RegisterPositionFromMintTxOutputSchema, mcpUniswapV4RegisterPositionNftInputSchema, mcpUniswapV4RegisterPositionNftOutputSchema, multisignOutputSchema, parseMcpToolInput, parseMcpToolOutput, uniswapQuoteTradeTypeSchema, zodSchemaToMcpJsonSchema };