@continuumdao/ctm-mpc-defi 0.2.13 → 0.2.17

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