@continuumdao/ctm-mpc-defi 0.2.13 → 0.2.16

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.
Files changed (40) hide show
  1. package/dist/agent/catalog.cjs +828 -280
  2. package/dist/agent/catalog.cjs.map +1 -1
  3. package/dist/agent/catalog.d.ts +1645 -300
  4. package/dist/agent/catalog.js +823 -281
  5. package/dist/agent/catalog.js.map +1 -1
  6. package/dist/chains/evm/index.cjs +75 -0
  7. package/dist/chains/evm/index.cjs.map +1 -1
  8. package/dist/chains/evm/index.d.ts +31 -1
  9. package/dist/chains/evm/index.js +73 -2
  10. package/dist/chains/evm/index.js.map +1 -1
  11. package/dist/index.cjs +140 -32
  12. package/dist/index.cjs.map +1 -1
  13. package/dist/index.d.ts +1 -1
  14. package/dist/index.js +138 -34
  15. package/dist/index.js.map +1 -1
  16. package/dist/protocols/evm/euler-v2/index.cjs +29 -2
  17. package/dist/protocols/evm/euler-v2/index.cjs.map +1 -1
  18. package/dist/protocols/evm/euler-v2/index.d.ts +23 -1
  19. package/dist/protocols/evm/euler-v2/index.js +29 -3
  20. package/dist/protocols/evm/euler-v2/index.js.map +1 -1
  21. package/dist/protocols/evm/gmx/index.cjs +42 -8
  22. package/dist/protocols/evm/gmx/index.cjs.map +1 -1
  23. package/dist/protocols/evm/gmx/index.d.ts +20 -4
  24. package/dist/protocols/evm/gmx/index.js +42 -9
  25. package/dist/protocols/evm/gmx/index.js.map +1 -1
  26. package/dist/protocols/evm/maple/index.cjs +9 -1
  27. package/dist/protocols/evm/maple/index.cjs.map +1 -1
  28. package/dist/protocols/evm/maple/index.d.ts +2 -1
  29. package/dist/protocols/evm/maple/index.js +9 -1
  30. package/dist/protocols/evm/maple/index.js.map +1 -1
  31. package/dist/protocols/evm/morpho/index.cjs +56 -0
  32. package/dist/protocols/evm/morpho/index.cjs.map +1 -1
  33. package/dist/protocols/evm/morpho/index.d.ts +28 -1
  34. package/dist/protocols/evm/morpho/index.js +56 -1
  35. package/dist/protocols/evm/morpho/index.js.map +1 -1
  36. package/dist/protocols/evm/uniswap-v4/index.cjs +98 -26
  37. package/dist/protocols/evm/uniswap-v4/index.cjs.map +1 -1
  38. package/dist/protocols/evm/uniswap-v4/index.js +99 -27
  39. package/dist/protocols/evm/uniswap-v4/index.js.map +1 -1
  40. package/package.json +1 -1
@@ -475,7 +475,7 @@ declare const mcpUniswapV4QuoteInputSchema: z.ZodObject<{
475
475
  amount: z.ZodString;
476
476
  tokenIn: z.ZodString;
477
477
  tokenOut: z.ZodString;
478
- chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
478
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
479
479
  uniswapApiKey: z.ZodString;
480
480
  swapper: z.ZodOptional<z.ZodString>;
481
481
  slippage: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -483,11 +483,11 @@ declare const mcpUniswapV4QuoteInputSchema: z.ZodObject<{
483
483
  managementNodeUrl: z.ZodOptional<z.ZodString>;
484
484
  tokenInChainId: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
485
485
  tokenOutChainId: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
486
- permit2Disabled: z.ZodOptional<z.ZodBoolean>;
486
+ permit2Disabled: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
487
487
  baseUrl: z.ZodOptional<z.ZodString>;
488
488
  universalRouterVersion: z.ZodOptional<z.ZodString>;
489
489
  }, "strip", z.ZodTypeAny, {
490
- chainId: string | number;
490
+ chainId: number;
491
491
  amount: string;
492
492
  tokenIn: string;
493
493
  tokenOut: string;
@@ -503,17 +503,17 @@ declare const mcpUniswapV4QuoteInputSchema: z.ZodObject<{
503
503
  baseUrl?: string | undefined;
504
504
  universalRouterVersion?: string | undefined;
505
505
  }, {
506
- chainId: string | number;
507
506
  amount: string;
508
507
  tokenIn: string;
509
508
  tokenOut: string;
510
509
  uniswapApiKey: string;
511
510
  type: "EXACT_INPUT" | "EXACT_OUTPUT";
512
511
  keyGen?: string | undefined;
512
+ chainId?: unknown;
513
513
  tokenInChainId?: string | number | undefined;
514
514
  tokenOutChainId?: string | number | undefined;
515
515
  slippage?: string | number | undefined;
516
- permit2Disabled?: boolean | undefined;
516
+ permit2Disabled?: unknown;
517
517
  swapper?: string | undefined;
518
518
  managementNodeUrl?: string | undefined;
519
519
  baseUrl?: string | undefined;
@@ -558,7 +558,7 @@ declare const mcpUniswapV4CreateSwapOutputSchema: z.ZodObject<{
558
558
  gasFee: z.ZodOptional<z.ZodString>;
559
559
  }, z.ZodTypeAny, "passthrough">>;
560
560
  /** Input for MCP tool `ctm_uniswap_v4_build_swap_multisign`. */
561
- declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObject<{
561
+ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
562
562
  keyGenId: z.ZodOptional<z.ZodString>;
563
563
  keyGen: z.ZodOptional<z.ZodObject<{
564
564
  pubkeyhex: z.ZodString;
@@ -629,6 +629,7 @@ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObjec
629
629
  chainId: number;
630
630
  tokenIn: string;
631
631
  swap: Record<string, unknown>;
632
+ fullQuoteSnapshot: Record<string, unknown>;
632
633
  createSwapResponse: {
633
634
  swap: Record<string, unknown>;
634
635
  requestId?: string | undefined;
@@ -636,7 +637,6 @@ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObjec
636
637
  } & {
637
638
  [k: string]: unknown;
638
639
  };
639
- fullQuoteSnapshot: Record<string, unknown>;
640
640
  swapDeadlineUnix: number;
641
641
  keyGen?: {
642
642
  pubkeyhex: string;
@@ -661,6 +661,7 @@ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObjec
661
661
  purposeText: string;
662
662
  tokenIn: string;
663
663
  swap: Record<string, unknown>;
664
+ fullQuoteSnapshot: Record<string, unknown>;
664
665
  createSwapResponse: {
665
666
  swap: Record<string, unknown>;
666
667
  requestId?: string | undefined;
@@ -668,7 +669,6 @@ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObjec
668
669
  } & {
669
670
  [k: string]: unknown;
670
671
  };
671
- fullQuoteSnapshot: Record<string, unknown>;
672
672
  swapDeadlineUnix: number;
673
673
  keyGen?: {
674
674
  pubkeyhex: string;
@@ -697,6 +697,7 @@ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObjec
697
697
  chainId: number;
698
698
  tokenIn: string;
699
699
  swap: Record<string, unknown>;
700
+ fullQuoteSnapshot: Record<string, unknown>;
700
701
  createSwapResponse: {
701
702
  swap: Record<string, unknown>;
702
703
  requestId?: string | undefined;
@@ -704,7 +705,6 @@ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObjec
704
705
  } & {
705
706
  [k: string]: unknown;
706
707
  };
707
- fullQuoteSnapshot: Record<string, unknown>;
708
708
  swapDeadlineUnix: number;
709
709
  keyGen?: {
710
710
  pubkeyhex: string;
@@ -725,10 +725,13 @@ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObjec
725
725
  customGasChainDetails?: Record<string, unknown> | undefined;
726
726
  slippagePercent?: number | undefined;
727
727
  keyGenId?: string | undefined;
728
- }, {
728
+ }, unknown>, {
729
729
  purposeText: string;
730
+ useCustomGas: boolean;
731
+ chainId: number;
730
732
  tokenIn: string;
731
733
  swap: Record<string, unknown>;
734
+ fullQuoteSnapshot: Record<string, unknown>;
732
735
  createSwapResponse: {
733
736
  swap: Record<string, unknown>;
734
737
  requestId?: string | undefined;
@@ -736,18 +739,15 @@ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObjec
736
739
  } & {
737
740
  [k: string]: unknown;
738
741
  };
739
- fullQuoteSnapshot: Record<string, unknown>;
740
742
  swapDeadlineUnix: number;
741
743
  keyGen?: {
742
744
  pubkeyhex: string;
743
745
  keylist?: string[] | undefined;
744
746
  ClientKeys?: Record<string, string> | undefined;
745
747
  } | undefined;
746
- useCustomGas?: unknown;
747
- chainId?: unknown;
748
748
  rpcUrl?: string | undefined;
749
749
  executorAddress?: string | undefined;
750
- chainDetail?: z.objectInputType<{
750
+ chainDetail?: z.objectOutputType<{
751
751
  legacy: z.ZodOptional<z.ZodBoolean>;
752
752
  gasLimit: z.ZodOptional<z.ZodNumber>;
753
753
  gasMultiplier: z.ZodOptional<z.ZodNumber>;
@@ -759,23 +759,24 @@ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObjec
759
759
  customGasChainDetails?: Record<string, unknown> | undefined;
760
760
  slippagePercent?: number | undefined;
761
761
  keyGenId?: string | undefined;
762
- }>;
762
+ }, unknown>;
763
763
  type McpUniswapV4QuoteInput = z.infer<typeof mcpUniswapV4QuoteInputSchema>;
764
764
  type McpUniswapV4QuoteOutput = z.infer<typeof mcpUniswapV4QuoteOutputSchema>;
765
765
  type McpUniswapV4CreateSwapInput = z.infer<typeof mcpUniswapV4CreateSwapInputSchema>;
766
766
  type McpUniswapV4CreateSwapOutput = z.infer<typeof mcpUniswapV4CreateSwapOutputSchema>;
767
767
  type McpUniswapV4BuildSwapMultisignInput = z.infer<typeof mcpUniswapV4BuildSwapMultisignInputSchema>;
768
- /** MCP: POST /lp/create — poolPreset is resolved by the MCP adapter before validation. */
769
- declare const mcpUniswapV4LpCreatePositionInputSchema: z.ZodObject<{
768
+ /** MCP: POST /lp/create — presetId from list_lp_pools aliases to poolPreset. */
769
+ declare const mcpUniswapV4LpCreatePositionInputSchema: z.ZodEffects<z.ZodObject<{
770
770
  uniswapApiKey: z.ZodString;
771
771
  walletAddress: z.ZodOptional<z.ZodString>;
772
- chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
772
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
773
773
  slippageTolerance: z.ZodOptional<z.ZodNumber>;
774
- simulateTransaction: z.ZodOptional<z.ZodBoolean>;
774
+ simulateTransaction: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
775
775
  baseUrl: z.ZodOptional<z.ZodString>;
776
776
  keyGen: z.ZodOptional<z.ZodString>;
777
777
  managementNodeUrl: z.ZodOptional<z.ZodString>;
778
778
  } & {
779
+ poolPreset: z.ZodOptional<z.ZodString>;
779
780
  existingPool: z.ZodOptional<z.ZodObject<{
780
781
  token0Address: z.ZodString;
781
782
  token1Address: z.ZodString;
@@ -842,7 +843,7 @@ declare const mcpUniswapV4LpCreatePositionInputSchema: z.ZodObject<{
842
843
  tickUpper: number;
843
844
  }>>;
844
845
  }, "strip", z.ZodTypeAny, {
845
- chainId: string | number;
846
+ chainId: number;
846
847
  uniswapApiKey: string;
847
848
  independentToken: {
848
849
  amount: string;
@@ -875,8 +876,44 @@ declare const mcpUniswapV4LpCreatePositionInputSchema: z.ZodObject<{
875
876
  tickLower: number;
876
877
  tickUpper: number;
877
878
  } | undefined;
879
+ poolPreset?: string | undefined;
878
880
  }, {
879
- chainId: string | number;
881
+ uniswapApiKey: string;
882
+ independentToken: {
883
+ amount: string;
884
+ tokenAddress: string;
885
+ };
886
+ keyGen?: string | undefined;
887
+ chainId?: unknown;
888
+ managementNodeUrl?: string | undefined;
889
+ baseUrl?: string | undefined;
890
+ slippageTolerance?: number | undefined;
891
+ existingPool?: {
892
+ token0Address: string;
893
+ token1Address: string;
894
+ poolReference: string;
895
+ } | undefined;
896
+ walletAddress?: string | undefined;
897
+ simulateTransaction?: unknown;
898
+ newPool?: {
899
+ fee: number;
900
+ tickSpacing: number;
901
+ token0Address: string;
902
+ token1Address: string;
903
+ initialPrice: string;
904
+ hooks?: string | undefined;
905
+ } | undefined;
906
+ priceBounds?: {
907
+ minPrice: string;
908
+ maxPrice: string;
909
+ } | undefined;
910
+ tickBounds?: {
911
+ tickLower: number;
912
+ tickUpper: number;
913
+ } | undefined;
914
+ poolPreset?: string | undefined;
915
+ }>, {
916
+ chainId: number;
880
917
  uniswapApiKey: string;
881
918
  independentToken: {
882
919
  amount: string;
@@ -909,16 +946,17 @@ declare const mcpUniswapV4LpCreatePositionInputSchema: z.ZodObject<{
909
946
  tickLower: number;
910
947
  tickUpper: number;
911
948
  } | undefined;
912
- }>;
949
+ poolPreset?: string | undefined;
950
+ }, unknown>;
913
951
  /** MCP: list curated standard V4 LP pools (poolReference computed from pool key). */
914
952
  declare const mcpUniswapV4LpListPoolsInputSchema: z.ZodObject<{
915
- chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
953
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
916
954
  pair: z.ZodOptional<z.ZodString>;
917
955
  }, "strip", z.ZodTypeAny, {
918
- chainId: string | number;
956
+ chainId: number;
919
957
  pair?: string | undefined;
920
958
  }, {
921
- chainId: string | number;
959
+ chainId?: unknown;
922
960
  pair?: string | undefined;
923
961
  }>;
924
962
  declare const mcpUniswapV4LpListPoolsOutputSchema: z.ZodObject<{
@@ -1014,12 +1052,12 @@ declare const mcpUniswapV4LpListPoolsOutputSchema: z.ZodObject<{
1014
1052
  }>;
1015
1053
  declare const mcpUniswapV4LpCreatePositionOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1016
1054
  /** MCP: POST /lp/increase */
1017
- declare const mcpUniswapV4LpIncreaseInputSchema: z.ZodObject<{
1055
+ declare const mcpUniswapV4LpIncreaseInputSchema: z.ZodEffects<z.ZodObject<{
1018
1056
  uniswapApiKey: z.ZodString;
1019
1057
  walletAddress: z.ZodOptional<z.ZodString>;
1020
- chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1058
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
1021
1059
  slippageTolerance: z.ZodOptional<z.ZodNumber>;
1022
- simulateTransaction: z.ZodOptional<z.ZodBoolean>;
1060
+ simulateTransaction: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
1023
1061
  baseUrl: z.ZodOptional<z.ZodString>;
1024
1062
  keyGen: z.ZodOptional<z.ZodString>;
1025
1063
  managementNodeUrl: z.ZodOptional<z.ZodString>;
@@ -1038,7 +1076,7 @@ declare const mcpUniswapV4LpIncreaseInputSchema: z.ZodObject<{
1038
1076
  tokenAddress: string;
1039
1077
  }>;
1040
1078
  }, "strip", z.ZodTypeAny, {
1041
- chainId: string | number;
1079
+ chainId: number;
1042
1080
  uniswapApiKey: string;
1043
1081
  independentToken: {
1044
1082
  amount: string;
@@ -1054,7 +1092,23 @@ declare const mcpUniswapV4LpIncreaseInputSchema: z.ZodObject<{
1054
1092
  walletAddress?: string | undefined;
1055
1093
  simulateTransaction?: boolean | undefined;
1056
1094
  }, {
1057
- chainId: string | number;
1095
+ uniswapApiKey: string;
1096
+ independentToken: {
1097
+ amount: string;
1098
+ tokenAddress: string;
1099
+ };
1100
+ token0Address: string;
1101
+ token1Address: string;
1102
+ nftTokenId: string | number;
1103
+ keyGen?: string | undefined;
1104
+ chainId?: unknown;
1105
+ managementNodeUrl?: string | undefined;
1106
+ baseUrl?: string | undefined;
1107
+ slippageTolerance?: number | undefined;
1108
+ walletAddress?: string | undefined;
1109
+ simulateTransaction?: unknown;
1110
+ }>, {
1111
+ chainId: number;
1058
1112
  uniswapApiKey: string;
1059
1113
  independentToken: {
1060
1114
  amount: string;
@@ -1069,15 +1123,15 @@ declare const mcpUniswapV4LpIncreaseInputSchema: z.ZodObject<{
1069
1123
  slippageTolerance?: number | undefined;
1070
1124
  walletAddress?: string | undefined;
1071
1125
  simulateTransaction?: boolean | undefined;
1072
- }>;
1126
+ }, unknown>;
1073
1127
  declare const mcpUniswapV4LpIncreaseOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1074
1128
  /** MCP: POST /lp/decrease */
1075
- declare const mcpUniswapV4LpDecreaseInputSchema: z.ZodObject<{
1129
+ declare const mcpUniswapV4LpDecreaseInputSchema: z.ZodEffects<z.ZodObject<{
1076
1130
  uniswapApiKey: z.ZodString;
1077
1131
  walletAddress: z.ZodOptional<z.ZodString>;
1078
- chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1132
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
1079
1133
  slippageTolerance: z.ZodOptional<z.ZodNumber>;
1080
- simulateTransaction: z.ZodOptional<z.ZodBoolean>;
1134
+ simulateTransaction: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
1081
1135
  baseUrl: z.ZodOptional<z.ZodString>;
1082
1136
  keyGen: z.ZodOptional<z.ZodString>;
1083
1137
  managementNodeUrl: z.ZodOptional<z.ZodString>;
@@ -1087,7 +1141,7 @@ declare const mcpUniswapV4LpDecreaseInputSchema: z.ZodObject<{
1087
1141
  nftTokenId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
1088
1142
  liquidityPercentageToDecrease: z.ZodNumber;
1089
1143
  }, "strip", z.ZodTypeAny, {
1090
- chainId: string | number;
1144
+ chainId: number;
1091
1145
  uniswapApiKey: string;
1092
1146
  token0Address: string;
1093
1147
  token1Address: string;
@@ -1100,7 +1154,20 @@ declare const mcpUniswapV4LpDecreaseInputSchema: z.ZodObject<{
1100
1154
  walletAddress?: string | undefined;
1101
1155
  simulateTransaction?: boolean | undefined;
1102
1156
  }, {
1103
- chainId: string | number;
1157
+ uniswapApiKey: string;
1158
+ token0Address: string;
1159
+ token1Address: string;
1160
+ nftTokenId: string | number;
1161
+ liquidityPercentageToDecrease: number;
1162
+ keyGen?: string | undefined;
1163
+ chainId?: unknown;
1164
+ managementNodeUrl?: string | undefined;
1165
+ baseUrl?: string | undefined;
1166
+ slippageTolerance?: number | undefined;
1167
+ walletAddress?: string | undefined;
1168
+ simulateTransaction?: unknown;
1169
+ }>, {
1170
+ chainId: number;
1104
1171
  uniswapApiKey: string;
1105
1172
  token0Address: string;
1106
1173
  token1Address: string;
@@ -1112,22 +1179,22 @@ declare const mcpUniswapV4LpDecreaseInputSchema: z.ZodObject<{
1112
1179
  slippageTolerance?: number | undefined;
1113
1180
  walletAddress?: string | undefined;
1114
1181
  simulateTransaction?: boolean | undefined;
1115
- }>;
1182
+ }, unknown>;
1116
1183
  declare const mcpUniswapV4LpDecreaseOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1117
1184
  /** MCP: POST /lp/claim */
1118
- declare const mcpUniswapV4LpClaimInputSchema: z.ZodObject<{
1185
+ declare const mcpUniswapV4LpClaimInputSchema: z.ZodEffects<z.ZodObject<{
1119
1186
  uniswapApiKey: z.ZodString;
1120
1187
  walletAddress: z.ZodOptional<z.ZodString>;
1121
- chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1188
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
1122
1189
  slippageTolerance: z.ZodOptional<z.ZodNumber>;
1123
- simulateTransaction: z.ZodOptional<z.ZodBoolean>;
1190
+ simulateTransaction: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
1124
1191
  baseUrl: z.ZodOptional<z.ZodString>;
1125
1192
  keyGen: z.ZodOptional<z.ZodString>;
1126
1193
  managementNodeUrl: z.ZodOptional<z.ZodString>;
1127
1194
  } & {
1128
1195
  tokenId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
1129
1196
  }, "strip", z.ZodTypeAny, {
1130
- chainId: string | number;
1197
+ chainId: number;
1131
1198
  uniswapApiKey: string;
1132
1199
  tokenId: string | number;
1133
1200
  keyGen?: string | undefined;
@@ -1137,7 +1204,17 @@ declare const mcpUniswapV4LpClaimInputSchema: z.ZodObject<{
1137
1204
  walletAddress?: string | undefined;
1138
1205
  simulateTransaction?: boolean | undefined;
1139
1206
  }, {
1140
- chainId: string | number;
1207
+ uniswapApiKey: string;
1208
+ tokenId: string | number;
1209
+ keyGen?: string | undefined;
1210
+ chainId?: unknown;
1211
+ managementNodeUrl?: string | undefined;
1212
+ baseUrl?: string | undefined;
1213
+ slippageTolerance?: number | undefined;
1214
+ walletAddress?: string | undefined;
1215
+ simulateTransaction?: unknown;
1216
+ }>, {
1217
+ chainId: number;
1141
1218
  uniswapApiKey: string;
1142
1219
  tokenId: string | number;
1143
1220
  keyGen?: string | undefined;
@@ -1146,21 +1223,21 @@ declare const mcpUniswapV4LpClaimInputSchema: z.ZodObject<{
1146
1223
  slippageTolerance?: number | undefined;
1147
1224
  walletAddress?: string | undefined;
1148
1225
  simulateTransaction?: boolean | undefined;
1149
- }>;
1226
+ }, unknown>;
1150
1227
  declare const mcpUniswapV4LpClaimOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1151
1228
  /** MCP: list position NFTs from node token registry (no RPC log scan). */
1152
1229
  declare const mcpUniswapV4LpListPositionsInputSchema: z.ZodObject<{
1153
- chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1230
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
1154
1231
  keyGenId: z.ZodOptional<z.ZodString>;
1155
1232
  walletAddress: z.ZodOptional<z.ZodString>;
1156
1233
  positionManagerAddress: z.ZodOptional<z.ZodString>;
1157
1234
  }, "strip", z.ZodTypeAny, {
1158
- chainId: string | number;
1235
+ chainId: number;
1159
1236
  walletAddress?: string | undefined;
1160
1237
  keyGenId?: string | undefined;
1161
1238
  positionManagerAddress?: string | undefined;
1162
1239
  }, {
1163
- chainId: string | number;
1240
+ chainId?: unknown;
1164
1241
  walletAddress?: string | undefined;
1165
1242
  keyGenId?: string | undefined;
1166
1243
  positionManagerAddress?: string | undefined;
@@ -1207,7 +1284,7 @@ declare const mcpUniswapV4LpListPositionsOutputSchema: z.ZodObject<{
1207
1284
  }>;
1208
1285
  /** MCP: save a minted position NFT in the node token registry (management-signed). */
1209
1286
  declare const mcpUniswapV4RegisterPositionNftInputSchema: z.ZodObject<{
1210
- chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1287
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
1211
1288
  tokenId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
1212
1289
  keyGenId: z.ZodOptional<z.ZodString>;
1213
1290
  positionManagerAddress: z.ZodOptional<z.ZodString>;
@@ -1215,7 +1292,7 @@ declare const mcpUniswapV4RegisterPositionNftInputSchema: z.ZodObject<{
1215
1292
  symbol: z.ZodOptional<z.ZodString>;
1216
1293
  tokenURI: z.ZodOptional<z.ZodString>;
1217
1294
  }, "strip", z.ZodTypeAny, {
1218
- chainId: string | number;
1295
+ chainId: number;
1219
1296
  tokenId: string | number;
1220
1297
  symbol?: string | undefined;
1221
1298
  name?: string | undefined;
@@ -1223,9 +1300,9 @@ declare const mcpUniswapV4RegisterPositionNftInputSchema: z.ZodObject<{
1223
1300
  positionManagerAddress?: string | undefined;
1224
1301
  tokenURI?: string | undefined;
1225
1302
  }, {
1226
- chainId: string | number;
1227
1303
  tokenId: string | number;
1228
1304
  symbol?: string | undefined;
1305
+ chainId?: unknown;
1229
1306
  name?: string | undefined;
1230
1307
  keyGenId?: string | undefined;
1231
1308
  positionManagerAddress?: string | undefined;
@@ -1246,22 +1323,22 @@ declare const mcpUniswapV4RegisterPositionNftOutputSchema: z.ZodObject<{
1246
1323
  }>;
1247
1324
  /** MCP: parse mint tx receipt and register position NFT (management-signed). */
1248
1325
  declare const mcpUniswapV4RegisterPositionFromMintTxInputSchema: z.ZodObject<{
1249
- chainId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1326
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
1250
1327
  txHash: z.ZodString;
1251
1328
  keyGenId: z.ZodOptional<z.ZodString>;
1252
1329
  walletAddress: z.ZodOptional<z.ZodString>;
1253
1330
  rpcUrl: z.ZodOptional<z.ZodString>;
1254
1331
  positionManagerAddress: z.ZodOptional<z.ZodString>;
1255
1332
  }, "strip", z.ZodTypeAny, {
1256
- chainId: string | number;
1333
+ chainId: number;
1257
1334
  txHash: string;
1258
1335
  rpcUrl?: string | undefined;
1259
1336
  walletAddress?: string | undefined;
1260
1337
  keyGenId?: string | undefined;
1261
1338
  positionManagerAddress?: string | undefined;
1262
1339
  }, {
1263
- chainId: string | number;
1264
1340
  txHash: string;
1341
+ chainId?: unknown;
1265
1342
  rpcUrl?: string | undefined;
1266
1343
  walletAddress?: string | undefined;
1267
1344
  keyGenId?: string | undefined;
@@ -1283,7 +1360,7 @@ declare const mcpUniswapV4RegisterPositionFromMintTxOutputSchema: z.ZodObject<{
1283
1360
  positionManager: string;
1284
1361
  registered: boolean;
1285
1362
  }>;
1286
- declare const mcpUniswapV4BuildMintLiquidityMultisignInputSchema: z.ZodEffects<z.ZodObject<{
1363
+ declare const mcpUniswapV4BuildMintLiquidityMultisignInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
1287
1364
  keyGenId: z.ZodOptional<z.ZodString>;
1288
1365
  keyGen: z.ZodOptional<z.ZodObject<{
1289
1366
  pubkeyhex: z.ZodString;
@@ -1408,19 +1485,19 @@ declare const mcpUniswapV4BuildMintLiquidityMultisignInputSchema: z.ZodEffects<z
1408
1485
  nativeWrapped?: string | undefined;
1409
1486
  poolReference?: string | undefined;
1410
1487
  keyGenId?: string | undefined;
1411
- }, {
1488
+ }, unknown>, {
1412
1489
  purposeText: string;
1490
+ useCustomGas: boolean;
1491
+ chainId: number;
1413
1492
  lpResponse: Record<string, unknown>;
1414
1493
  keyGen?: {
1415
1494
  pubkeyhex: string;
1416
1495
  keylist?: string[] | undefined;
1417
1496
  ClientKeys?: Record<string, string> | undefined;
1418
1497
  } | undefined;
1419
- useCustomGas?: unknown;
1420
- chainId?: unknown;
1421
1498
  rpcUrl?: string | undefined;
1422
1499
  executorAddress?: string | undefined;
1423
- chainDetail?: z.objectInputType<{
1500
+ chainDetail?: z.objectOutputType<{
1424
1501
  legacy: z.ZodOptional<z.ZodBoolean>;
1425
1502
  gasLimit: z.ZodOptional<z.ZodNumber>;
1426
1503
  gasMultiplier: z.ZodOptional<z.ZodNumber>;
@@ -1433,8 +1510,8 @@ declare const mcpUniswapV4BuildMintLiquidityMultisignInputSchema: z.ZodEffects<z
1433
1510
  nativeWrapped?: string | undefined;
1434
1511
  poolReference?: string | undefined;
1435
1512
  keyGenId?: string | undefined;
1436
- }>;
1437
- declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodEffects<z.ZodObject<{
1513
+ }, unknown>;
1514
+ declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
1438
1515
  keyGenId: z.ZodOptional<z.ZodString>;
1439
1516
  keyGen: z.ZodOptional<z.ZodObject<{
1440
1517
  pubkeyhex: z.ZodString;
@@ -1563,8 +1640,10 @@ declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodEffec
1563
1640
  nativeWrapped?: string | undefined;
1564
1641
  poolReference?: string | undefined;
1565
1642
  keyGenId?: string | undefined;
1566
- }, {
1643
+ }, unknown>, {
1567
1644
  purposeText: string;
1645
+ useCustomGas: boolean;
1646
+ chainId: number;
1568
1647
  nftTokenId: string | number;
1569
1648
  lpResponse: Record<string, unknown>;
1570
1649
  keyGen?: {
@@ -1572,11 +1651,9 @@ declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodEffec
1572
1651
  keylist?: string[] | undefined;
1573
1652
  ClientKeys?: Record<string, string> | undefined;
1574
1653
  } | undefined;
1575
- useCustomGas?: unknown;
1576
- chainId?: unknown;
1577
1654
  rpcUrl?: string | undefined;
1578
1655
  executorAddress?: string | undefined;
1579
- chainDetail?: z.objectInputType<{
1656
+ chainDetail?: z.objectOutputType<{
1580
1657
  legacy: z.ZodOptional<z.ZodBoolean>;
1581
1658
  gasLimit: z.ZodOptional<z.ZodNumber>;
1582
1659
  gasMultiplier: z.ZodOptional<z.ZodNumber>;
@@ -1589,8 +1666,8 @@ declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodEffec
1589
1666
  nativeWrapped?: string | undefined;
1590
1667
  poolReference?: string | undefined;
1591
1668
  keyGenId?: string | undefined;
1592
- }>;
1593
- declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodEffects<z.ZodObject<{
1669
+ }, unknown>;
1670
+ declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
1594
1671
  keyGenId: z.ZodOptional<z.ZodString>;
1595
1672
  keyGen: z.ZodOptional<z.ZodObject<{
1596
1673
  pubkeyhex: z.ZodString;
@@ -1719,8 +1796,10 @@ declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodEffec
1719
1796
  nativeWrapped?: string | undefined;
1720
1797
  poolReference?: string | undefined;
1721
1798
  keyGenId?: string | undefined;
1722
- }, {
1799
+ }, unknown>, {
1723
1800
  purposeText: string;
1801
+ useCustomGas: boolean;
1802
+ chainId: number;
1724
1803
  nftTokenId: string | number;
1725
1804
  lpResponse: Record<string, unknown>;
1726
1805
  keyGen?: {
@@ -1728,11 +1807,9 @@ declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodEffec
1728
1807
  keylist?: string[] | undefined;
1729
1808
  ClientKeys?: Record<string, string> | undefined;
1730
1809
  } | undefined;
1731
- useCustomGas?: unknown;
1732
- chainId?: unknown;
1733
1810
  rpcUrl?: string | undefined;
1734
1811
  executorAddress?: string | undefined;
1735
- chainDetail?: z.objectInputType<{
1812
+ chainDetail?: z.objectOutputType<{
1736
1813
  legacy: z.ZodOptional<z.ZodBoolean>;
1737
1814
  gasLimit: z.ZodOptional<z.ZodNumber>;
1738
1815
  gasMultiplier: z.ZodOptional<z.ZodNumber>;
@@ -1745,8 +1822,8 @@ declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodEffec
1745
1822
  nativeWrapped?: string | undefined;
1746
1823
  poolReference?: string | undefined;
1747
1824
  keyGenId?: string | undefined;
1748
- }>;
1749
- declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodEffects<z.ZodObject<{
1825
+ }, unknown>;
1826
+ declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
1750
1827
  keyGenId: z.ZodOptional<z.ZodString>;
1751
1828
  keyGen: z.ZodOptional<z.ZodObject<{
1752
1829
  pubkeyhex: z.ZodString;
@@ -1875,8 +1952,10 @@ declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodEffects<z.Z
1875
1952
  nativeWrapped?: string | undefined;
1876
1953
  poolReference?: string | undefined;
1877
1954
  keyGenId?: string | undefined;
1878
- }, {
1955
+ }, unknown>, {
1879
1956
  purposeText: string;
1957
+ useCustomGas: boolean;
1958
+ chainId: number;
1880
1959
  nftTokenId: string | number;
1881
1960
  lpResponse: Record<string, unknown>;
1882
1961
  keyGen?: {
@@ -1884,11 +1963,9 @@ declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodEffects<z.Z
1884
1963
  keylist?: string[] | undefined;
1885
1964
  ClientKeys?: Record<string, string> | undefined;
1886
1965
  } | undefined;
1887
- useCustomGas?: unknown;
1888
- chainId?: unknown;
1889
1966
  rpcUrl?: string | undefined;
1890
1967
  executorAddress?: string | undefined;
1891
- chainDetail?: z.objectInputType<{
1968
+ chainDetail?: z.objectOutputType<{
1892
1969
  legacy: z.ZodOptional<z.ZodBoolean>;
1893
1970
  gasLimit: z.ZodOptional<z.ZodNumber>;
1894
1971
  gasMultiplier: z.ZodOptional<z.ZodNumber>;
@@ -1901,13 +1978,13 @@ declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodEffects<z.Z
1901
1978
  nativeWrapped?: string | undefined;
1902
1979
  poolReference?: string | undefined;
1903
1980
  keyGenId?: string | undefined;
1904
- }>;
1981
+ }, unknown>;
1905
1982
  type McpUniswapV4LpCreatePositionInput = z.infer<typeof mcpUniswapV4LpCreatePositionInputSchema>;
1906
1983
  type McpUniswapV4BuildMintLiquidityMultisignInput = z.infer<typeof mcpUniswapV4BuildMintLiquidityMultisignInputSchema>;
1907
1984
 
1908
1985
  /** Input for MCP tool `ctm_curve_dao_quote` → handler `curveDaoQuote`. */
1909
1986
  declare const mcpCurveDaoQuoteInputSchema: z.ZodObject<{
1910
- chainId: z.ZodNumber;
1987
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
1911
1988
  rpcUrl: z.ZodOptional<z.ZodString>;
1912
1989
  tokenIn: z.ZodString;
1913
1990
  tokenOut: z.ZodString;
@@ -1921,16 +1998,16 @@ declare const mcpCurveDaoQuoteInputSchema: z.ZodObject<{
1921
1998
  tokenInDecimals?: number | undefined;
1922
1999
  rpcUrl?: string | undefined;
1923
2000
  }, {
1924
- chainId: number;
1925
2001
  tokenIn: string;
1926
2002
  tokenOut: string;
1927
2003
  amountHuman: string;
2004
+ chainId?: unknown;
1928
2005
  tokenInDecimals?: number | undefined;
1929
2006
  rpcUrl?: string | undefined;
1930
2007
  }>;
1931
2008
  declare const mcpCurveDaoQuoteOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1932
2009
  /** Input for MCP tool `ctm_curve_dao_build_swap_multisign`. */
1933
- declare const mcpCurveDaoBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObject<{
2010
+ declare const mcpCurveDaoBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
1934
2011
  keyGenId: z.ZodOptional<z.ZodString>;
1935
2012
  keyGen: z.ZodOptional<z.ZodObject<{
1936
2013
  pubkeyhex: z.ZodString;
@@ -1981,6 +2058,7 @@ declare const mcpCurveDaoBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObject
1981
2058
  tokenOut: z.ZodString;
1982
2059
  amountHuman: z.ZodString;
1983
2060
  slippagePercent: z.ZodNumber;
2061
+ quoteSnapshot: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1984
2062
  }, "strip", z.ZodTypeAny, {
1985
2063
  purposeText: string;
1986
2064
  useCustomGas: boolean;
@@ -2007,6 +2085,7 @@ declare const mcpCurveDaoBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObject
2007
2085
  }, z.ZodTypeAny, "passthrough"> | undefined;
2008
2086
  customGasChainDetails?: Record<string, unknown> | undefined;
2009
2087
  keyGenId?: string | undefined;
2088
+ quoteSnapshot?: Record<string, unknown> | undefined;
2010
2089
  }, {
2011
2090
  purposeText: string;
2012
2091
  tokenIn: string;
@@ -2033,6 +2112,7 @@ declare const mcpCurveDaoBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObject
2033
2112
  }, z.ZodTypeAny, "passthrough"> | undefined;
2034
2113
  customGasChainDetails?: Record<string, unknown> | undefined;
2035
2114
  keyGenId?: string | undefined;
2115
+ quoteSnapshot?: Record<string, unknown> | undefined;
2036
2116
  }>, {
2037
2117
  purposeText: string;
2038
2118
  useCustomGas: boolean;
@@ -2059,8 +2139,11 @@ declare const mcpCurveDaoBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObject
2059
2139
  }, z.ZodTypeAny, "passthrough"> | undefined;
2060
2140
  customGasChainDetails?: Record<string, unknown> | undefined;
2061
2141
  keyGenId?: string | undefined;
2062
- }, {
2142
+ quoteSnapshot?: Record<string, unknown> | undefined;
2143
+ }, unknown>, {
2063
2144
  purposeText: string;
2145
+ useCustomGas: boolean;
2146
+ chainId: number;
2064
2147
  tokenIn: string;
2065
2148
  tokenOut: string;
2066
2149
  slippagePercent: number;
@@ -2070,11 +2153,9 @@ declare const mcpCurveDaoBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObject
2070
2153
  keylist?: string[] | undefined;
2071
2154
  ClientKeys?: Record<string, string> | undefined;
2072
2155
  } | undefined;
2073
- useCustomGas?: unknown;
2074
- chainId?: unknown;
2075
2156
  rpcUrl?: string | undefined;
2076
2157
  executorAddress?: string | undefined;
2077
- chainDetail?: z.objectInputType<{
2158
+ chainDetail?: z.objectOutputType<{
2078
2159
  legacy: z.ZodOptional<z.ZodBoolean>;
2079
2160
  gasLimit: z.ZodOptional<z.ZodNumber>;
2080
2161
  gasMultiplier: z.ZodOptional<z.ZodNumber>;
@@ -2085,7 +2166,8 @@ declare const mcpCurveDaoBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObject
2085
2166
  }, z.ZodTypeAny, "passthrough"> | undefined;
2086
2167
  customGasChainDetails?: Record<string, unknown> | undefined;
2087
2168
  keyGenId?: string | undefined;
2088
- }>;
2169
+ quoteSnapshot?: Record<string, unknown> | undefined;
2170
+ }, unknown>;
2089
2171
  type McpCurveDaoQuoteInput = z.infer<typeof mcpCurveDaoQuoteInputSchema>;
2090
2172
  type McpCurveDaoQuoteOutput = z.infer<typeof mcpCurveDaoQuoteOutputSchema>;
2091
2173
  type McpCurveDaoBuildSwapMultisignInput = z.infer<typeof mcpCurveDaoBuildSwapMultisignInputSchema>;
@@ -2301,18 +2383,7 @@ declare const mcpSkySusdsRedeemInputSchema: z.ZodEffects<z.ZodObject<{} & {
2301
2383
  }, {
2302
2384
  [x: string]: any;
2303
2385
  }>;
2304
- declare const mcpAaveV4DepositInputSchema: z.ZodEffects<z.ZodObject<{} & {
2305
- [x: string]: z.ZodTypeAny;
2306
- }, "strip", z.ZodTypeAny, {
2307
- [x: string]: any;
2308
- }, {
2309
- [x: string]: any;
2310
- }>, {
2311
- [x: string]: any;
2312
- }, {
2313
- [x: string]: any;
2314
- }>;
2315
- declare const mcpAaveV4WithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
2386
+ declare const mcpAaveV4DepositInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{} & {
2316
2387
  [x: string]: z.ZodTypeAny;
2317
2388
  }, "strip", z.ZodTypeAny, {
2318
2389
  [x: string]: any;
@@ -2320,10 +2391,10 @@ declare const mcpAaveV4WithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
2320
2391
  [x: string]: any;
2321
2392
  }>, {
2322
2393
  [x: string]: any;
2323
- }, {
2394
+ }, unknown>, {
2324
2395
  [x: string]: any;
2325
- }>;
2326
- declare const mcpAaveV4BorrowInputSchema: z.ZodEffects<z.ZodObject<{} & {
2396
+ }, unknown>;
2397
+ declare const mcpAaveV4WithdrawInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{} & {
2327
2398
  [x: string]: z.ZodTypeAny;
2328
2399
  }, "strip", z.ZodTypeAny, {
2329
2400
  [x: string]: any;
@@ -2331,10 +2402,10 @@ declare const mcpAaveV4BorrowInputSchema: z.ZodEffects<z.ZodObject<{} & {
2331
2402
  [x: string]: any;
2332
2403
  }>, {
2333
2404
  [x: string]: any;
2334
- }, {
2405
+ }, unknown>, {
2335
2406
  [x: string]: any;
2336
- }>;
2337
- declare const mcpAaveV4RepayInputSchema: z.ZodEffects<z.ZodObject<{} & {
2407
+ }, unknown>;
2408
+ declare const mcpAaveV4BorrowInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{} & {
2338
2409
  [x: string]: z.ZodTypeAny;
2339
2410
  }, "strip", z.ZodTypeAny, {
2340
2411
  [x: string]: any;
@@ -2342,10 +2413,10 @@ declare const mcpAaveV4RepayInputSchema: z.ZodEffects<z.ZodObject<{} & {
2342
2413
  [x: string]: any;
2343
2414
  }>, {
2344
2415
  [x: string]: any;
2345
- }, {
2416
+ }, unknown>, {
2346
2417
  [x: string]: any;
2347
- }>;
2348
- declare const mcpEulerV2IsolatedLendInputSchema: z.ZodEffects<z.ZodObject<{} & {
2418
+ }, unknown>;
2419
+ declare const mcpAaveV4RepayInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{} & {
2349
2420
  [x: string]: z.ZodTypeAny;
2350
2421
  }, "strip", z.ZodTypeAny, {
2351
2422
  [x: string]: any;
@@ -2353,43 +2424,171 @@ declare const mcpEulerV2IsolatedLendInputSchema: z.ZodEffects<z.ZodObject<{} & {
2353
2424
  [x: string]: any;
2354
2425
  }>, {
2355
2426
  [x: string]: any;
2356
- }, {
2427
+ }, unknown>, {
2357
2428
  [x: string]: any;
2358
- }>;
2359
- declare const mcpEulerV2IsolatedBorrowInputSchema: z.ZodEffects<z.ZodObject<{} & {
2360
- [x: string]: z.ZodTypeAny;
2429
+ }, unknown>;
2430
+ declare const mcpEulerV2IsolatedLendInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
2431
+ keyGenId: z.ZodOptional<z.ZodString>;
2432
+ keyGen: z.ZodOptional<z.ZodObject<{
2433
+ pubkeyhex: z.ZodString;
2434
+ keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2435
+ ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2436
+ }, "strip", z.ZodTypeAny, {
2437
+ pubkeyhex: string;
2438
+ keylist?: string[] | undefined;
2439
+ ClientKeys?: Record<string, string> | undefined;
2440
+ }, {
2441
+ pubkeyhex: string;
2442
+ keylist?: string[] | undefined;
2443
+ ClientKeys?: Record<string, string> | undefined;
2444
+ }>>;
2445
+ purposeText: z.ZodString;
2446
+ useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
2447
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
2448
+ rpcUrl: z.ZodOptional<z.ZodString>;
2449
+ executorAddress: z.ZodOptional<z.ZodString>;
2450
+ chainDetail: z.ZodOptional<z.ZodObject<{
2451
+ legacy: z.ZodOptional<z.ZodBoolean>;
2452
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2453
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2454
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2455
+ baseFee: z.ZodOptional<z.ZodNumber>;
2456
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2457
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2458
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
2459
+ legacy: z.ZodOptional<z.ZodBoolean>;
2460
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2461
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2462
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2463
+ baseFee: z.ZodOptional<z.ZodNumber>;
2464
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2465
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2466
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
2467
+ legacy: z.ZodOptional<z.ZodBoolean>;
2468
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2469
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2470
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2471
+ baseFee: z.ZodOptional<z.ZodNumber>;
2472
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2473
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2474
+ }, z.ZodTypeAny, "passthrough">>>;
2475
+ customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2476
+ } & {
2477
+ vault: z.ZodString;
2478
+ assetAmountHuman: z.ZodString;
2479
+ underlyingAddress: z.ZodOptional<z.ZodString>;
2480
+ marketName: z.ZodOptional<z.ZodString>;
2481
+ isNativeIn: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
2361
2482
  }, "strip", z.ZodTypeAny, {
2362
- [x: string]: any;
2363
- }, {
2364
- [x: string]: any;
2365
- }>, {
2366
- [x: string]: any;
2483
+ purposeText: string;
2484
+ useCustomGas: boolean;
2485
+ chainId: number;
2486
+ vault: string;
2487
+ assetAmountHuman: string;
2488
+ keyGen?: {
2489
+ pubkeyhex: string;
2490
+ keylist?: string[] | undefined;
2491
+ ClientKeys?: Record<string, string> | undefined;
2492
+ } | undefined;
2493
+ rpcUrl?: string | undefined;
2494
+ executorAddress?: string | undefined;
2495
+ chainDetail?: z.objectOutputType<{
2496
+ legacy: z.ZodOptional<z.ZodBoolean>;
2497
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2498
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2499
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2500
+ baseFee: z.ZodOptional<z.ZodNumber>;
2501
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2502
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2503
+ }, z.ZodTypeAny, "passthrough"> | undefined;
2504
+ customGasChainDetails?: Record<string, unknown> | undefined;
2505
+ keyGenId?: string | undefined;
2506
+ underlyingAddress?: string | undefined;
2507
+ marketName?: string | undefined;
2508
+ isNativeIn?: boolean | undefined;
2367
2509
  }, {
2368
- [x: string]: any;
2369
- }>;
2370
- declare const mcpEulerV2VaultWithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
2371
- [x: string]: z.ZodTypeAny;
2372
- }, "strip", z.ZodTypeAny, {
2373
- [x: string]: any;
2374
- }, {
2375
- [x: string]: any;
2376
- }>, {
2377
- [x: string]: any;
2378
- }, {
2379
- [x: string]: any;
2380
- }>;
2381
- declare const mcpEulerV2BorrowRepayInputSchema: z.ZodEffects<z.ZodObject<{} & {
2382
- [x: string]: z.ZodTypeAny;
2383
- }, "strip", z.ZodTypeAny, {
2384
- [x: string]: any;
2385
- }, {
2386
- [x: string]: any;
2510
+ purposeText: string;
2511
+ vault: string;
2512
+ assetAmountHuman: string;
2513
+ keyGen?: {
2514
+ pubkeyhex: string;
2515
+ keylist?: string[] | undefined;
2516
+ ClientKeys?: Record<string, string> | undefined;
2517
+ } | undefined;
2518
+ useCustomGas?: unknown;
2519
+ chainId?: unknown;
2520
+ rpcUrl?: string | undefined;
2521
+ executorAddress?: string | undefined;
2522
+ chainDetail?: z.objectInputType<{
2523
+ legacy: z.ZodOptional<z.ZodBoolean>;
2524
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2525
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2526
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2527
+ baseFee: z.ZodOptional<z.ZodNumber>;
2528
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2529
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2530
+ }, z.ZodTypeAny, "passthrough"> | undefined;
2531
+ customGasChainDetails?: Record<string, unknown> | undefined;
2532
+ keyGenId?: string | undefined;
2533
+ underlyingAddress?: string | undefined;
2534
+ marketName?: string | undefined;
2535
+ isNativeIn?: unknown;
2387
2536
  }>, {
2388
- [x: string]: any;
2389
- }, {
2390
- [x: string]: any;
2391
- }>;
2392
- declare const mcpEulerV2CollateralDepositInputSchema: z.ZodEffects<z.ZodObject<{} & {
2537
+ purposeText: string;
2538
+ useCustomGas: boolean;
2539
+ chainId: number;
2540
+ vault: string;
2541
+ assetAmountHuman: string;
2542
+ keyGen?: {
2543
+ pubkeyhex: string;
2544
+ keylist?: string[] | undefined;
2545
+ ClientKeys?: Record<string, string> | undefined;
2546
+ } | undefined;
2547
+ rpcUrl?: string | undefined;
2548
+ executorAddress?: string | undefined;
2549
+ chainDetail?: z.objectOutputType<{
2550
+ legacy: z.ZodOptional<z.ZodBoolean>;
2551
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2552
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2553
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2554
+ baseFee: z.ZodOptional<z.ZodNumber>;
2555
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2556
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2557
+ }, z.ZodTypeAny, "passthrough"> | undefined;
2558
+ customGasChainDetails?: Record<string, unknown> | undefined;
2559
+ keyGenId?: string | undefined;
2560
+ underlyingAddress?: string | undefined;
2561
+ marketName?: string | undefined;
2562
+ isNativeIn?: boolean | undefined;
2563
+ }, unknown>, {
2564
+ purposeText: string;
2565
+ useCustomGas: boolean;
2566
+ chainId: number;
2567
+ vault: string;
2568
+ assetAmountHuman: string;
2569
+ keyGen?: {
2570
+ pubkeyhex: string;
2571
+ keylist?: string[] | undefined;
2572
+ ClientKeys?: Record<string, string> | undefined;
2573
+ } | undefined;
2574
+ rpcUrl?: string | undefined;
2575
+ executorAddress?: string | undefined;
2576
+ chainDetail?: z.objectOutputType<{
2577
+ legacy: z.ZodOptional<z.ZodBoolean>;
2578
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2579
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2580
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2581
+ baseFee: z.ZodOptional<z.ZodNumber>;
2582
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2583
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2584
+ }, z.ZodTypeAny, "passthrough"> | undefined;
2585
+ customGasChainDetails?: Record<string, unknown> | undefined;
2586
+ keyGenId?: string | undefined;
2587
+ underlyingAddress?: string | undefined;
2588
+ marketName?: string | undefined;
2589
+ isNativeIn?: boolean | undefined;
2590
+ }, unknown>;
2591
+ declare const mcpEulerV2IsolatedBorrowInputSchema: z.ZodEffects<z.ZodObject<{} & {
2393
2592
  [x: string]: z.ZodTypeAny;
2394
2593
  }, "strip", z.ZodTypeAny, {
2395
2594
  [x: string]: any;
@@ -2400,7 +2599,7 @@ declare const mcpEulerV2CollateralDepositInputSchema: z.ZodEffects<z.ZodObject<{
2400
2599
  }, {
2401
2600
  [x: string]: any;
2402
2601
  }>;
2403
- declare const mcpEulerV2CollateralWithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
2602
+ declare const mcpEulerV2VaultWithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
2404
2603
  [x: string]: z.ZodTypeAny;
2405
2604
  }, "strip", z.ZodTypeAny, {
2406
2605
  [x: string]: any;
@@ -2411,13 +2610,7 @@ declare const mcpEulerV2CollateralWithdrawInputSchema: z.ZodEffects<z.ZodObject<
2411
2610
  }, {
2412
2611
  [x: string]: any;
2413
2612
  }>;
2414
- type McpLidoSubmitInput = z.infer<typeof mcpLidoSubmitInputSchema>;
2415
- type McpEthenaStakeInput = z.infer<typeof mcpEthenaStakeInputSchema>;
2416
- type McpMapleDepositInput = z.infer<typeof mcpMapleDepositInputSchema>;
2417
- type McpSkyLockstakeStakeInput = z.infer<typeof mcpSkyLockstakeStakeInputSchema>;
2418
- type McpAaveV4DepositInput = z.infer<typeof mcpAaveV4DepositInputSchema>;
2419
- type McpEulerV2IsolatedLendInput = z.infer<typeof mcpEulerV2IsolatedLendInputSchema>;
2420
- declare const mcpMorphoVaultDepositInputSchema: z.ZodEffects<z.ZodObject<{} & {
2613
+ declare const mcpEulerV2BorrowRepayInputSchema: z.ZodEffects<z.ZodObject<{} & {
2421
2614
  [x: string]: z.ZodTypeAny;
2422
2615
  }, "strip", z.ZodTypeAny, {
2423
2616
  [x: string]: any;
@@ -2428,7 +2621,7 @@ declare const mcpMorphoVaultDepositInputSchema: z.ZodEffects<z.ZodObject<{} & {
2428
2621
  }, {
2429
2622
  [x: string]: any;
2430
2623
  }>;
2431
- declare const mcpMorphoVaultWithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
2624
+ declare const mcpEulerV2CollateralDepositInputSchema: z.ZodEffects<z.ZodObject<{} & {
2432
2625
  [x: string]: z.ZodTypeAny;
2433
2626
  }, "strip", z.ZodTypeAny, {
2434
2627
  [x: string]: any;
@@ -2439,7 +2632,7 @@ declare const mcpMorphoVaultWithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
2439
2632
  }, {
2440
2633
  [x: string]: any;
2441
2634
  }>;
2442
- declare const mcpMorphoBlueCollateralDepositInputSchema: z.ZodEffects<z.ZodObject<{} & {
2635
+ declare const mcpEulerV2CollateralWithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
2443
2636
  [x: string]: z.ZodTypeAny;
2444
2637
  }, "strip", z.ZodTypeAny, {
2445
2638
  [x: string]: any;
@@ -2450,28 +2643,797 @@ declare const mcpMorphoBlueCollateralDepositInputSchema: z.ZodEffects<z.ZodObjec
2450
2643
  }, {
2451
2644
  [x: string]: any;
2452
2645
  }>;
2453
- declare const mcpMorphoBlueBorrowInputSchema: z.ZodEffects<z.ZodObject<{} & {
2454
- [x: string]: z.ZodTypeAny;
2646
+ type McpLidoSubmitInput = z.infer<typeof mcpLidoSubmitInputSchema>;
2647
+ type McpEthenaStakeInput = z.infer<typeof mcpEthenaStakeInputSchema>;
2648
+ type McpMapleDepositInput = z.infer<typeof mcpMapleDepositInputSchema>;
2649
+ type McpSkyLockstakeStakeInput = z.infer<typeof mcpSkyLockstakeStakeInputSchema>;
2650
+ type McpAaveV4DepositInput = z.infer<typeof mcpAaveV4DepositInputSchema>;
2651
+ type McpEulerV2IsolatedLendInput = z.infer<typeof mcpEulerV2IsolatedLendInputSchema>;
2652
+ declare const mcpMorphoVaultDepositInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
2653
+ keyGenId: z.ZodOptional<z.ZodString>;
2654
+ keyGen: z.ZodOptional<z.ZodObject<{
2655
+ pubkeyhex: z.ZodString;
2656
+ keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2657
+ ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2658
+ }, "strip", z.ZodTypeAny, {
2659
+ pubkeyhex: string;
2660
+ keylist?: string[] | undefined;
2661
+ ClientKeys?: Record<string, string> | undefined;
2662
+ }, {
2663
+ pubkeyhex: string;
2664
+ keylist?: string[] | undefined;
2665
+ ClientKeys?: Record<string, string> | undefined;
2666
+ }>>;
2667
+ purposeText: z.ZodString;
2668
+ useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
2669
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
2670
+ rpcUrl: z.ZodOptional<z.ZodString>;
2671
+ executorAddress: z.ZodOptional<z.ZodString>;
2672
+ chainDetail: z.ZodOptional<z.ZodObject<{
2673
+ legacy: z.ZodOptional<z.ZodBoolean>;
2674
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2675
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2676
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2677
+ baseFee: z.ZodOptional<z.ZodNumber>;
2678
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2679
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2680
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
2681
+ legacy: z.ZodOptional<z.ZodBoolean>;
2682
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2683
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2684
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2685
+ baseFee: z.ZodOptional<z.ZodNumber>;
2686
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2687
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2688
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
2689
+ legacy: z.ZodOptional<z.ZodBoolean>;
2690
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2691
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2692
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2693
+ baseFee: z.ZodOptional<z.ZodNumber>;
2694
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2695
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2696
+ }, z.ZodTypeAny, "passthrough">>>;
2697
+ customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2698
+ } & {
2699
+ vaultAddress: z.ZodString;
2700
+ underlyingAddress: z.ZodString;
2701
+ amountHuman: z.ZodString;
2702
+ vaultName: z.ZodOptional<z.ZodString>;
2703
+ vaultSymbol: z.ZodOptional<z.ZodString>;
2704
+ isNativeIn: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
2455
2705
  }, "strip", z.ZodTypeAny, {
2456
- [x: string]: any;
2706
+ purposeText: string;
2707
+ useCustomGas: boolean;
2708
+ chainId: number;
2709
+ amountHuman: string;
2710
+ underlyingAddress: string;
2711
+ vaultAddress: string;
2712
+ keyGen?: {
2713
+ pubkeyhex: string;
2714
+ keylist?: string[] | undefined;
2715
+ ClientKeys?: Record<string, string> | undefined;
2716
+ } | undefined;
2717
+ rpcUrl?: string | undefined;
2718
+ executorAddress?: string | undefined;
2719
+ chainDetail?: z.objectOutputType<{
2720
+ legacy: z.ZodOptional<z.ZodBoolean>;
2721
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2722
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2723
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2724
+ baseFee: z.ZodOptional<z.ZodNumber>;
2725
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2726
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2727
+ }, z.ZodTypeAny, "passthrough"> | undefined;
2728
+ customGasChainDetails?: Record<string, unknown> | undefined;
2729
+ keyGenId?: string | undefined;
2730
+ vaultName?: string | undefined;
2731
+ vaultSymbol?: string | undefined;
2732
+ isNativeIn?: boolean | undefined;
2457
2733
  }, {
2458
- [x: string]: any;
2734
+ purposeText: string;
2735
+ amountHuman: string;
2736
+ underlyingAddress: string;
2737
+ vaultAddress: string;
2738
+ keyGen?: {
2739
+ pubkeyhex: string;
2740
+ keylist?: string[] | undefined;
2741
+ ClientKeys?: Record<string, string> | undefined;
2742
+ } | undefined;
2743
+ useCustomGas?: unknown;
2744
+ chainId?: unknown;
2745
+ rpcUrl?: string | undefined;
2746
+ executorAddress?: string | undefined;
2747
+ chainDetail?: z.objectInputType<{
2748
+ legacy: z.ZodOptional<z.ZodBoolean>;
2749
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2750
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2751
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2752
+ baseFee: z.ZodOptional<z.ZodNumber>;
2753
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2754
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2755
+ }, z.ZodTypeAny, "passthrough"> | undefined;
2756
+ customGasChainDetails?: Record<string, unknown> | undefined;
2757
+ keyGenId?: string | undefined;
2758
+ vaultName?: string | undefined;
2759
+ vaultSymbol?: string | undefined;
2760
+ isNativeIn?: unknown;
2459
2761
  }>, {
2460
- [x: string]: any;
2461
- }, {
2462
- [x: string]: any;
2463
- }>;
2464
- declare const mcpMorphoBlueRepayInputSchema: z.ZodEffects<z.ZodObject<{} & {
2465
- [x: string]: z.ZodTypeAny;
2762
+ purposeText: string;
2763
+ useCustomGas: boolean;
2764
+ chainId: number;
2765
+ amountHuman: string;
2766
+ underlyingAddress: string;
2767
+ vaultAddress: string;
2768
+ keyGen?: {
2769
+ pubkeyhex: string;
2770
+ keylist?: string[] | undefined;
2771
+ ClientKeys?: Record<string, string> | undefined;
2772
+ } | undefined;
2773
+ rpcUrl?: string | undefined;
2774
+ executorAddress?: string | undefined;
2775
+ chainDetail?: z.objectOutputType<{
2776
+ legacy: z.ZodOptional<z.ZodBoolean>;
2777
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2778
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2779
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2780
+ baseFee: z.ZodOptional<z.ZodNumber>;
2781
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2782
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2783
+ }, z.ZodTypeAny, "passthrough"> | undefined;
2784
+ customGasChainDetails?: Record<string, unknown> | undefined;
2785
+ keyGenId?: string | undefined;
2786
+ vaultName?: string | undefined;
2787
+ vaultSymbol?: string | undefined;
2788
+ isNativeIn?: boolean | undefined;
2789
+ }, unknown>, {
2790
+ purposeText: string;
2791
+ useCustomGas: boolean;
2792
+ chainId: number;
2793
+ amountHuman: string;
2794
+ underlyingAddress: string;
2795
+ vaultAddress: string;
2796
+ keyGen?: {
2797
+ pubkeyhex: string;
2798
+ keylist?: string[] | undefined;
2799
+ ClientKeys?: Record<string, string> | undefined;
2800
+ } | undefined;
2801
+ rpcUrl?: string | undefined;
2802
+ executorAddress?: string | undefined;
2803
+ chainDetail?: z.objectOutputType<{
2804
+ legacy: z.ZodOptional<z.ZodBoolean>;
2805
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2806
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2807
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2808
+ baseFee: z.ZodOptional<z.ZodNumber>;
2809
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2810
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2811
+ }, z.ZodTypeAny, "passthrough"> | undefined;
2812
+ customGasChainDetails?: Record<string, unknown> | undefined;
2813
+ keyGenId?: string | undefined;
2814
+ vaultName?: string | undefined;
2815
+ vaultSymbol?: string | undefined;
2816
+ isNativeIn?: boolean | undefined;
2817
+ }, unknown>;
2818
+ declare const mcpMorphoVaultWithdrawInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
2819
+ keyGenId: z.ZodOptional<z.ZodString>;
2820
+ keyGen: z.ZodOptional<z.ZodObject<{
2821
+ pubkeyhex: z.ZodString;
2822
+ keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2823
+ ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2824
+ }, "strip", z.ZodTypeAny, {
2825
+ pubkeyhex: string;
2826
+ keylist?: string[] | undefined;
2827
+ ClientKeys?: Record<string, string> | undefined;
2828
+ }, {
2829
+ pubkeyhex: string;
2830
+ keylist?: string[] | undefined;
2831
+ ClientKeys?: Record<string, string> | undefined;
2832
+ }>>;
2833
+ purposeText: z.ZodString;
2834
+ useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
2835
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
2836
+ rpcUrl: z.ZodOptional<z.ZodString>;
2837
+ executorAddress: z.ZodOptional<z.ZodString>;
2838
+ chainDetail: z.ZodOptional<z.ZodObject<{
2839
+ legacy: z.ZodOptional<z.ZodBoolean>;
2840
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2841
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2842
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2843
+ baseFee: z.ZodOptional<z.ZodNumber>;
2844
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2845
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2846
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
2847
+ legacy: z.ZodOptional<z.ZodBoolean>;
2848
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2849
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2850
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2851
+ baseFee: z.ZodOptional<z.ZodNumber>;
2852
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2853
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2854
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
2855
+ legacy: z.ZodOptional<z.ZodBoolean>;
2856
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2857
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2858
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2859
+ baseFee: z.ZodOptional<z.ZodNumber>;
2860
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2861
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2862
+ }, z.ZodTypeAny, "passthrough">>>;
2863
+ customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2864
+ } & {
2865
+ vaultAddress: z.ZodString;
2866
+ amountHuman: z.ZodString;
2867
+ vaultName: z.ZodOptional<z.ZodString>;
2868
+ vaultSymbol: z.ZodOptional<z.ZodString>;
2869
+ }, "strip", z.ZodTypeAny, {
2870
+ purposeText: string;
2871
+ useCustomGas: boolean;
2872
+ chainId: number;
2873
+ amountHuman: string;
2874
+ vaultAddress: string;
2875
+ keyGen?: {
2876
+ pubkeyhex: string;
2877
+ keylist?: string[] | undefined;
2878
+ ClientKeys?: Record<string, string> | undefined;
2879
+ } | undefined;
2880
+ rpcUrl?: string | undefined;
2881
+ executorAddress?: string | undefined;
2882
+ chainDetail?: z.objectOutputType<{
2883
+ legacy: z.ZodOptional<z.ZodBoolean>;
2884
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2885
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2886
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2887
+ baseFee: z.ZodOptional<z.ZodNumber>;
2888
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2889
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2890
+ }, z.ZodTypeAny, "passthrough"> | undefined;
2891
+ customGasChainDetails?: Record<string, unknown> | undefined;
2892
+ keyGenId?: string | undefined;
2893
+ vaultName?: string | undefined;
2894
+ vaultSymbol?: string | undefined;
2895
+ }, {
2896
+ purposeText: string;
2897
+ amountHuman: string;
2898
+ vaultAddress: string;
2899
+ keyGen?: {
2900
+ pubkeyhex: string;
2901
+ keylist?: string[] | undefined;
2902
+ ClientKeys?: Record<string, string> | undefined;
2903
+ } | undefined;
2904
+ useCustomGas?: unknown;
2905
+ chainId?: unknown;
2906
+ rpcUrl?: string | undefined;
2907
+ executorAddress?: string | undefined;
2908
+ chainDetail?: z.objectInputType<{
2909
+ legacy: z.ZodOptional<z.ZodBoolean>;
2910
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2911
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2912
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2913
+ baseFee: z.ZodOptional<z.ZodNumber>;
2914
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2915
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2916
+ }, z.ZodTypeAny, "passthrough"> | undefined;
2917
+ customGasChainDetails?: Record<string, unknown> | undefined;
2918
+ keyGenId?: string | undefined;
2919
+ vaultName?: string | undefined;
2920
+ vaultSymbol?: string | undefined;
2921
+ }>, {
2922
+ purposeText: string;
2923
+ useCustomGas: boolean;
2924
+ chainId: number;
2925
+ amountHuman: string;
2926
+ vaultAddress: string;
2927
+ keyGen?: {
2928
+ pubkeyhex: string;
2929
+ keylist?: string[] | undefined;
2930
+ ClientKeys?: Record<string, string> | undefined;
2931
+ } | undefined;
2932
+ rpcUrl?: string | undefined;
2933
+ executorAddress?: string | undefined;
2934
+ chainDetail?: z.objectOutputType<{
2935
+ legacy: z.ZodOptional<z.ZodBoolean>;
2936
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2937
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2938
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2939
+ baseFee: z.ZodOptional<z.ZodNumber>;
2940
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2941
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2942
+ }, z.ZodTypeAny, "passthrough"> | undefined;
2943
+ customGasChainDetails?: Record<string, unknown> | undefined;
2944
+ keyGenId?: string | undefined;
2945
+ vaultName?: string | undefined;
2946
+ vaultSymbol?: string | undefined;
2947
+ }, unknown>, {
2948
+ purposeText: string;
2949
+ useCustomGas: boolean;
2950
+ chainId: number;
2951
+ amountHuman: string;
2952
+ vaultAddress: string;
2953
+ keyGen?: {
2954
+ pubkeyhex: string;
2955
+ keylist?: string[] | undefined;
2956
+ ClientKeys?: Record<string, string> | undefined;
2957
+ } | undefined;
2958
+ rpcUrl?: string | undefined;
2959
+ executorAddress?: string | undefined;
2960
+ chainDetail?: z.objectOutputType<{
2961
+ legacy: z.ZodOptional<z.ZodBoolean>;
2962
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2963
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2964
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2965
+ baseFee: z.ZodOptional<z.ZodNumber>;
2966
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2967
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2968
+ }, z.ZodTypeAny, "passthrough"> | undefined;
2969
+ customGasChainDetails?: Record<string, unknown> | undefined;
2970
+ keyGenId?: string | undefined;
2971
+ vaultName?: string | undefined;
2972
+ vaultSymbol?: string | undefined;
2973
+ }, unknown>;
2974
+ declare const mcpMorphoBlueCollateralDepositInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
2975
+ keyGenId: z.ZodOptional<z.ZodString>;
2976
+ keyGen: z.ZodOptional<z.ZodObject<{
2977
+ pubkeyhex: z.ZodString;
2978
+ keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2979
+ ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2980
+ }, "strip", z.ZodTypeAny, {
2981
+ pubkeyhex: string;
2982
+ keylist?: string[] | undefined;
2983
+ ClientKeys?: Record<string, string> | undefined;
2984
+ }, {
2985
+ pubkeyhex: string;
2986
+ keylist?: string[] | undefined;
2987
+ ClientKeys?: Record<string, string> | undefined;
2988
+ }>>;
2989
+ purposeText: z.ZodString;
2990
+ useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
2991
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
2992
+ rpcUrl: z.ZodOptional<z.ZodString>;
2993
+ executorAddress: z.ZodOptional<z.ZodString>;
2994
+ chainDetail: z.ZodOptional<z.ZodObject<{
2995
+ legacy: z.ZodOptional<z.ZodBoolean>;
2996
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2997
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2998
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2999
+ baseFee: z.ZodOptional<z.ZodNumber>;
3000
+ priorityFee: z.ZodOptional<z.ZodNumber>;
3001
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
3002
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
3003
+ legacy: z.ZodOptional<z.ZodBoolean>;
3004
+ gasLimit: z.ZodOptional<z.ZodNumber>;
3005
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
3006
+ gasPrice: z.ZodOptional<z.ZodNumber>;
3007
+ baseFee: z.ZodOptional<z.ZodNumber>;
3008
+ priorityFee: z.ZodOptional<z.ZodNumber>;
3009
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
3010
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
3011
+ legacy: z.ZodOptional<z.ZodBoolean>;
3012
+ gasLimit: z.ZodOptional<z.ZodNumber>;
3013
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
3014
+ gasPrice: z.ZodOptional<z.ZodNumber>;
3015
+ baseFee: z.ZodOptional<z.ZodNumber>;
3016
+ priorityFee: z.ZodOptional<z.ZodNumber>;
3017
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
3018
+ }, z.ZodTypeAny, "passthrough">>>;
3019
+ customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3020
+ } & {
3021
+ marketId: z.ZodString;
3022
+ collateralToken: z.ZodString;
3023
+ amountHuman: z.ZodString;
3024
+ marketLabel: z.ZodOptional<z.ZodString>;
3025
+ isNativeIn: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
3026
+ }, "strip", z.ZodTypeAny, {
3027
+ purposeText: string;
3028
+ useCustomGas: boolean;
3029
+ chainId: number;
3030
+ amountHuman: string;
3031
+ collateralToken: string;
3032
+ marketId: string;
3033
+ keyGen?: {
3034
+ pubkeyhex: string;
3035
+ keylist?: string[] | undefined;
3036
+ ClientKeys?: Record<string, string> | undefined;
3037
+ } | undefined;
3038
+ rpcUrl?: string | undefined;
3039
+ executorAddress?: string | undefined;
3040
+ chainDetail?: z.objectOutputType<{
3041
+ legacy: z.ZodOptional<z.ZodBoolean>;
3042
+ gasLimit: z.ZodOptional<z.ZodNumber>;
3043
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
3044
+ gasPrice: z.ZodOptional<z.ZodNumber>;
3045
+ baseFee: z.ZodOptional<z.ZodNumber>;
3046
+ priorityFee: z.ZodOptional<z.ZodNumber>;
3047
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
3048
+ }, z.ZodTypeAny, "passthrough"> | undefined;
3049
+ customGasChainDetails?: Record<string, unknown> | undefined;
3050
+ keyGenId?: string | undefined;
3051
+ marketLabel?: string | undefined;
3052
+ isNativeIn?: boolean | undefined;
3053
+ }, {
3054
+ purposeText: string;
3055
+ amountHuman: string;
3056
+ collateralToken: string;
3057
+ marketId: string;
3058
+ keyGen?: {
3059
+ pubkeyhex: string;
3060
+ keylist?: string[] | undefined;
3061
+ ClientKeys?: Record<string, string> | undefined;
3062
+ } | undefined;
3063
+ useCustomGas?: unknown;
3064
+ chainId?: unknown;
3065
+ rpcUrl?: string | undefined;
3066
+ executorAddress?: string | undefined;
3067
+ chainDetail?: z.objectInputType<{
3068
+ legacy: z.ZodOptional<z.ZodBoolean>;
3069
+ gasLimit: z.ZodOptional<z.ZodNumber>;
3070
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
3071
+ gasPrice: z.ZodOptional<z.ZodNumber>;
3072
+ baseFee: z.ZodOptional<z.ZodNumber>;
3073
+ priorityFee: z.ZodOptional<z.ZodNumber>;
3074
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
3075
+ }, z.ZodTypeAny, "passthrough"> | undefined;
3076
+ customGasChainDetails?: Record<string, unknown> | undefined;
3077
+ keyGenId?: string | undefined;
3078
+ marketLabel?: string | undefined;
3079
+ isNativeIn?: unknown;
3080
+ }>, {
3081
+ purposeText: string;
3082
+ useCustomGas: boolean;
3083
+ chainId: number;
3084
+ amountHuman: string;
3085
+ collateralToken: string;
3086
+ marketId: string;
3087
+ keyGen?: {
3088
+ pubkeyhex: string;
3089
+ keylist?: string[] | undefined;
3090
+ ClientKeys?: Record<string, string> | undefined;
3091
+ } | undefined;
3092
+ rpcUrl?: string | undefined;
3093
+ executorAddress?: string | undefined;
3094
+ chainDetail?: z.objectOutputType<{
3095
+ legacy: z.ZodOptional<z.ZodBoolean>;
3096
+ gasLimit: z.ZodOptional<z.ZodNumber>;
3097
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
3098
+ gasPrice: z.ZodOptional<z.ZodNumber>;
3099
+ baseFee: z.ZodOptional<z.ZodNumber>;
3100
+ priorityFee: z.ZodOptional<z.ZodNumber>;
3101
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
3102
+ }, z.ZodTypeAny, "passthrough"> | undefined;
3103
+ customGasChainDetails?: Record<string, unknown> | undefined;
3104
+ keyGenId?: string | undefined;
3105
+ marketLabel?: string | undefined;
3106
+ isNativeIn?: boolean | undefined;
3107
+ }, unknown>, {
3108
+ purposeText: string;
3109
+ useCustomGas: boolean;
3110
+ chainId: number;
3111
+ amountHuman: string;
3112
+ collateralToken: string;
3113
+ marketId: string;
3114
+ keyGen?: {
3115
+ pubkeyhex: string;
3116
+ keylist?: string[] | undefined;
3117
+ ClientKeys?: Record<string, string> | undefined;
3118
+ } | undefined;
3119
+ rpcUrl?: string | undefined;
3120
+ executorAddress?: string | undefined;
3121
+ chainDetail?: z.objectOutputType<{
3122
+ legacy: z.ZodOptional<z.ZodBoolean>;
3123
+ gasLimit: z.ZodOptional<z.ZodNumber>;
3124
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
3125
+ gasPrice: z.ZodOptional<z.ZodNumber>;
3126
+ baseFee: z.ZodOptional<z.ZodNumber>;
3127
+ priorityFee: z.ZodOptional<z.ZodNumber>;
3128
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
3129
+ }, z.ZodTypeAny, "passthrough"> | undefined;
3130
+ customGasChainDetails?: Record<string, unknown> | undefined;
3131
+ keyGenId?: string | undefined;
3132
+ marketLabel?: string | undefined;
3133
+ isNativeIn?: boolean | undefined;
3134
+ }, unknown>;
3135
+ declare const mcpMorphoBlueBorrowInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
3136
+ keyGenId: z.ZodOptional<z.ZodString>;
3137
+ keyGen: z.ZodOptional<z.ZodObject<{
3138
+ pubkeyhex: z.ZodString;
3139
+ keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3140
+ ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3141
+ }, "strip", z.ZodTypeAny, {
3142
+ pubkeyhex: string;
3143
+ keylist?: string[] | undefined;
3144
+ ClientKeys?: Record<string, string> | undefined;
3145
+ }, {
3146
+ pubkeyhex: string;
3147
+ keylist?: string[] | undefined;
3148
+ ClientKeys?: Record<string, string> | undefined;
3149
+ }>>;
3150
+ purposeText: z.ZodString;
3151
+ useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
3152
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
3153
+ rpcUrl: z.ZodOptional<z.ZodString>;
3154
+ executorAddress: z.ZodOptional<z.ZodString>;
3155
+ chainDetail: z.ZodOptional<z.ZodObject<{
3156
+ legacy: z.ZodOptional<z.ZodBoolean>;
3157
+ gasLimit: z.ZodOptional<z.ZodNumber>;
3158
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
3159
+ gasPrice: z.ZodOptional<z.ZodNumber>;
3160
+ baseFee: z.ZodOptional<z.ZodNumber>;
3161
+ priorityFee: z.ZodOptional<z.ZodNumber>;
3162
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
3163
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
3164
+ legacy: z.ZodOptional<z.ZodBoolean>;
3165
+ gasLimit: z.ZodOptional<z.ZodNumber>;
3166
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
3167
+ gasPrice: z.ZodOptional<z.ZodNumber>;
3168
+ baseFee: z.ZodOptional<z.ZodNumber>;
3169
+ priorityFee: z.ZodOptional<z.ZodNumber>;
3170
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
3171
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
3172
+ legacy: z.ZodOptional<z.ZodBoolean>;
3173
+ gasLimit: z.ZodOptional<z.ZodNumber>;
3174
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
3175
+ gasPrice: z.ZodOptional<z.ZodNumber>;
3176
+ baseFee: z.ZodOptional<z.ZodNumber>;
3177
+ priorityFee: z.ZodOptional<z.ZodNumber>;
3178
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
3179
+ }, z.ZodTypeAny, "passthrough">>>;
3180
+ customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3181
+ } & {
3182
+ marketId: z.ZodString;
3183
+ loanToken: z.ZodString;
3184
+ amountHuman: z.ZodString;
3185
+ }, "strip", z.ZodTypeAny, {
3186
+ purposeText: string;
3187
+ useCustomGas: boolean;
3188
+ chainId: number;
3189
+ amountHuman: string;
3190
+ marketId: string;
3191
+ loanToken: string;
3192
+ keyGen?: {
3193
+ pubkeyhex: string;
3194
+ keylist?: string[] | undefined;
3195
+ ClientKeys?: Record<string, string> | undefined;
3196
+ } | undefined;
3197
+ rpcUrl?: string | undefined;
3198
+ executorAddress?: string | undefined;
3199
+ chainDetail?: z.objectOutputType<{
3200
+ legacy: z.ZodOptional<z.ZodBoolean>;
3201
+ gasLimit: z.ZodOptional<z.ZodNumber>;
3202
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
3203
+ gasPrice: z.ZodOptional<z.ZodNumber>;
3204
+ baseFee: z.ZodOptional<z.ZodNumber>;
3205
+ priorityFee: z.ZodOptional<z.ZodNumber>;
3206
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
3207
+ }, z.ZodTypeAny, "passthrough"> | undefined;
3208
+ customGasChainDetails?: Record<string, unknown> | undefined;
3209
+ keyGenId?: string | undefined;
3210
+ }, {
3211
+ purposeText: string;
3212
+ amountHuman: string;
3213
+ marketId: string;
3214
+ loanToken: string;
3215
+ keyGen?: {
3216
+ pubkeyhex: string;
3217
+ keylist?: string[] | undefined;
3218
+ ClientKeys?: Record<string, string> | undefined;
3219
+ } | undefined;
3220
+ useCustomGas?: unknown;
3221
+ chainId?: unknown;
3222
+ rpcUrl?: string | undefined;
3223
+ executorAddress?: string | undefined;
3224
+ chainDetail?: z.objectInputType<{
3225
+ legacy: z.ZodOptional<z.ZodBoolean>;
3226
+ gasLimit: z.ZodOptional<z.ZodNumber>;
3227
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
3228
+ gasPrice: z.ZodOptional<z.ZodNumber>;
3229
+ baseFee: z.ZodOptional<z.ZodNumber>;
3230
+ priorityFee: z.ZodOptional<z.ZodNumber>;
3231
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
3232
+ }, z.ZodTypeAny, "passthrough"> | undefined;
3233
+ customGasChainDetails?: Record<string, unknown> | undefined;
3234
+ keyGenId?: string | undefined;
3235
+ }>, {
3236
+ purposeText: string;
3237
+ useCustomGas: boolean;
3238
+ chainId: number;
3239
+ amountHuman: string;
3240
+ marketId: string;
3241
+ loanToken: string;
3242
+ keyGen?: {
3243
+ pubkeyhex: string;
3244
+ keylist?: string[] | undefined;
3245
+ ClientKeys?: Record<string, string> | undefined;
3246
+ } | undefined;
3247
+ rpcUrl?: string | undefined;
3248
+ executorAddress?: string | undefined;
3249
+ chainDetail?: z.objectOutputType<{
3250
+ legacy: z.ZodOptional<z.ZodBoolean>;
3251
+ gasLimit: z.ZodOptional<z.ZodNumber>;
3252
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
3253
+ gasPrice: z.ZodOptional<z.ZodNumber>;
3254
+ baseFee: z.ZodOptional<z.ZodNumber>;
3255
+ priorityFee: z.ZodOptional<z.ZodNumber>;
3256
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
3257
+ }, z.ZodTypeAny, "passthrough"> | undefined;
3258
+ customGasChainDetails?: Record<string, unknown> | undefined;
3259
+ keyGenId?: string | undefined;
3260
+ }, unknown>, {
3261
+ purposeText: string;
3262
+ useCustomGas: boolean;
3263
+ chainId: number;
3264
+ amountHuman: string;
3265
+ marketId: string;
3266
+ loanToken: string;
3267
+ keyGen?: {
3268
+ pubkeyhex: string;
3269
+ keylist?: string[] | undefined;
3270
+ ClientKeys?: Record<string, string> | undefined;
3271
+ } | undefined;
3272
+ rpcUrl?: string | undefined;
3273
+ executorAddress?: string | undefined;
3274
+ chainDetail?: z.objectOutputType<{
3275
+ legacy: z.ZodOptional<z.ZodBoolean>;
3276
+ gasLimit: z.ZodOptional<z.ZodNumber>;
3277
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
3278
+ gasPrice: z.ZodOptional<z.ZodNumber>;
3279
+ baseFee: z.ZodOptional<z.ZodNumber>;
3280
+ priorityFee: z.ZodOptional<z.ZodNumber>;
3281
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
3282
+ }, z.ZodTypeAny, "passthrough"> | undefined;
3283
+ customGasChainDetails?: Record<string, unknown> | undefined;
3284
+ keyGenId?: string | undefined;
3285
+ }, unknown>;
3286
+ declare const mcpMorphoBlueRepayInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
3287
+ keyGenId: z.ZodOptional<z.ZodString>;
3288
+ keyGen: z.ZodOptional<z.ZodObject<{
3289
+ pubkeyhex: z.ZodString;
3290
+ keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3291
+ ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3292
+ }, "strip", z.ZodTypeAny, {
3293
+ pubkeyhex: string;
3294
+ keylist?: string[] | undefined;
3295
+ ClientKeys?: Record<string, string> | undefined;
3296
+ }, {
3297
+ pubkeyhex: string;
3298
+ keylist?: string[] | undefined;
3299
+ ClientKeys?: Record<string, string> | undefined;
3300
+ }>>;
3301
+ purposeText: z.ZodString;
3302
+ useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
3303
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
3304
+ rpcUrl: z.ZodOptional<z.ZodString>;
3305
+ executorAddress: z.ZodOptional<z.ZodString>;
3306
+ chainDetail: z.ZodOptional<z.ZodObject<{
3307
+ legacy: z.ZodOptional<z.ZodBoolean>;
3308
+ gasLimit: z.ZodOptional<z.ZodNumber>;
3309
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
3310
+ gasPrice: z.ZodOptional<z.ZodNumber>;
3311
+ baseFee: z.ZodOptional<z.ZodNumber>;
3312
+ priorityFee: z.ZodOptional<z.ZodNumber>;
3313
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
3314
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
3315
+ legacy: z.ZodOptional<z.ZodBoolean>;
3316
+ gasLimit: z.ZodOptional<z.ZodNumber>;
3317
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
3318
+ gasPrice: z.ZodOptional<z.ZodNumber>;
3319
+ baseFee: z.ZodOptional<z.ZodNumber>;
3320
+ priorityFee: z.ZodOptional<z.ZodNumber>;
3321
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
3322
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
3323
+ legacy: z.ZodOptional<z.ZodBoolean>;
3324
+ gasLimit: z.ZodOptional<z.ZodNumber>;
3325
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
3326
+ gasPrice: z.ZodOptional<z.ZodNumber>;
3327
+ baseFee: z.ZodOptional<z.ZodNumber>;
3328
+ priorityFee: z.ZodOptional<z.ZodNumber>;
3329
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
3330
+ }, z.ZodTypeAny, "passthrough">>>;
3331
+ customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3332
+ } & {
3333
+ marketId: z.ZodString;
3334
+ loanToken: z.ZodString;
3335
+ amountHuman: z.ZodString;
2466
3336
  }, "strip", z.ZodTypeAny, {
2467
- [x: string]: any;
3337
+ purposeText: string;
3338
+ useCustomGas: boolean;
3339
+ chainId: number;
3340
+ amountHuman: string;
3341
+ marketId: string;
3342
+ loanToken: string;
3343
+ keyGen?: {
3344
+ pubkeyhex: string;
3345
+ keylist?: string[] | undefined;
3346
+ ClientKeys?: Record<string, string> | undefined;
3347
+ } | undefined;
3348
+ rpcUrl?: string | undefined;
3349
+ executorAddress?: string | undefined;
3350
+ chainDetail?: z.objectOutputType<{
3351
+ legacy: z.ZodOptional<z.ZodBoolean>;
3352
+ gasLimit: z.ZodOptional<z.ZodNumber>;
3353
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
3354
+ gasPrice: z.ZodOptional<z.ZodNumber>;
3355
+ baseFee: z.ZodOptional<z.ZodNumber>;
3356
+ priorityFee: z.ZodOptional<z.ZodNumber>;
3357
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
3358
+ }, z.ZodTypeAny, "passthrough"> | undefined;
3359
+ customGasChainDetails?: Record<string, unknown> | undefined;
3360
+ keyGenId?: string | undefined;
2468
3361
  }, {
2469
- [x: string]: any;
3362
+ purposeText: string;
3363
+ amountHuman: string;
3364
+ marketId: string;
3365
+ loanToken: string;
3366
+ keyGen?: {
3367
+ pubkeyhex: string;
3368
+ keylist?: string[] | undefined;
3369
+ ClientKeys?: Record<string, string> | undefined;
3370
+ } | undefined;
3371
+ useCustomGas?: unknown;
3372
+ chainId?: unknown;
3373
+ rpcUrl?: string | undefined;
3374
+ executorAddress?: string | undefined;
3375
+ chainDetail?: z.objectInputType<{
3376
+ legacy: z.ZodOptional<z.ZodBoolean>;
3377
+ gasLimit: z.ZodOptional<z.ZodNumber>;
3378
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
3379
+ gasPrice: z.ZodOptional<z.ZodNumber>;
3380
+ baseFee: z.ZodOptional<z.ZodNumber>;
3381
+ priorityFee: z.ZodOptional<z.ZodNumber>;
3382
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
3383
+ }, z.ZodTypeAny, "passthrough"> | undefined;
3384
+ customGasChainDetails?: Record<string, unknown> | undefined;
3385
+ keyGenId?: string | undefined;
2470
3386
  }>, {
2471
- [x: string]: any;
2472
- }, {
2473
- [x: string]: any;
2474
- }>;
3387
+ purposeText: string;
3388
+ useCustomGas: boolean;
3389
+ chainId: number;
3390
+ amountHuman: string;
3391
+ marketId: string;
3392
+ loanToken: string;
3393
+ keyGen?: {
3394
+ pubkeyhex: string;
3395
+ keylist?: string[] | undefined;
3396
+ ClientKeys?: Record<string, string> | undefined;
3397
+ } | undefined;
3398
+ rpcUrl?: string | undefined;
3399
+ executorAddress?: string | undefined;
3400
+ chainDetail?: z.objectOutputType<{
3401
+ legacy: z.ZodOptional<z.ZodBoolean>;
3402
+ gasLimit: z.ZodOptional<z.ZodNumber>;
3403
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
3404
+ gasPrice: z.ZodOptional<z.ZodNumber>;
3405
+ baseFee: z.ZodOptional<z.ZodNumber>;
3406
+ priorityFee: z.ZodOptional<z.ZodNumber>;
3407
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
3408
+ }, z.ZodTypeAny, "passthrough"> | undefined;
3409
+ customGasChainDetails?: Record<string, unknown> | undefined;
3410
+ keyGenId?: string | undefined;
3411
+ }, unknown>, {
3412
+ purposeText: string;
3413
+ useCustomGas: boolean;
3414
+ chainId: number;
3415
+ amountHuman: string;
3416
+ marketId: string;
3417
+ loanToken: string;
3418
+ keyGen?: {
3419
+ pubkeyhex: string;
3420
+ keylist?: string[] | undefined;
3421
+ ClientKeys?: Record<string, string> | undefined;
3422
+ } | undefined;
3423
+ rpcUrl?: string | undefined;
3424
+ executorAddress?: string | undefined;
3425
+ chainDetail?: z.objectOutputType<{
3426
+ legacy: z.ZodOptional<z.ZodBoolean>;
3427
+ gasLimit: z.ZodOptional<z.ZodNumber>;
3428
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
3429
+ gasPrice: z.ZodOptional<z.ZodNumber>;
3430
+ baseFee: z.ZodOptional<z.ZodNumber>;
3431
+ priorityFee: z.ZodOptional<z.ZodNumber>;
3432
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
3433
+ }, z.ZodTypeAny, "passthrough"> | undefined;
3434
+ customGasChainDetails?: Record<string, unknown> | undefined;
3435
+ keyGenId?: string | undefined;
3436
+ }, unknown>;
2475
3437
  declare const mcpMorphoBlueCollateralWithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
2476
3438
  [x: string]: z.ZodTypeAny;
2477
3439
  }, "strip", z.ZodTypeAny, {
@@ -2497,7 +3459,7 @@ declare const mcpMorphoMerklClaimInputSchema: z.ZodEffects<z.ZodObject<{} & {
2497
3459
  type McpMorphoVaultDepositInput = z.infer<typeof mcpMorphoVaultDepositInputSchema>;
2498
3460
 
2499
3461
  declare const mcpMorphoFetchEarnVaultsInputSchema: z.ZodObject<{
2500
- chainId: z.ZodNumber;
3462
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
2501
3463
  underlying: z.ZodOptional<z.ZodString>;
2502
3464
  query: z.ZodOptional<z.ZodString>;
2503
3465
  limit: z.ZodOptional<z.ZodNumber>;
@@ -2507,7 +3469,7 @@ declare const mcpMorphoFetchEarnVaultsInputSchema: z.ZodObject<{
2507
3469
  query?: string | undefined;
2508
3470
  limit?: number | undefined;
2509
3471
  }, {
2510
- chainId: number;
3472
+ chainId?: unknown;
2511
3473
  underlying?: string | undefined;
2512
3474
  query?: string | undefined;
2513
3475
  limit?: number | undefined;
@@ -2542,10 +3504,10 @@ declare const mcpMorphoFetchEarnVaultsOutputSchema: z.ZodObject<{
2542
3504
  allocationPercentLabel: string;
2543
3505
  }>, "many">;
2544
3506
  }, "strip", z.ZodTypeAny, {
2545
- vaultAddress: string;
2546
3507
  vaultName: string;
2547
- vaultSymbol: string;
2548
3508
  underlyingAddress: string;
3509
+ vaultAddress: string;
3510
+ vaultSymbol: string;
2549
3511
  underlyingSymbol: string;
2550
3512
  apy: string;
2551
3513
  netApy: string;
@@ -2562,10 +3524,10 @@ declare const mcpMorphoFetchEarnVaultsOutputSchema: z.ZodObject<{
2562
3524
  allocationPercentLabel: string;
2563
3525
  }[];
2564
3526
  }, {
2565
- vaultAddress: string;
2566
3527
  vaultName: string;
2567
- vaultSymbol: string;
2568
3528
  underlyingAddress: string;
3529
+ vaultAddress: string;
3530
+ vaultSymbol: string;
2569
3531
  underlyingSymbol: string;
2570
3532
  apy: string;
2571
3533
  netApy: string;
@@ -2584,10 +3546,10 @@ declare const mcpMorphoFetchEarnVaultsOutputSchema: z.ZodObject<{
2584
3546
  }>, "many">;
2585
3547
  }, "strip", z.ZodTypeAny, {
2586
3548
  vaults: {
2587
- vaultAddress: string;
2588
3549
  vaultName: string;
2589
- vaultSymbol: string;
2590
3550
  underlyingAddress: string;
3551
+ vaultAddress: string;
3552
+ vaultSymbol: string;
2591
3553
  underlyingSymbol: string;
2592
3554
  apy: string;
2593
3555
  netApy: string;
@@ -2606,10 +3568,10 @@ declare const mcpMorphoFetchEarnVaultsOutputSchema: z.ZodObject<{
2606
3568
  }[];
2607
3569
  }, {
2608
3570
  vaults: {
2609
- vaultAddress: string;
2610
3571
  vaultName: string;
2611
- vaultSymbol: string;
2612
3572
  underlyingAddress: string;
3573
+ vaultAddress: string;
3574
+ vaultSymbol: string;
2613
3575
  underlyingSymbol: string;
2614
3576
  apy: string;
2615
3577
  netApy: string;
@@ -2629,13 +3591,174 @@ declare const mcpMorphoFetchEarnVaultsOutputSchema: z.ZodObject<{
2629
3591
  }>;
2630
3592
  type McpMorphoFetchEarnVaultsInput = z.infer<typeof mcpMorphoFetchEarnVaultsInputSchema>;
2631
3593
  type McpMorphoFetchEarnVaultsOutput = z.infer<typeof mcpMorphoFetchEarnVaultsOutputSchema>;
3594
+ declare const mcpMorphoFetchBlueMarketsInputSchema: z.ZodObject<{
3595
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
3596
+ collateral: z.ZodOptional<z.ZodString>;
3597
+ loan: z.ZodOptional<z.ZodString>;
3598
+ query: z.ZodOptional<z.ZodString>;
3599
+ limit: z.ZodOptional<z.ZodNumber>;
3600
+ }, "strip", z.ZodTypeAny, {
3601
+ chainId: number;
3602
+ query?: string | undefined;
3603
+ limit?: number | undefined;
3604
+ collateral?: string | undefined;
3605
+ loan?: string | undefined;
3606
+ }, {
3607
+ chainId?: unknown;
3608
+ query?: string | undefined;
3609
+ limit?: number | undefined;
3610
+ collateral?: string | undefined;
3611
+ loan?: string | undefined;
3612
+ }>;
3613
+ declare const mcpMorphoFetchBlueMarketsOutputSchema: z.ZodObject<{
3614
+ markets: z.ZodArray<z.ZodObject<{
3615
+ marketId: z.ZodString;
3616
+ marketLabel: z.ZodString;
3617
+ morphoBlueAddress: z.ZodString;
3618
+ collateralTokenAddress: z.ZodString;
3619
+ collateralTokenSymbol: z.ZodString;
3620
+ collateralTokenDecimals: z.ZodNumber;
3621
+ loanTokenAddress: z.ZodString;
3622
+ loanTokenSymbol: z.ZodString;
3623
+ loanTokenDecimals: z.ZodNumber;
3624
+ borrowApyLabel: z.ZodString;
3625
+ supplyApyLabel: z.ZodString;
3626
+ }, "strip", z.ZodTypeAny, {
3627
+ collateralTokenAddress: string;
3628
+ marketId: string;
3629
+ marketLabel: string;
3630
+ loanTokenAddress: string;
3631
+ morphoBlueAddress: string;
3632
+ collateralTokenSymbol: string;
3633
+ collateralTokenDecimals: number;
3634
+ loanTokenSymbol: string;
3635
+ loanTokenDecimals: number;
3636
+ borrowApyLabel: string;
3637
+ supplyApyLabel: string;
3638
+ }, {
3639
+ collateralTokenAddress: string;
3640
+ marketId: string;
3641
+ marketLabel: string;
3642
+ loanTokenAddress: string;
3643
+ morphoBlueAddress: string;
3644
+ collateralTokenSymbol: string;
3645
+ collateralTokenDecimals: number;
3646
+ loanTokenSymbol: string;
3647
+ loanTokenDecimals: number;
3648
+ borrowApyLabel: string;
3649
+ supplyApyLabel: string;
3650
+ }>, "many">;
3651
+ }, "strip", z.ZodTypeAny, {
3652
+ markets: {
3653
+ collateralTokenAddress: string;
3654
+ marketId: string;
3655
+ marketLabel: string;
3656
+ loanTokenAddress: string;
3657
+ morphoBlueAddress: string;
3658
+ collateralTokenSymbol: string;
3659
+ collateralTokenDecimals: number;
3660
+ loanTokenSymbol: string;
3661
+ loanTokenDecimals: number;
3662
+ borrowApyLabel: string;
3663
+ supplyApyLabel: string;
3664
+ }[];
3665
+ }, {
3666
+ markets: {
3667
+ collateralTokenAddress: string;
3668
+ marketId: string;
3669
+ marketLabel: string;
3670
+ loanTokenAddress: string;
3671
+ morphoBlueAddress: string;
3672
+ collateralTokenSymbol: string;
3673
+ collateralTokenDecimals: number;
3674
+ loanTokenSymbol: string;
3675
+ loanTokenDecimals: number;
3676
+ borrowApyLabel: string;
3677
+ supplyApyLabel: string;
3678
+ }[];
3679
+ }>;
3680
+ type McpMorphoFetchBlueMarketsInput = z.infer<typeof mcpMorphoFetchBlueMarketsInputSchema>;
3681
+ type McpMorphoFetchBlueMarketsOutput = z.infer<typeof mcpMorphoFetchBlueMarketsOutputSchema>;
2632
3682
 
2633
- declare const mcpGmxFetchMarketsInputSchema: z.ZodObject<{
2634
- chainId: z.ZodNumber;
3683
+ declare const mcpEulerV2FetchLendVaultsInputSchema: z.ZodObject<{
3684
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
3685
+ underlyingAddress: z.ZodString;
3686
+ limit: z.ZodOptional<z.ZodNumber>;
2635
3687
  }, "strip", z.ZodTypeAny, {
2636
3688
  chainId: number;
3689
+ underlyingAddress: string;
3690
+ limit?: number | undefined;
3691
+ }, {
3692
+ underlyingAddress: string;
3693
+ chainId?: unknown;
3694
+ limit?: number | undefined;
3695
+ }>;
3696
+ declare const mcpEulerV2FetchLendVaultsOutputSchema: z.ZodObject<{
3697
+ vaults: z.ZodArray<z.ZodObject<{
3698
+ evaultAddress: z.ZodString;
3699
+ marketName: z.ZodString;
3700
+ underlyingAddress: z.ZodString;
3701
+ underlyingDecimals: z.ZodNumber;
3702
+ supplyApyPercentLabel: z.ZodString;
3703
+ borrowApyPercentLabel: z.ZodString;
3704
+ availableLiquidityFormatted: z.ZodString;
3705
+ totalSupplyFormatted: z.ZodString;
3706
+ evcAddress: z.ZodNullable<z.ZodString>;
3707
+ }, "strip", z.ZodTypeAny, {
3708
+ evaultAddress: string;
3709
+ underlyingAddress: string;
3710
+ marketName: string;
3711
+ underlyingDecimals: number;
3712
+ supplyApyPercentLabel: string;
3713
+ borrowApyPercentLabel: string;
3714
+ availableLiquidityFormatted: string;
3715
+ totalSupplyFormatted: string;
3716
+ evcAddress: string | null;
3717
+ }, {
3718
+ evaultAddress: string;
3719
+ underlyingAddress: string;
3720
+ marketName: string;
3721
+ underlyingDecimals: number;
3722
+ supplyApyPercentLabel: string;
3723
+ borrowApyPercentLabel: string;
3724
+ availableLiquidityFormatted: string;
3725
+ totalSupplyFormatted: string;
3726
+ evcAddress: string | null;
3727
+ }>, "many">;
3728
+ }, "strip", z.ZodTypeAny, {
3729
+ vaults: {
3730
+ evaultAddress: string;
3731
+ underlyingAddress: string;
3732
+ marketName: string;
3733
+ underlyingDecimals: number;
3734
+ supplyApyPercentLabel: string;
3735
+ borrowApyPercentLabel: string;
3736
+ availableLiquidityFormatted: string;
3737
+ totalSupplyFormatted: string;
3738
+ evcAddress: string | null;
3739
+ }[];
2637
3740
  }, {
3741
+ vaults: {
3742
+ evaultAddress: string;
3743
+ underlyingAddress: string;
3744
+ marketName: string;
3745
+ underlyingDecimals: number;
3746
+ supplyApyPercentLabel: string;
3747
+ borrowApyPercentLabel: string;
3748
+ availableLiquidityFormatted: string;
3749
+ totalSupplyFormatted: string;
3750
+ evcAddress: string | null;
3751
+ }[];
3752
+ }>;
3753
+ type McpEulerV2FetchLendVaultsInput = z.infer<typeof mcpEulerV2FetchLendVaultsInputSchema>;
3754
+ type McpEulerV2FetchLendVaultsOutput = z.infer<typeof mcpEulerV2FetchLendVaultsOutputSchema>;
3755
+
3756
+ declare const mcpGmxFetchMarketsInputSchema: z.ZodObject<{
3757
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
3758
+ }, "strip", z.ZodTypeAny, {
2638
3759
  chainId: number;
3760
+ }, {
3761
+ chainId?: unknown;
2639
3762
  }>;
2640
3763
  declare const mcpGmxFetchMarketsOutputSchema: z.ZodObject<{
2641
3764
  markets: z.ZodArray<z.ZodObject<{
@@ -2665,21 +3788,134 @@ declare const mcpGmxFetchMarketsOutputSchema: z.ZodObject<{
2665
3788
  }[];
2666
3789
  }>;
2667
3790
  declare const mcpGmxFetchPositionsInputSchema: z.ZodObject<{
2668
- chainId: z.ZodNumber;
3791
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
2669
3792
  executorAddress: z.ZodString;
2670
3793
  }, "strip", z.ZodTypeAny, {
2671
3794
  chainId: number;
2672
3795
  executorAddress: string;
2673
3796
  }, {
2674
- chainId: number;
2675
3797
  executorAddress: string;
3798
+ chainId?: unknown;
2676
3799
  }>;
3800
+ /** Agent-facing position rows (symbol matches ctm_gmx_fetch_markets for build_decrease). */
2677
3801
  declare const mcpGmxFetchPositionsOutputSchema: z.ZodObject<{
2678
- positions: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
3802
+ positions: z.ZodArray<z.ZodObject<{
3803
+ key: z.ZodString;
3804
+ symbol: z.ZodNullable<z.ZodString>;
3805
+ indexName: z.ZodString;
3806
+ isLong: z.ZodBoolean;
3807
+ direction: z.ZodEnum<["long", "short"]>;
3808
+ sizeUsd: z.ZodNullable<z.ZodString>;
3809
+ collateralUsd: z.ZodNullable<z.ZodString>;
3810
+ collateralSymbol: z.ZodNullable<z.ZodString>;
3811
+ entryPriceUsd: z.ZodNullable<z.ZodString>;
3812
+ markPriceUsd: z.ZodNullable<z.ZodString>;
3813
+ liquidationPriceUsd: z.ZodNullable<z.ZodString>;
3814
+ leverageLabel: z.ZodNullable<z.ZodString>;
3815
+ pnlUsd: z.ZodNullable<z.ZodString>;
3816
+ }, "strip", z.ZodTypeAny, {
3817
+ symbol: string | null;
3818
+ key: string;
3819
+ direction: "long" | "short";
3820
+ isLong: boolean;
3821
+ indexName: string;
3822
+ sizeUsd: string | null;
3823
+ collateralSymbol: string | null;
3824
+ collateralUsd: string | null;
3825
+ entryPriceUsd: string | null;
3826
+ markPriceUsd: string | null;
3827
+ liquidationPriceUsd: string | null;
3828
+ leverageLabel: string | null;
3829
+ pnlUsd: string | null;
3830
+ }, {
3831
+ symbol: string | null;
3832
+ key: string;
3833
+ direction: "long" | "short";
3834
+ isLong: boolean;
3835
+ indexName: string;
3836
+ sizeUsd: string | null;
3837
+ collateralSymbol: string | null;
3838
+ collateralUsd: string | null;
3839
+ entryPriceUsd: string | null;
3840
+ markPriceUsd: string | null;
3841
+ liquidationPriceUsd: string | null;
3842
+ leverageLabel: string | null;
3843
+ pnlUsd: string | null;
3844
+ }>, "many">;
3845
+ }, "strip", z.ZodTypeAny, {
3846
+ positions: {
3847
+ symbol: string | null;
3848
+ key: string;
3849
+ direction: "long" | "short";
3850
+ isLong: boolean;
3851
+ indexName: string;
3852
+ sizeUsd: string | null;
3853
+ collateralSymbol: string | null;
3854
+ collateralUsd: string | null;
3855
+ entryPriceUsd: string | null;
3856
+ markPriceUsd: string | null;
3857
+ liquidationPriceUsd: string | null;
3858
+ leverageLabel: string | null;
3859
+ pnlUsd: string | null;
3860
+ }[];
3861
+ }, {
3862
+ positions: {
3863
+ symbol: string | null;
3864
+ key: string;
3865
+ direction: "long" | "short";
3866
+ isLong: boolean;
3867
+ indexName: string;
3868
+ sizeUsd: string | null;
3869
+ collateralSymbol: string | null;
3870
+ collateralUsd: string | null;
3871
+ entryPriceUsd: string | null;
3872
+ markPriceUsd: string | null;
3873
+ liquidationPriceUsd: string | null;
3874
+ leverageLabel: string | null;
3875
+ pnlUsd: string | null;
3876
+ }[];
3877
+ }>;
3878
+ declare const mcpGmxFetchOrdersInputSchema: z.ZodObject<{
3879
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
3880
+ executorAddress: z.ZodString;
2679
3881
  }, "strip", z.ZodTypeAny, {
2680
- positions: Record<string, unknown>[];
3882
+ chainId: number;
3883
+ executorAddress: string;
3884
+ }, {
3885
+ executorAddress: string;
3886
+ chainId?: unknown;
3887
+ }>;
3888
+ declare const mcpGmxFetchOrdersOutputSchema: z.ZodObject<{
3889
+ orders: z.ZodArray<z.ZodObject<{
3890
+ orderId: z.ZodString;
3891
+ isLong: z.ZodOptional<z.ZodBoolean>;
3892
+ sizeDeltaUsd: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3893
+ triggerPrice: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3894
+ }, "strip", z.ZodTypeAny, {
3895
+ orderId: string;
3896
+ isLong?: boolean | undefined;
3897
+ sizeDeltaUsd?: string | null | undefined;
3898
+ triggerPrice?: string | null | undefined;
3899
+ }, {
3900
+ orderId: string;
3901
+ isLong?: boolean | undefined;
3902
+ sizeDeltaUsd?: string | null | undefined;
3903
+ triggerPrice?: string | null | undefined;
3904
+ }>, "many">;
3905
+ }, "strip", z.ZodTypeAny, {
3906
+ orders: {
3907
+ orderId: string;
3908
+ isLong?: boolean | undefined;
3909
+ sizeDeltaUsd?: string | null | undefined;
3910
+ triggerPrice?: string | null | undefined;
3911
+ }[];
2681
3912
  }, {
2682
- positions: Record<string, unknown>[];
3913
+ orders: {
3914
+ orderId: string;
3915
+ isLong?: boolean | undefined;
3916
+ sizeDeltaUsd?: string | null | undefined;
3917
+ triggerPrice?: string | null | undefined;
3918
+ }[];
2683
3919
  }>;
2684
3920
  declare const mcpGmxIncreaseInputSchema: z.ZodEffects<z.ZodObject<{} & {
2685
3921
  [x: string]: z.ZodTypeAny;
@@ -2687,45 +3923,75 @@ declare const mcpGmxIncreaseInputSchema: z.ZodEffects<z.ZodObject<{} & {
2687
3923
  [x: string]: any;
2688
3924
  }, {
2689
3925
  [x: string]: any;
2690
- }>, {
3926
+ }> | z.ZodEffects<z.ZodObject<{} & {
3927
+ [x: string]: z.ZodTypeAny;
3928
+ }, "strip", z.ZodTypeAny, {
2691
3929
  [x: string]: any;
2692
3930
  }, {
2693
3931
  [x: string]: any;
2694
- }>;
3932
+ }>, {
3933
+ [x: string]: any;
3934
+ }, unknown>, {
3935
+ [x: string]: any;
3936
+ }, unknown>;
2695
3937
  declare const mcpGmxDecreaseInputSchema: z.ZodEffects<z.ZodObject<{} & {
2696
3938
  [x: string]: z.ZodTypeAny;
2697
3939
  }, "strip", z.ZodTypeAny, {
2698
3940
  [x: string]: any;
2699
3941
  }, {
2700
3942
  [x: string]: any;
2701
- }>, {
3943
+ }> | z.ZodEffects<z.ZodObject<{} & {
3944
+ [x: string]: z.ZodTypeAny;
3945
+ }, "strip", z.ZodTypeAny, {
2702
3946
  [x: string]: any;
2703
3947
  }, {
2704
3948
  [x: string]: any;
2705
- }>;
3949
+ }>, {
3950
+ [x: string]: any;
3951
+ }, unknown>, {
3952
+ [x: string]: any;
3953
+ }, unknown>;
2706
3954
  declare const mcpGmxCancelInputSchema: z.ZodEffects<z.ZodObject<{} & {
2707
3955
  [x: string]: z.ZodTypeAny;
2708
3956
  }, "strip", z.ZodTypeAny, {
2709
3957
  [x: string]: any;
2710
3958
  }, {
2711
3959
  [x: string]: any;
3960
+ }> | z.ZodEffects<z.ZodObject<{} & {
3961
+ [x: string]: z.ZodTypeAny;
3962
+ }, "strip", z.ZodTypeAny, {
3963
+ [x: string]: any;
3964
+ }, {
3965
+ [x: string]: any;
3966
+ }>, {
3967
+ [x: string]: any;
3968
+ }, unknown>, {
3969
+ [x: string]: any;
3970
+ }, unknown>;
3971
+ declare const mcpGmxGmDepositInputSchema: z.ZodEffects<z.ZodObject<{} & {
3972
+ [x: string]: z.ZodTypeAny;
3973
+ }, "strip", z.ZodTypeAny, {
3974
+ [x: string]: any;
3975
+ }, {
3976
+ [x: string]: any;
3977
+ }> | z.ZodEffects<z.ZodObject<{} & {
3978
+ [x: string]: z.ZodTypeAny;
3979
+ }, "strip", z.ZodTypeAny, {
3980
+ [x: string]: any;
3981
+ }, {
3982
+ [x: string]: any;
2712
3983
  }>, {
2713
3984
  [x: string]: any;
2714
- }, {
3985
+ }, unknown>, {
2715
3986
  [x: string]: any;
2716
- }>;
2717
- declare const mcpGmxGmDepositInputSchema: z.ZodEffects<z.ZodObject<{} & {
3987
+ }, unknown>;
3988
+ declare const mcpGmxGmWithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
2718
3989
  [x: string]: z.ZodTypeAny;
2719
3990
  }, "strip", z.ZodTypeAny, {
2720
3991
  [x: string]: any;
2721
3992
  }, {
2722
3993
  [x: string]: any;
2723
- }>, {
2724
- [x: string]: any;
2725
- }, {
2726
- [x: string]: any;
2727
- }>;
2728
- declare const mcpGmxGmWithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
3994
+ }> | z.ZodEffects<z.ZodObject<{} & {
2729
3995
  [x: string]: z.ZodTypeAny;
2730
3996
  }, "strip", z.ZodTypeAny, {
2731
3997
  [x: string]: any;
@@ -2733,37 +3999,49 @@ declare const mcpGmxGmWithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
2733
3999
  [x: string]: any;
2734
4000
  }>, {
2735
4001
  [x: string]: any;
2736
- }, {
4002
+ }, unknown>, {
2737
4003
  [x: string]: any;
2738
- }>;
4004
+ }, unknown>;
2739
4005
  declare const mcpGmxStakeGmxInputSchema: z.ZodEffects<z.ZodObject<{} & {
2740
4006
  [x: string]: z.ZodTypeAny;
2741
4007
  }, "strip", z.ZodTypeAny, {
2742
4008
  [x: string]: any;
2743
4009
  }, {
2744
4010
  [x: string]: any;
2745
- }>, {
4011
+ }> | z.ZodEffects<z.ZodObject<{} & {
4012
+ [x: string]: z.ZodTypeAny;
4013
+ }, "strip", z.ZodTypeAny, {
2746
4014
  [x: string]: any;
2747
4015
  }, {
2748
4016
  [x: string]: any;
2749
- }>;
4017
+ }>, {
4018
+ [x: string]: any;
4019
+ }, unknown>, {
4020
+ [x: string]: any;
4021
+ }, unknown>;
2750
4022
  declare const mcpGmxUnstakeGmxInputSchema: z.ZodEffects<z.ZodObject<{} & {
2751
4023
  [x: string]: z.ZodTypeAny;
2752
4024
  }, "strip", z.ZodTypeAny, {
2753
4025
  [x: string]: any;
2754
4026
  }, {
2755
4027
  [x: string]: any;
2756
- }>, {
4028
+ }> | z.ZodEffects<z.ZodObject<{} & {
4029
+ [x: string]: z.ZodTypeAny;
4030
+ }, "strip", z.ZodTypeAny, {
2757
4031
  [x: string]: any;
2758
4032
  }, {
2759
4033
  [x: string]: any;
2760
- }>;
4034
+ }>, {
4035
+ [x: string]: any;
4036
+ }, unknown>, {
4037
+ [x: string]: any;
4038
+ }, unknown>;
2761
4039
  declare const mcpGmxFetchGmMarketsInputSchema: z.ZodObject<{
2762
- chainId: z.ZodNumber;
4040
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
2763
4041
  }, "strip", z.ZodTypeAny, {
2764
4042
  chainId: number;
2765
4043
  }, {
2766
- chainId: number;
4044
+ chainId?: unknown;
2767
4045
  }>;
2768
4046
  declare const mcpGmxFetchGmMarketsOutputSchema: z.ZodObject<{
2769
4047
  markets: z.ZodArray<z.ZodObject<{
@@ -2818,11 +4096,11 @@ declare const mcpGmxFetchGmMarketsOutputSchema: z.ZodObject<{
2818
4096
  }[];
2819
4097
  }>;
2820
4098
  declare const mcpGmxFetchGmApyInputSchema: z.ZodObject<{
2821
- chainId: z.ZodNumber;
4099
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
2822
4100
  }, "strip", z.ZodTypeAny, {
2823
4101
  chainId: number;
2824
4102
  }, {
2825
- chainId: number;
4103
+ chainId?: unknown;
2826
4104
  }>;
2827
4105
  declare const mcpGmxFetchGmApyOutputSchema: z.ZodObject<{
2828
4106
  markets: z.ZodArray<z.ZodObject<{
@@ -2877,14 +4155,14 @@ declare const mcpGmxFetchGmApyOutputSchema: z.ZodObject<{
2877
4155
  }[];
2878
4156
  }>;
2879
4157
  declare const mcpGmxFetchStakingPowerInputSchema: z.ZodObject<{
2880
- chainId: z.ZodNumber;
4158
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
2881
4159
  executorAddress: z.ZodString;
2882
4160
  }, "strip", z.ZodTypeAny, {
2883
4161
  chainId: number;
2884
4162
  executorAddress: string;
2885
4163
  }, {
2886
- chainId: number;
2887
4164
  executorAddress: string;
4165
+ chainId?: unknown;
2888
4166
  }>;
2889
4167
  declare const mcpGmxFetchStakingPowerOutputSchema: z.ZodObject<{
2890
4168
  stakingPower: z.ZodRecord<z.ZodString, z.ZodUnknown>;
@@ -2894,7 +4172,7 @@ declare const mcpGmxFetchStakingPowerOutputSchema: z.ZodObject<{
2894
4172
  stakingPower: Record<string, unknown>;
2895
4173
  }>;
2896
4174
  declare const mcpGmxFetchMarketPricesInputSchema: z.ZodObject<{
2897
- chainId: z.ZodNumber;
4175
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
2898
4176
  symbol: z.ZodString;
2899
4177
  collateralSymbol: z.ZodString;
2900
4178
  }, "strip", z.ZodTypeAny, {
@@ -2903,8 +4181,8 @@ declare const mcpGmxFetchMarketPricesInputSchema: z.ZodObject<{
2903
4181
  collateralSymbol: string;
2904
4182
  }, {
2905
4183
  symbol: string;
2906
- chainId: number;
2907
4184
  collateralSymbol: string;
4185
+ chainId?: unknown;
2908
4186
  }>;
2909
4187
  declare const mcpGmxFetchMarketPricesOutputSchema: z.ZodObject<{
2910
4188
  symbol: z.ZodString;
@@ -2917,22 +4195,22 @@ declare const mcpGmxFetchMarketPricesOutputSchema: z.ZodObject<{
2917
4195
  }, "strip", z.ZodTypeAny, {
2918
4196
  symbol: string;
2919
4197
  collateralSymbol: string;
4198
+ collateralUsd: string | null;
2920
4199
  indexLabel: string;
2921
4200
  indexMarkUsd: string | null;
2922
- collateralUsd: string | null;
2923
4201
  indexPerCollateral: string | null;
2924
4202
  fetchedAtMs: number;
2925
4203
  }, {
2926
4204
  symbol: string;
2927
4205
  collateralSymbol: string;
4206
+ collateralUsd: string | null;
2928
4207
  indexLabel: string;
2929
4208
  indexMarkUsd: string | null;
2930
- collateralUsd: string | null;
2931
4209
  indexPerCollateral: string | null;
2932
4210
  fetchedAtMs: number;
2933
4211
  }>;
2934
4212
  declare const mcpGmxFetchOhlcvInputSchema: z.ZodObject<{
2935
- chainId: z.ZodNumber;
4213
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
2936
4214
  symbol: z.ZodString;
2937
4215
  timeframe: z.ZodOptional<z.ZodEnum<["1m", "5m", "15m", "1h", "4h", "1d", "1w", "1M"]>>;
2938
4216
  limit: z.ZodOptional<z.ZodNumber>;
@@ -2945,7 +4223,7 @@ declare const mcpGmxFetchOhlcvInputSchema: z.ZodObject<{
2945
4223
  timeframe?: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | undefined;
2946
4224
  }, {
2947
4225
  symbol: string;
2948
- chainId: number;
4226
+ chainId?: unknown;
2949
4227
  sort?: "asc" | "desc" | undefined;
2950
4228
  limit?: number | undefined;
2951
4229
  timeframe?: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | undefined;
@@ -3000,13 +4278,14 @@ declare const mcpGmxFetchOhlcvOutputSchema: z.ZodObject<{
3000
4278
  }>;
3001
4279
 
3002
4280
  declare const mcpHyperliquidFetchMarketsInputSchema: z.ZodObject<{
3003
- chainId: z.ZodNumber;
4281
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
4282
+ } & {
3004
4283
  dex: z.ZodOptional<z.ZodString>;
3005
4284
  }, "strip", z.ZodTypeAny, {
3006
4285
  chainId: number;
3007
4286
  dex?: string | undefined;
3008
4287
  }, {
3009
- chainId: number;
4288
+ chainId?: unknown;
3010
4289
  dex?: string | undefined;
3011
4290
  }>;
3012
4291
  declare const mcpHyperliquidFetchMarketsOutputSchema: z.ZodObject<{
@@ -3070,7 +4349,8 @@ declare const mcpHyperliquidFetchMarketsOutputSchema: z.ZodObject<{
3070
4349
  }[];
3071
4350
  }>;
3072
4351
  declare const mcpHyperliquidSearchMarketsInputSchema: z.ZodObject<{
3073
- chainId: z.ZodNumber;
4352
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
4353
+ } & {
3074
4354
  query: z.ZodString;
3075
4355
  dex: z.ZodOptional<z.ZodString>;
3076
4356
  limit: z.ZodOptional<z.ZodNumber>;
@@ -3080,8 +4360,8 @@ declare const mcpHyperliquidSearchMarketsInputSchema: z.ZodObject<{
3080
4360
  limit?: number | undefined;
3081
4361
  dex?: string | undefined;
3082
4362
  }, {
3083
- chainId: number;
3084
4363
  query: string;
4364
+ chainId?: unknown;
3085
4365
  limit?: number | undefined;
3086
4366
  dex?: string | undefined;
3087
4367
  }>;
@@ -3101,8 +4381,8 @@ declare const mcpHyperliquidSearchMarketsOutputSchema: z.ZodObject<{
3101
4381
  matchReason: z.ZodString;
3102
4382
  }, "strip", z.ZodTypeAny, {
3103
4383
  symbol: string;
3104
- asset: number;
3105
4384
  coin: string;
4385
+ asset: number;
3106
4386
  maxLeverage: number;
3107
4387
  szDecimals: number;
3108
4388
  matchScore: number;
@@ -3114,8 +4394,8 @@ declare const mcpHyperliquidSearchMarketsOutputSchema: z.ZodObject<{
3114
4394
  keywords?: string[] | undefined;
3115
4395
  }, {
3116
4396
  symbol: string;
3117
- asset: number;
3118
4397
  coin: string;
4398
+ asset: number;
3119
4399
  maxLeverage: number;
3120
4400
  szDecimals: number;
3121
4401
  matchScore: number;
@@ -3129,8 +4409,8 @@ declare const mcpHyperliquidSearchMarketsOutputSchema: z.ZodObject<{
3129
4409
  }, "strip", z.ZodTypeAny, {
3130
4410
  matches: {
3131
4411
  symbol: string;
3132
- asset: number;
3133
4412
  coin: string;
4413
+ asset: number;
3134
4414
  maxLeverage: number;
3135
4415
  szDecimals: number;
3136
4416
  matchScore: number;
@@ -3144,8 +4424,8 @@ declare const mcpHyperliquidSearchMarketsOutputSchema: z.ZodObject<{
3144
4424
  }, {
3145
4425
  matches: {
3146
4426
  symbol: string;
3147
- asset: number;
3148
4427
  coin: string;
4428
+ asset: number;
3149
4429
  maxLeverage: number;
3150
4430
  szDecimals: number;
3151
4431
  matchScore: number;
@@ -3158,7 +4438,8 @@ declare const mcpHyperliquidSearchMarketsOutputSchema: z.ZodObject<{
3158
4438
  }[];
3159
4439
  }>;
3160
4440
  declare const mcpHyperliquidFetchOpenContextInputSchema: z.ZodObject<{
3161
- chainId: z.ZodNumber;
4441
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
4442
+ } & {
3162
4443
  executorAddress: z.ZodString;
3163
4444
  coin: z.ZodString;
3164
4445
  dex: z.ZodOptional<z.ZodString>;
@@ -3168,9 +4449,9 @@ declare const mcpHyperliquidFetchOpenContextInputSchema: z.ZodObject<{
3168
4449
  coin: string;
3169
4450
  dex?: string | undefined;
3170
4451
  }, {
3171
- chainId: number;
3172
4452
  executorAddress: string;
3173
4453
  coin: string;
4454
+ chainId?: unknown;
3174
4455
  dex?: string | undefined;
3175
4456
  }>;
3176
4457
  declare const mcpHyperliquidFetchOpenContextOutputSchema: z.ZodObject<{
@@ -3194,13 +4475,13 @@ declare const mcpHyperliquidFetchOpenContextOutputSchema: z.ZodObject<{
3194
4475
  availableToBuy: z.ZodNullable<z.ZodString>;
3195
4476
  availableToSell: z.ZodNullable<z.ZodString>;
3196
4477
  }, "strip", z.ZodTypeAny, {
3197
- leverageLabel: string | null;
3198
4478
  markPx: string | null;
4479
+ leverageLabel: string | null;
3199
4480
  availableToBuy: string | null;
3200
4481
  availableToSell: string | null;
3201
4482
  }, {
3202
- leverageLabel: string | null;
3203
4483
  markPx: string | null;
4484
+ leverageLabel: string | null;
3204
4485
  availableToBuy: string | null;
3205
4486
  availableToSell: string | null;
3206
4487
  }>;
@@ -3211,8 +4492,8 @@ declare const mcpHyperliquidFetchOpenContextOutputSchema: z.ZodObject<{
3211
4492
  withdrawableUsd: string | null;
3212
4493
  };
3213
4494
  activeAsset: {
3214
- leverageLabel: string | null;
3215
4495
  markPx: string | null;
4496
+ leverageLabel: string | null;
3216
4497
  availableToBuy: string | null;
3217
4498
  availableToSell: string | null;
3218
4499
  };
@@ -3223,8 +4504,8 @@ declare const mcpHyperliquidFetchOpenContextOutputSchema: z.ZodObject<{
3223
4504
  withdrawableUsd: string | null;
3224
4505
  };
3225
4506
  activeAsset: {
3226
- leverageLabel: string | null;
3227
4507
  markPx: string | null;
4508
+ leverageLabel: string | null;
3228
4509
  availableToBuy: string | null;
3229
4510
  availableToSell: string | null;
3230
4511
  };
@@ -3237,8 +4518,8 @@ declare const mcpHyperliquidFetchOpenContextOutputSchema: z.ZodObject<{
3237
4518
  withdrawableUsd: string | null;
3238
4519
  };
3239
4520
  activeAsset: {
3240
- leverageLabel: string | null;
3241
4521
  markPx: string | null;
4522
+ leverageLabel: string | null;
3242
4523
  availableToBuy: string | null;
3243
4524
  availableToSell: string | null;
3244
4525
  };
@@ -3251,15 +4532,16 @@ declare const mcpHyperliquidFetchOpenContextOutputSchema: z.ZodObject<{
3251
4532
  withdrawableUsd: string | null;
3252
4533
  };
3253
4534
  activeAsset: {
3254
- leverageLabel: string | null;
3255
4535
  markPx: string | null;
4536
+ leverageLabel: string | null;
3256
4537
  availableToBuy: string | null;
3257
4538
  availableToSell: string | null;
3258
4539
  };
3259
4540
  };
3260
4541
  }>;
3261
4542
  declare const mcpHyperliquidFetchPositionsInputSchema: z.ZodObject<{
3262
- chainId: z.ZodNumber;
4543
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
4544
+ } & {
3263
4545
  executorAddress: z.ZodString;
3264
4546
  dex: z.ZodOptional<z.ZodString>;
3265
4547
  }, "strip", z.ZodTypeAny, {
@@ -3267,8 +4549,8 @@ declare const mcpHyperliquidFetchPositionsInputSchema: z.ZodObject<{
3267
4549
  executorAddress: string;
3268
4550
  dex?: string | undefined;
3269
4551
  }, {
3270
- chainId: number;
3271
4552
  executorAddress: string;
4553
+ chainId?: unknown;
3272
4554
  dex?: string | undefined;
3273
4555
  }>;
3274
4556
  declare const mcpHyperliquidFetchPositionsOutputSchema: z.ZodObject<{
@@ -3288,26 +4570,26 @@ declare const mcpHyperliquidFetchPositionsOutputSchema: z.ZodObject<{
3288
4570
  }, "strip", z.ZodTypeAny, {
3289
4571
  key: string;
3290
4572
  size: string | null;
3291
- coin: string;
3292
4573
  isLong: boolean;
4574
+ coin: string;
4575
+ leverageLabel: string | null;
3293
4576
  entryPx: string | null;
3294
4577
  positionValueUsd: string | null;
3295
4578
  unrealizedPnlUsd: string | null;
3296
4579
  liquidationPx: string | null;
3297
- leverageLabel: string | null;
3298
4580
  maxLeverage: number | null;
3299
4581
  marginUsedUsd: string | null;
3300
4582
  returnOnEquity: string | null;
3301
4583
  }, {
3302
4584
  key: string;
3303
4585
  size: string | null;
3304
- coin: string;
3305
4586
  isLong: boolean;
4587
+ coin: string;
4588
+ leverageLabel: string | null;
3306
4589
  entryPx: string | null;
3307
4590
  positionValueUsd: string | null;
3308
4591
  unrealizedPnlUsd: string | null;
3309
4592
  liquidationPx: string | null;
3310
- leverageLabel: string | null;
3311
4593
  maxLeverage: number | null;
3312
4594
  marginUsedUsd: string | null;
3313
4595
  returnOnEquity: string | null;
@@ -3316,13 +4598,13 @@ declare const mcpHyperliquidFetchPositionsOutputSchema: z.ZodObject<{
3316
4598
  positions: {
3317
4599
  key: string;
3318
4600
  size: string | null;
3319
- coin: string;
3320
4601
  isLong: boolean;
4602
+ coin: string;
4603
+ leverageLabel: string | null;
3321
4604
  entryPx: string | null;
3322
4605
  positionValueUsd: string | null;
3323
4606
  unrealizedPnlUsd: string | null;
3324
4607
  liquidationPx: string | null;
3325
- leverageLabel: string | null;
3326
4608
  maxLeverage: number | null;
3327
4609
  marginUsedUsd: string | null;
3328
4610
  returnOnEquity: string | null;
@@ -3331,20 +4613,21 @@ declare const mcpHyperliquidFetchPositionsOutputSchema: z.ZodObject<{
3331
4613
  positions: {
3332
4614
  key: string;
3333
4615
  size: string | null;
3334
- coin: string;
3335
4616
  isLong: boolean;
4617
+ coin: string;
4618
+ leverageLabel: string | null;
3336
4619
  entryPx: string | null;
3337
4620
  positionValueUsd: string | null;
3338
4621
  unrealizedPnlUsd: string | null;
3339
4622
  liquidationPx: string | null;
3340
- leverageLabel: string | null;
3341
4623
  maxLeverage: number | null;
3342
4624
  marginUsedUsd: string | null;
3343
4625
  returnOnEquity: string | null;
3344
4626
  }[];
3345
4627
  }>;
3346
4628
  declare const mcpHyperliquidFetchOpenOrdersInputSchema: z.ZodObject<{
3347
- chainId: z.ZodNumber;
4629
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
4630
+ } & {
3348
4631
  executorAddress: z.ZodString;
3349
4632
  dex: z.ZodOptional<z.ZodString>;
3350
4633
  }, "strip", z.ZodTypeAny, {
@@ -3352,8 +4635,8 @@ declare const mcpHyperliquidFetchOpenOrdersInputSchema: z.ZodObject<{
3352
4635
  executorAddress: string;
3353
4636
  dex?: string | undefined;
3354
4637
  }, {
3355
- chainId: number;
3356
4638
  executorAddress: string;
4639
+ chainId?: unknown;
3357
4640
  dex?: string | undefined;
3358
4641
  }>;
3359
4642
  declare const mcpHyperliquidFetchOpenOrdersOutputSchema: z.ZodObject<{
@@ -3368,17 +4651,17 @@ declare const mcpHyperliquidFetchOpenOrdersOutputSchema: z.ZodObject<{
3368
4651
  }, "strip", z.ZodTypeAny, {
3369
4652
  timestamp: number;
3370
4653
  coin: string;
3371
- side: string;
3372
4654
  limitPx: string;
3373
4655
  sz: string;
4656
+ side: string;
3374
4657
  oid: number;
3375
4658
  reduceOnly?: boolean | undefined;
3376
4659
  }, {
3377
4660
  timestamp: number;
3378
4661
  coin: string;
3379
- side: string;
3380
4662
  limitPx: string;
3381
4663
  sz: string;
4664
+ side: string;
3382
4665
  oid: number;
3383
4666
  reduceOnly?: boolean | undefined;
3384
4667
  }>, "many">;
@@ -3386,9 +4669,9 @@ declare const mcpHyperliquidFetchOpenOrdersOutputSchema: z.ZodObject<{
3386
4669
  orders: {
3387
4670
  timestamp: number;
3388
4671
  coin: string;
3389
- side: string;
3390
4672
  limitPx: string;
3391
4673
  sz: string;
4674
+ side: string;
3392
4675
  oid: number;
3393
4676
  reduceOnly?: boolean | undefined;
3394
4677
  }[];
@@ -3396,19 +4679,19 @@ declare const mcpHyperliquidFetchOpenOrdersOutputSchema: z.ZodObject<{
3396
4679
  orders: {
3397
4680
  timestamp: number;
3398
4681
  coin: string;
3399
- side: string;
3400
4682
  limitPx: string;
3401
4683
  sz: string;
4684
+ side: string;
3402
4685
  oid: number;
3403
4686
  reduceOnly?: boolean | undefined;
3404
4687
  }[];
3405
4688
  }>;
3406
4689
  declare const mcpHyperliquidFetchMarketSnapshotInputSchema: z.ZodObject<{
3407
- chainId: z.ZodNumber;
4690
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
4691
+ } & {
3408
4692
  coin: z.ZodString;
3409
4693
  interval: z.ZodOptional<z.ZodEnum<["1m", "3m", "5m", "15m", "30m", "1h", "2h", "4h", "8h", "12h", "1d", "3d", "1w", "1M"]>>;
3410
4694
  dex: z.ZodOptional<z.ZodString>;
3411
- /** Recent OHLCV bars to return (default 48, max 200). Live price is always current. */
3412
4695
  candleLimit: z.ZodOptional<z.ZodNumber>;
3413
4696
  }, "strip", z.ZodTypeAny, {
3414
4697
  chainId: number;
@@ -3417,8 +4700,8 @@ declare const mcpHyperliquidFetchMarketSnapshotInputSchema: z.ZodObject<{
3417
4700
  interval?: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d" | undefined;
3418
4701
  candleLimit?: number | undefined;
3419
4702
  }, {
3420
- chainId: number;
3421
4703
  coin: string;
4704
+ chainId?: unknown;
3422
4705
  dex?: string | undefined;
3423
4706
  interval?: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d" | undefined;
3424
4707
  candleLimit?: number | undefined;
@@ -3498,6 +4781,7 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
3498
4781
  }>, "many">;
3499
4782
  candleCount: z.ZodNumber;
3500
4783
  }, "strip", z.ZodTypeAny, {
4784
+ coin: string;
3501
4785
  fetchedAtMs: number;
3502
4786
  candles: {
3503
4787
  high: string;
@@ -3507,7 +4791,6 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
3507
4791
  close: string;
3508
4792
  volume: string;
3509
4793
  }[];
3510
- coin: string;
3511
4794
  dex: string | null;
3512
4795
  interval: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d";
3513
4796
  midUsd: string;
@@ -3529,6 +4812,7 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
3529
4812
  } | null;
3530
4813
  candleCount: number;
3531
4814
  }, {
4815
+ coin: string;
3532
4816
  fetchedAtMs: number;
3533
4817
  candles: {
3534
4818
  high: string;
@@ -3538,7 +4822,6 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
3538
4822
  close: string;
3539
4823
  volume: string;
3540
4824
  }[];
3541
- coin: string;
3542
4825
  dex: string | null;
3543
4826
  interval: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d";
3544
4827
  midUsd: string;
@@ -3563,8 +4846,10 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
3563
4846
  resolvedCoin: z.ZodString;
3564
4847
  dex: z.ZodNullable<z.ZodString>;
3565
4848
  }, "strip", z.ZodTypeAny, {
4849
+ resolvedCoin: string;
3566
4850
  dex: string | null;
3567
4851
  snapshot: {
4852
+ coin: string;
3568
4853
  fetchedAtMs: number;
3569
4854
  candles: {
3570
4855
  high: string;
@@ -3574,7 +4859,6 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
3574
4859
  close: string;
3575
4860
  volume: string;
3576
4861
  }[];
3577
- coin: string;
3578
4862
  dex: string | null;
3579
4863
  interval: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d";
3580
4864
  midUsd: string;
@@ -3596,10 +4880,11 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
3596
4880
  } | null;
3597
4881
  candleCount: number;
3598
4882
  };
3599
- resolvedCoin: string;
3600
4883
  }, {
4884
+ resolvedCoin: string;
3601
4885
  dex: string | null;
3602
4886
  snapshot: {
4887
+ coin: string;
3603
4888
  fetchedAtMs: number;
3604
4889
  candles: {
3605
4890
  high: string;
@@ -3609,7 +4894,6 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
3609
4894
  close: string;
3610
4895
  volume: string;
3611
4896
  }[];
3612
- coin: string;
3613
4897
  dex: string | null;
3614
4898
  interval: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d";
3615
4899
  midUsd: string;
@@ -3631,20 +4915,16 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
3631
4915
  } | null;
3632
4916
  candleCount: number;
3633
4917
  };
3634
- resolvedCoin: string;
3635
4918
  }>;
3636
4919
  declare const mcpHyperliquidFetchOhlcvInputSchema: z.ZodObject<{
3637
- chainId: z.ZodNumber;
4920
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
4921
+ } & {
3638
4922
  coin: z.ZodString;
3639
4923
  interval: z.ZodOptional<z.ZodEnum<["1m", "3m", "5m", "15m", "30m", "1h", "2h", "4h", "8h", "12h", "1d", "3d", "1w", "1M"]>>;
3640
4924
  dex: z.ZodOptional<z.ZodString>;
3641
- /** Calendar-day lookback ending now (e.g. 7 = last week). Preferred for agent requests. */
3642
4925
  lookbackDays: z.ZodOptional<z.ZodNumber>;
3643
- /** Hour lookback ending now. Alternative to lookbackDays. */
3644
4926
  lookbackHours: z.ZodOptional<z.ZodNumber>;
3645
- /** Explicit range start (ms since epoch). Use with endTimeMs. */
3646
4927
  startTimeMs: z.ZodOptional<z.ZodNumber>;
3647
- /** Explicit range end (ms since epoch). Defaults to now. */
3648
4928
  endTimeMs: z.ZodOptional<z.ZodNumber>;
3649
4929
  }, "strip", z.ZodTypeAny, {
3650
4930
  chainId: number;
@@ -3656,8 +4936,8 @@ declare const mcpHyperliquidFetchOhlcvInputSchema: z.ZodObject<{
3656
4936
  startTimeMs?: number | undefined;
3657
4937
  endTimeMs?: number | undefined;
3658
4938
  }, {
3659
- chainId: number;
3660
4939
  coin: string;
4940
+ chainId?: unknown;
3661
4941
  dex?: string | undefined;
3662
4942
  interval?: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d" | undefined;
3663
4943
  lookbackDays?: number | undefined;
@@ -3720,6 +5000,7 @@ declare const mcpHyperliquidFetchOhlcvOutputSchema: z.ZodObject<{
3720
5000
  }>, "many">;
3721
5001
  fetchedAtMs: z.ZodNumber;
3722
5002
  }, "strip", z.ZodTypeAny, {
5003
+ coin: string;
3723
5004
  fetchedAtMs: number;
3724
5005
  candles: {
3725
5006
  high: string;
@@ -3729,7 +5010,6 @@ declare const mcpHyperliquidFetchOhlcvOutputSchema: z.ZodObject<{
3729
5010
  close: string;
3730
5011
  volume: string;
3731
5012
  }[];
3732
- coin: string;
3733
5013
  dex: string | null;
3734
5014
  interval: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d";
3735
5015
  latestCandle: {
@@ -3745,6 +5025,7 @@ declare const mcpHyperliquidFetchOhlcvOutputSchema: z.ZodObject<{
3745
5025
  endTimeMs: number;
3746
5026
  expectedBars: number;
3747
5027
  }, {
5028
+ coin: string;
3748
5029
  fetchedAtMs: number;
3749
5030
  candles: {
3750
5031
  high: string;
@@ -3754,7 +5035,6 @@ declare const mcpHyperliquidFetchOhlcvOutputSchema: z.ZodObject<{
3754
5035
  close: string;
3755
5036
  volume: string;
3756
5037
  }[];
3757
- coin: string;
3758
5038
  dex: string | null;
3759
5039
  interval: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d";
3760
5040
  latestCandle: {
@@ -3773,9 +5053,10 @@ declare const mcpHyperliquidFetchOhlcvOutputSchema: z.ZodObject<{
3773
5053
  resolvedCoin: z.ZodString;
3774
5054
  dex: z.ZodNullable<z.ZodString>;
3775
5055
  }, "strip", z.ZodTypeAny, {
3776
- dex: string | null;
3777
5056
  resolvedCoin: string;
5057
+ dex: string | null;
3778
5058
  ohlcv: {
5059
+ coin: string;
3779
5060
  fetchedAtMs: number;
3780
5061
  candles: {
3781
5062
  high: string;
@@ -3785,7 +5066,6 @@ declare const mcpHyperliquidFetchOhlcvOutputSchema: z.ZodObject<{
3785
5066
  close: string;
3786
5067
  volume: string;
3787
5068
  }[];
3788
- coin: string;
3789
5069
  dex: string | null;
3790
5070
  interval: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d";
3791
5071
  latestCandle: {
@@ -3802,9 +5082,10 @@ declare const mcpHyperliquidFetchOhlcvOutputSchema: z.ZodObject<{
3802
5082
  expectedBars: number;
3803
5083
  };
3804
5084
  }, {
3805
- dex: string | null;
3806
5085
  resolvedCoin: string;
5086
+ dex: string | null;
3807
5087
  ohlcv: {
5088
+ coin: string;
3808
5089
  fetchedAtMs: number;
3809
5090
  candles: {
3810
5091
  high: string;
@@ -3814,7 +5095,6 @@ declare const mcpHyperliquidFetchOhlcvOutputSchema: z.ZodObject<{
3814
5095
  close: string;
3815
5096
  volume: string;
3816
5097
  }[];
3817
- coin: string;
3818
5098
  dex: string | null;
3819
5099
  interval: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d";
3820
5100
  latestCandle: {
@@ -3832,14 +5112,15 @@ declare const mcpHyperliquidFetchOhlcvOutputSchema: z.ZodObject<{
3832
5112
  };
3833
5113
  }>;
3834
5114
  declare const mcpHyperliquidFetchUsdClassBalancesInputSchema: z.ZodObject<{
3835
- chainId: z.ZodNumber;
5115
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
5116
+ } & {
3836
5117
  executorAddress: z.ZodString;
3837
5118
  }, "strip", z.ZodTypeAny, {
3838
5119
  chainId: number;
3839
5120
  executorAddress: string;
3840
5121
  }, {
3841
- chainId: number;
3842
5122
  executorAddress: string;
5123
+ chainId?: unknown;
3843
5124
  }>;
3844
5125
  declare const mcpHyperliquidFetchUsdClassBalancesOutputSchema: z.ZodObject<{
3845
5126
  balances: z.ZodObject<{
@@ -3864,13 +5145,14 @@ declare const mcpHyperliquidFetchUsdClassBalancesOutputSchema: z.ZodObject<{
3864
5145
  };
3865
5146
  }>;
3866
5147
  declare const mcpHyperliquidFetchVaultsInputSchema: z.ZodObject<{
3867
- chainId: z.ZodNumber;
5148
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
5149
+ } & {
3868
5150
  executorAddress: z.ZodOptional<z.ZodString>;
3869
5151
  }, "strip", z.ZodTypeAny, {
3870
5152
  chainId: number;
3871
5153
  executorAddress?: string | undefined;
3872
5154
  }, {
3873
- chainId: number;
5155
+ chainId?: unknown;
3874
5156
  executorAddress?: string | undefined;
3875
5157
  }>;
3876
5158
  declare const mcpHyperliquidFetchVaultsOutputSchema: z.ZodObject<{
@@ -3906,46 +5188,48 @@ declare const mcpHyperliquidFetchVaultsOutputSchema: z.ZodObject<{
3906
5188
  }[];
3907
5189
  }>;
3908
5190
  declare const mcpHyperliquidFetchUserVaultEquitiesInputSchema: z.ZodObject<{
3909
- chainId: z.ZodNumber;
5191
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
5192
+ } & {
3910
5193
  executorAddress: z.ZodString;
3911
5194
  }, "strip", z.ZodTypeAny, {
3912
5195
  chainId: number;
3913
5196
  executorAddress: string;
3914
5197
  }, {
3915
- chainId: number;
3916
5198
  executorAddress: string;
5199
+ chainId?: unknown;
3917
5200
  }>;
3918
5201
  declare const mcpHyperliquidFetchUserVaultEquitiesOutputSchema: z.ZodObject<{
3919
5202
  rows: z.ZodArray<z.ZodObject<{
3920
5203
  vaultAddress: z.ZodString;
3921
5204
  equity: z.ZodString;
3922
5205
  }, "strip", z.ZodTypeAny, {
3923
- vaultAddress: string;
3924
5206
  equity: string;
3925
- }, {
3926
5207
  vaultAddress: string;
5208
+ }, {
3927
5209
  equity: string;
5210
+ vaultAddress: string;
3928
5211
  }>, "many">;
3929
5212
  }, "strip", z.ZodTypeAny, {
3930
5213
  rows: {
3931
- vaultAddress: string;
3932
5214
  equity: string;
5215
+ vaultAddress: string;
3933
5216
  }[];
3934
5217
  }, {
3935
5218
  rows: {
3936
- vaultAddress: string;
3937
5219
  equity: string;
5220
+ vaultAddress: string;
3938
5221
  }[];
3939
5222
  }>;
3940
5223
  declare const mcpHyperliquidFetchStakingSummaryInputSchema: z.ZodObject<{
3941
- chainId: z.ZodNumber;
5224
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
5225
+ } & {
3942
5226
  executorAddress: z.ZodString;
3943
5227
  }, "strip", z.ZodTypeAny, {
3944
5228
  chainId: number;
3945
5229
  executorAddress: string;
3946
5230
  }, {
3947
- chainId: number;
3948
5231
  executorAddress: string;
5232
+ chainId?: unknown;
3949
5233
  }>;
3950
5234
  declare const mcpHyperliquidFetchStakingSummaryOutputSchema: z.ZodObject<{
3951
5235
  summary: z.ZodObject<{
@@ -3970,14 +5254,15 @@ declare const mcpHyperliquidFetchStakingSummaryOutputSchema: z.ZodObject<{
3970
5254
  };
3971
5255
  }>;
3972
5256
  declare const mcpHyperliquidFetchDelegationsInputSchema: z.ZodObject<{
3973
- chainId: z.ZodNumber;
5257
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
5258
+ } & {
3974
5259
  executorAddress: z.ZodString;
3975
5260
  }, "strip", z.ZodTypeAny, {
3976
5261
  chainId: number;
3977
5262
  executorAddress: string;
3978
5263
  }, {
3979
- chainId: number;
3980
5264
  executorAddress: string;
5265
+ chainId?: unknown;
3981
5266
  }>;
3982
5267
  declare const mcpHyperliquidFetchDelegationsOutputSchema: z.ZodObject<{
3983
5268
  delegations: z.ZodArray<z.ZodObject<{
@@ -4007,110 +5292,170 @@ declare const mcpHyperliquidLimitOrderInputSchema: z.ZodEffects<z.ZodObject<{} &
4007
5292
  [x: string]: any;
4008
5293
  }, {
4009
5294
  [x: string]: any;
4010
- }>, {
5295
+ }> | z.ZodEffects<z.ZodObject<{} & {
5296
+ [x: string]: z.ZodTypeAny;
5297
+ }, "strip", z.ZodTypeAny, {
4011
5298
  [x: string]: any;
4012
5299
  }, {
4013
5300
  [x: string]: any;
4014
- }>;
5301
+ }>, {
5302
+ [x: string]: any;
5303
+ }, unknown>, {
5304
+ [x: string]: any;
5305
+ }, unknown>;
4015
5306
  declare const mcpHyperliquidCloseInputSchema: z.ZodEffects<z.ZodObject<{} & {
4016
5307
  [x: string]: z.ZodTypeAny;
4017
5308
  }, "strip", z.ZodTypeAny, {
4018
5309
  [x: string]: any;
4019
5310
  }, {
4020
5311
  [x: string]: any;
4021
- }>, {
5312
+ }> | z.ZodEffects<z.ZodObject<{} & {
5313
+ [x: string]: z.ZodTypeAny;
5314
+ }, "strip", z.ZodTypeAny, {
4022
5315
  [x: string]: any;
4023
5316
  }, {
4024
5317
  [x: string]: any;
4025
- }>;
5318
+ }>, {
5319
+ [x: string]: any;
5320
+ }, unknown>, {
5321
+ [x: string]: any;
5322
+ }, unknown>;
4026
5323
  declare const mcpHyperliquidCancelInputSchema: z.ZodEffects<z.ZodObject<{} & {
4027
5324
  [x: string]: z.ZodTypeAny;
4028
5325
  }, "strip", z.ZodTypeAny, {
4029
5326
  [x: string]: any;
4030
5327
  }, {
4031
5328
  [x: string]: any;
4032
- }>, {
5329
+ }> | z.ZodEffects<z.ZodObject<{} & {
5330
+ [x: string]: z.ZodTypeAny;
5331
+ }, "strip", z.ZodTypeAny, {
4033
5332
  [x: string]: any;
4034
5333
  }, {
4035
5334
  [x: string]: any;
4036
- }>;
5335
+ }>, {
5336
+ [x: string]: any;
5337
+ }, unknown>, {
5338
+ [x: string]: any;
5339
+ }, unknown>;
4037
5340
  declare const mcpHyperliquidUsdTransferInputSchema: z.ZodEffects<z.ZodObject<{} & {
4038
5341
  [x: string]: z.ZodTypeAny;
4039
5342
  }, "strip", z.ZodTypeAny, {
4040
5343
  [x: string]: any;
4041
5344
  }, {
4042
5345
  [x: string]: any;
4043
- }>, {
5346
+ }> | z.ZodEffects<z.ZodObject<{} & {
5347
+ [x: string]: z.ZodTypeAny;
5348
+ }, "strip", z.ZodTypeAny, {
4044
5349
  [x: string]: any;
4045
5350
  }, {
4046
5351
  [x: string]: any;
4047
- }>;
5352
+ }>, {
5353
+ [x: string]: any;
5354
+ }, unknown>, {
5355
+ [x: string]: any;
5356
+ }, unknown>;
4048
5357
  declare const mcpHyperliquidVaultDepositInputSchema: z.ZodEffects<z.ZodObject<{} & {
4049
5358
  [x: string]: z.ZodTypeAny;
4050
5359
  }, "strip", z.ZodTypeAny, {
4051
5360
  [x: string]: any;
4052
5361
  }, {
4053
5362
  [x: string]: any;
4054
- }>, {
5363
+ }> | z.ZodEffects<z.ZodObject<{} & {
5364
+ [x: string]: z.ZodTypeAny;
5365
+ }, "strip", z.ZodTypeAny, {
4055
5366
  [x: string]: any;
4056
5367
  }, {
4057
5368
  [x: string]: any;
4058
- }>;
5369
+ }>, {
5370
+ [x: string]: any;
5371
+ }, unknown>, {
5372
+ [x: string]: any;
5373
+ }, unknown>;
4059
5374
  declare const mcpHyperliquidVaultWithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
4060
5375
  [x: string]: z.ZodTypeAny;
4061
5376
  }, "strip", z.ZodTypeAny, {
4062
5377
  [x: string]: any;
4063
5378
  }, {
4064
5379
  [x: string]: any;
4065
- }>, {
5380
+ }> | z.ZodEffects<z.ZodObject<{} & {
5381
+ [x: string]: z.ZodTypeAny;
5382
+ }, "strip", z.ZodTypeAny, {
4066
5383
  [x: string]: any;
4067
5384
  }, {
4068
5385
  [x: string]: any;
4069
- }>;
5386
+ }>, {
5387
+ [x: string]: any;
5388
+ }, unknown>, {
5389
+ [x: string]: any;
5390
+ }, unknown>;
4070
5391
  declare const mcpHyperliquidStakeInputSchema: z.ZodEffects<z.ZodObject<{} & {
4071
5392
  [x: string]: z.ZodTypeAny;
4072
5393
  }, "strip", z.ZodTypeAny, {
4073
5394
  [x: string]: any;
4074
5395
  }, {
4075
5396
  [x: string]: any;
4076
- }>, {
5397
+ }> | z.ZodEffects<z.ZodObject<{} & {
5398
+ [x: string]: z.ZodTypeAny;
5399
+ }, "strip", z.ZodTypeAny, {
4077
5400
  [x: string]: any;
4078
5401
  }, {
4079
5402
  [x: string]: any;
4080
- }>;
5403
+ }>, {
5404
+ [x: string]: any;
5405
+ }, unknown>, {
5406
+ [x: string]: any;
5407
+ }, unknown>;
4081
5408
  declare const mcpHyperliquidUnstakeInputSchema: z.ZodEffects<z.ZodObject<{} & {
4082
5409
  [x: string]: z.ZodTypeAny;
4083
5410
  }, "strip", z.ZodTypeAny, {
4084
5411
  [x: string]: any;
4085
5412
  }, {
4086
5413
  [x: string]: any;
4087
- }>, {
5414
+ }> | z.ZodEffects<z.ZodObject<{} & {
5415
+ [x: string]: z.ZodTypeAny;
5416
+ }, "strip", z.ZodTypeAny, {
4088
5417
  [x: string]: any;
4089
5418
  }, {
4090
5419
  [x: string]: any;
4091
- }>;
5420
+ }>, {
5421
+ [x: string]: any;
5422
+ }, unknown>, {
5423
+ [x: string]: any;
5424
+ }, unknown>;
4092
5425
  declare const mcpHyperliquidDelegateInputSchema: z.ZodEffects<z.ZodObject<{} & {
4093
5426
  [x: string]: z.ZodTypeAny;
4094
5427
  }, "strip", z.ZodTypeAny, {
4095
5428
  [x: string]: any;
4096
5429
  }, {
4097
5430
  [x: string]: any;
4098
- }>, {
5431
+ }> | z.ZodEffects<z.ZodObject<{} & {
5432
+ [x: string]: z.ZodTypeAny;
5433
+ }, "strip", z.ZodTypeAny, {
4099
5434
  [x: string]: any;
4100
5435
  }, {
4101
5436
  [x: string]: any;
4102
- }>;
5437
+ }>, {
5438
+ [x: string]: any;
5439
+ }, unknown>, {
5440
+ [x: string]: any;
5441
+ }, unknown>;
4103
5442
  declare const mcpHyperliquidUndelegateInputSchema: z.ZodEffects<z.ZodObject<{} & {
4104
5443
  [x: string]: z.ZodTypeAny;
4105
5444
  }, "strip", z.ZodTypeAny, {
4106
5445
  [x: string]: any;
4107
5446
  }, {
4108
5447
  [x: string]: any;
4109
- }>, {
5448
+ }> | z.ZodEffects<z.ZodObject<{} & {
5449
+ [x: string]: z.ZodTypeAny;
5450
+ }, "strip", z.ZodTypeAny, {
4110
5451
  [x: string]: any;
4111
5452
  }, {
4112
5453
  [x: string]: any;
4113
- }>;
5454
+ }>, {
5455
+ [x: string]: any;
5456
+ }, unknown>, {
5457
+ [x: string]: any;
5458
+ }, unknown>;
4114
5459
 
4115
5460
  /** LLMs often pass "false"/"true" strings; Boolean("false") is true in JavaScript. */
4116
5461
  declare function parseAgentBoolean(raw: unknown, defaultValue?: boolean): boolean;
@@ -4222,4 +5567,4 @@ declare function getAgentCatalog(): {
4222
5567
  };
4223
5568
  };
4224
5569
 
4225
- 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, MULTISIGN_SUBMIT_OUTPUT_DOC, type McpAaveV4DepositInput, type McpCurveDaoBuildSwapMultisignInput, type McpCurveDaoQuoteInput, type McpCurveDaoQuoteOutput, type McpEthenaStakeInput, type McpEulerV2IsolatedLendInput, type McpJsonSchema, type McpLidoSubmitInput, type McpMapleDepositInput, type McpMorphoFetchEarnVaultsInput, type McpMorphoFetchEarnVaultsOutput, type McpMorphoVaultDepositInput, 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, mcpGmxCancelInputSchema, mcpGmxDecreaseInputSchema, mcpGmxFetchGmApyInputSchema, mcpGmxFetchGmApyOutputSchema, mcpGmxFetchGmMarketsInputSchema, mcpGmxFetchGmMarketsOutputSchema, mcpGmxFetchMarketPricesInputSchema, mcpGmxFetchMarketPricesOutputSchema, mcpGmxFetchMarketsInputSchema, mcpGmxFetchMarketsOutputSchema, mcpGmxFetchOhlcvInputSchema, mcpGmxFetchOhlcvOutputSchema, mcpGmxFetchPositionsInputSchema, mcpGmxFetchPositionsOutputSchema, mcpGmxFetchStakingPowerInputSchema, mcpGmxFetchStakingPowerOutputSchema, mcpGmxGmDepositInputSchema, mcpGmxGmWithdrawInputSchema, mcpGmxIncreaseInputSchema, mcpServerSubmitOutputSchema as mcpGmxMultisignOutputSchema, mcpGmxStakeGmxInputSchema, mcpGmxUnstakeGmxInputSchema, mcpHyperliquidCancelInputSchema, mcpHyperliquidCloseInputSchema, mcpHyperliquidDelegateInputSchema, mcpHyperliquidFetchDelegationsInputSchema, mcpHyperliquidFetchDelegationsOutputSchema, mcpHyperliquidFetchMarketSnapshotInputSchema, mcpHyperliquidFetchMarketSnapshotOutputSchema, mcpHyperliquidFetchMarketsInputSchema, mcpHyperliquidFetchMarketsOutputSchema, mcpHyperliquidFetchOhlcvInputSchema, mcpHyperliquidFetchOhlcvOutputSchema, mcpHyperliquidFetchOpenContextInputSchema, mcpHyperliquidFetchOpenContextOutputSchema, mcpHyperliquidFetchOpenOrdersInputSchema, mcpHyperliquidFetchOpenOrdersOutputSchema, mcpHyperliquidFetchPositionsInputSchema, mcpHyperliquidFetchPositionsOutputSchema, mcpHyperliquidFetchStakingSummaryInputSchema, mcpHyperliquidFetchStakingSummaryOutputSchema, mcpHyperliquidFetchUsdClassBalancesInputSchema, mcpHyperliquidFetchUsdClassBalancesOutputSchema, mcpHyperliquidFetchUserVaultEquitiesInputSchema, mcpHyperliquidFetchUserVaultEquitiesOutputSchema, mcpHyperliquidFetchVaultsInputSchema, mcpHyperliquidFetchVaultsOutputSchema, mcpHyperliquidLimitOrderInputSchema, mcpHyperliquidSearchMarketsInputSchema, mcpHyperliquidSearchMarketsOutputSchema, mcpHyperliquidStakeInputSchema, mcpHyperliquidUndelegateInputSchema, mcpHyperliquidUnstakeInputSchema, mcpHyperliquidUsdTransferInputSchema, mcpHyperliquidVaultDepositInputSchema, mcpHyperliquidVaultWithdrawInputSchema, mcpLidoClaimWithdrawalInputSchema, mcpLidoRequestWithdrawalsInputSchema, mcpLidoSubmitInputSchema, mcpLidoUnwrapWstEthInputSchema, mcpLidoWrapStEthInputSchema, mcpMapleDepositInputSchema, mcpMapleRequestRedeemInputSchema, mcpMorphoBlueBorrowInputSchema, mcpMorphoBlueCollateralDepositInputSchema, mcpMorphoBlueCollateralWithdrawInputSchema, mcpMorphoBlueRepayInputSchema, mcpMorphoFetchEarnVaultsInputSchema, mcpMorphoFetchEarnVaultsOutputSchema, mcpMorphoMerklClaimInputSchema, mcpMorphoVaultDepositInputSchema, mcpMorphoVaultWithdrawInputSchema, mcpMultisignInput, multisignOutputSchema as mcpMultisignOutputSchema, mcpServerSubmitOutputSchema as mcpMultisignSubmitOutputSchema, 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, mcpUniswapV4LpListPoolsInputSchema, mcpUniswapV4LpListPoolsOutputSchema, mcpUniswapV4LpListPositionsInputSchema, mcpUniswapV4LpListPositionsOutputSchema, mcpUniswapV4QuoteInputSchema, mcpUniswapV4QuoteOutputSchema, mcpUniswapV4RegisterPositionFromMintTxInputSchema, mcpUniswapV4RegisterPositionFromMintTxOutputSchema, mcpUniswapV4RegisterPositionNftInputSchema, mcpUniswapV4RegisterPositionNftOutputSchema, multisignOutputSchema, parseAgentBoolean, parseAgentEvmChainId, parseMcpToolInput, parseMcpToolOutput, parseMultisignBuilderOutput, uniswapQuoteTradeTypeSchema, zodSchemaToMcpJsonSchema };
5570
+ 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, MULTISIGN_SUBMIT_OUTPUT_DOC, type McpAaveV4DepositInput, type McpCurveDaoBuildSwapMultisignInput, type McpCurveDaoQuoteInput, type McpCurveDaoQuoteOutput, type McpEthenaStakeInput, type McpEulerV2FetchLendVaultsInput, type McpEulerV2FetchLendVaultsOutput, type McpEulerV2IsolatedLendInput, type McpJsonSchema, type McpLidoSubmitInput, type McpMapleDepositInput, type McpMorphoFetchBlueMarketsInput, type McpMorphoFetchBlueMarketsOutput, type McpMorphoFetchEarnVaultsInput, type McpMorphoFetchEarnVaultsOutput, type McpMorphoVaultDepositInput, 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, mcpEulerV2FetchLendVaultsInputSchema, mcpEulerV2FetchLendVaultsOutputSchema, mcpEulerV2IsolatedBorrowInputSchema, mcpEulerV2IsolatedLendInputSchema, mcpEulerV2VaultWithdrawInputSchema, mcpGmxCancelInputSchema, mcpGmxDecreaseInputSchema, mcpGmxFetchGmApyInputSchema, mcpGmxFetchGmApyOutputSchema, mcpGmxFetchGmMarketsInputSchema, mcpGmxFetchGmMarketsOutputSchema, mcpGmxFetchMarketPricesInputSchema, mcpGmxFetchMarketPricesOutputSchema, mcpGmxFetchMarketsInputSchema, mcpGmxFetchMarketsOutputSchema, mcpGmxFetchOhlcvInputSchema, mcpGmxFetchOhlcvOutputSchema, mcpGmxFetchOrdersInputSchema, mcpGmxFetchOrdersOutputSchema, mcpGmxFetchPositionsInputSchema, mcpGmxFetchPositionsOutputSchema, mcpGmxFetchStakingPowerInputSchema, mcpGmxFetchStakingPowerOutputSchema, mcpGmxGmDepositInputSchema, mcpGmxGmWithdrawInputSchema, mcpGmxIncreaseInputSchema, mcpServerSubmitOutputSchema as mcpGmxMultisignOutputSchema, mcpGmxStakeGmxInputSchema, mcpGmxUnstakeGmxInputSchema, mcpHyperliquidCancelInputSchema, mcpHyperliquidCloseInputSchema, mcpHyperliquidDelegateInputSchema, mcpHyperliquidFetchDelegationsInputSchema, mcpHyperliquidFetchDelegationsOutputSchema, mcpHyperliquidFetchMarketSnapshotInputSchema, mcpHyperliquidFetchMarketSnapshotOutputSchema, mcpHyperliquidFetchMarketsInputSchema, mcpHyperliquidFetchMarketsOutputSchema, mcpHyperliquidFetchOhlcvInputSchema, mcpHyperliquidFetchOhlcvOutputSchema, mcpHyperliquidFetchOpenContextInputSchema, mcpHyperliquidFetchOpenContextOutputSchema, mcpHyperliquidFetchOpenOrdersInputSchema, mcpHyperliquidFetchOpenOrdersOutputSchema, mcpHyperliquidFetchPositionsInputSchema, mcpHyperliquidFetchPositionsOutputSchema, mcpHyperliquidFetchStakingSummaryInputSchema, mcpHyperliquidFetchStakingSummaryOutputSchema, mcpHyperliquidFetchUsdClassBalancesInputSchema, mcpHyperliquidFetchUsdClassBalancesOutputSchema, mcpHyperliquidFetchUserVaultEquitiesInputSchema, mcpHyperliquidFetchUserVaultEquitiesOutputSchema, mcpHyperliquidFetchVaultsInputSchema, mcpHyperliquidFetchVaultsOutputSchema, mcpHyperliquidLimitOrderInputSchema, mcpHyperliquidSearchMarketsInputSchema, mcpHyperliquidSearchMarketsOutputSchema, mcpHyperliquidStakeInputSchema, mcpHyperliquidUndelegateInputSchema, mcpHyperliquidUnstakeInputSchema, mcpHyperliquidUsdTransferInputSchema, mcpHyperliquidVaultDepositInputSchema, mcpHyperliquidVaultWithdrawInputSchema, mcpLidoClaimWithdrawalInputSchema, mcpLidoRequestWithdrawalsInputSchema, mcpLidoSubmitInputSchema, mcpLidoUnwrapWstEthInputSchema, mcpLidoWrapStEthInputSchema, mcpMapleDepositInputSchema, mcpMapleRequestRedeemInputSchema, mcpMorphoBlueBorrowInputSchema, mcpMorphoBlueCollateralDepositInputSchema, mcpMorphoBlueCollateralWithdrawInputSchema, mcpMorphoBlueRepayInputSchema, mcpMorphoFetchBlueMarketsInputSchema, mcpMorphoFetchBlueMarketsOutputSchema, mcpMorphoFetchEarnVaultsInputSchema, mcpMorphoFetchEarnVaultsOutputSchema, mcpMorphoMerklClaimInputSchema, mcpMorphoVaultDepositInputSchema, mcpMorphoVaultWithdrawInputSchema, mcpMultisignInput, multisignOutputSchema as mcpMultisignOutputSchema, mcpServerSubmitOutputSchema as mcpMultisignSubmitOutputSchema, 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, mcpUniswapV4LpListPoolsInputSchema, mcpUniswapV4LpListPoolsOutputSchema, mcpUniswapV4LpListPositionsInputSchema, mcpUniswapV4LpListPositionsOutputSchema, mcpUniswapV4QuoteInputSchema, mcpUniswapV4QuoteOutputSchema, mcpUniswapV4RegisterPositionFromMintTxInputSchema, mcpUniswapV4RegisterPositionFromMintTxOutputSchema, mcpUniswapV4RegisterPositionNftInputSchema, mcpUniswapV4RegisterPositionNftOutputSchema, multisignOutputSchema, parseAgentBoolean, parseAgentEvmChainId, parseMcpToolInput, parseMcpToolOutput, parseMultisignBuilderOutput, uniswapQuoteTradeTypeSchema, zodSchemaToMcpJsonSchema };