@continuumdao/ctm-mpc-defi 0.2.11 → 0.2.13

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 (64) hide show
  1. package/dist/agent/catalog.cjs +137 -51
  2. package/dist/agent/catalog.cjs.map +1 -1
  3. package/dist/agent/catalog.d.ts +895 -347
  4. package/dist/agent/catalog.js +136 -52
  5. package/dist/agent/catalog.js.map +1 -1
  6. package/dist/agent/skills/morpho/SKILL.md +11 -17
  7. package/dist/chains/evm/index.cjs +1 -1
  8. package/dist/chains/evm/index.cjs.map +1 -1
  9. package/dist/chains/evm/index.js +1 -1
  10. package/dist/chains/evm/index.js.map +1 -1
  11. package/dist/core/index.cjs +1 -1
  12. package/dist/core/index.cjs.map +1 -1
  13. package/dist/core/index.d.ts +1 -1
  14. package/dist/core/index.js +1 -1
  15. package/dist/core/index.js.map +1 -1
  16. package/dist/index.cjs +1 -1
  17. package/dist/index.cjs.map +1 -1
  18. package/dist/index.js +1 -1
  19. package/dist/index.js.map +1 -1
  20. package/dist/protocols/evm/aave-v4/index.cjs +1 -1
  21. package/dist/protocols/evm/aave-v4/index.cjs.map +1 -1
  22. package/dist/protocols/evm/aave-v4/index.js +1 -1
  23. package/dist/protocols/evm/aave-v4/index.js.map +1 -1
  24. package/dist/protocols/evm/curve-dao/index.cjs +1 -1
  25. package/dist/protocols/evm/curve-dao/index.cjs.map +1 -1
  26. package/dist/protocols/evm/curve-dao/index.js +1 -1
  27. package/dist/protocols/evm/curve-dao/index.js.map +1 -1
  28. package/dist/protocols/evm/ethena/index.cjs +1 -1
  29. package/dist/protocols/evm/ethena/index.cjs.map +1 -1
  30. package/dist/protocols/evm/ethena/index.js +1 -1
  31. package/dist/protocols/evm/ethena/index.js.map +1 -1
  32. package/dist/protocols/evm/euler-v2/index.cjs +1 -1
  33. package/dist/protocols/evm/euler-v2/index.cjs.map +1 -1
  34. package/dist/protocols/evm/euler-v2/index.js +1 -1
  35. package/dist/protocols/evm/euler-v2/index.js.map +1 -1
  36. package/dist/protocols/evm/gmx/index.cjs +1 -1
  37. package/dist/protocols/evm/gmx/index.cjs.map +1 -1
  38. package/dist/protocols/evm/gmx/index.js +1 -1
  39. package/dist/protocols/evm/gmx/index.js.map +1 -1
  40. package/dist/protocols/evm/hyperliquid/index.cjs +1 -1
  41. package/dist/protocols/evm/hyperliquid/index.cjs.map +1 -1
  42. package/dist/protocols/evm/hyperliquid/index.js +1 -1
  43. package/dist/protocols/evm/hyperliquid/index.js.map +1 -1
  44. package/dist/protocols/evm/lido/index.cjs +1 -1
  45. package/dist/protocols/evm/lido/index.cjs.map +1 -1
  46. package/dist/protocols/evm/lido/index.js +1 -1
  47. package/dist/protocols/evm/lido/index.js.map +1 -1
  48. package/dist/protocols/evm/maple/index.cjs +1 -1
  49. package/dist/protocols/evm/maple/index.cjs.map +1 -1
  50. package/dist/protocols/evm/maple/index.js +1 -1
  51. package/dist/protocols/evm/maple/index.js.map +1 -1
  52. package/dist/protocols/evm/morpho/index.cjs +1 -1
  53. package/dist/protocols/evm/morpho/index.cjs.map +1 -1
  54. package/dist/protocols/evm/morpho/index.js +1 -1
  55. package/dist/protocols/evm/morpho/index.js.map +1 -1
  56. package/dist/protocols/evm/sky/index.cjs +1 -1
  57. package/dist/protocols/evm/sky/index.cjs.map +1 -1
  58. package/dist/protocols/evm/sky/index.js +1 -1
  59. package/dist/protocols/evm/sky/index.js.map +1 -1
  60. package/dist/protocols/evm/uniswap-v4/index.cjs +1 -1
  61. package/dist/protocols/evm/uniswap-v4/index.cjs.map +1 -1
  62. package/dist/protocols/evm/uniswap-v4/index.js +1 -1
  63. package/dist/protocols/evm/uniswap-v4/index.js.map +1 -1
  64. package/package.json +1 -1
@@ -89,6 +89,14 @@ declare function getAgentCatalogForMcp(): {
89
89
  readonly type: "string";
90
90
  readonly description: "Sign request id from POST /multiSignRequest.";
91
91
  };
92
+ readonly status: {
93
+ readonly type: "string";
94
+ readonly description: "submitted when POST succeeded — do not call the same build tool again.";
95
+ };
96
+ readonly followUp: {
97
+ readonly type: "string";
98
+ readonly description: "Lifecycle next steps (wait_for_sign_request_ready → agree → trigger → broadcast).";
99
+ };
92
100
  };
93
101
  };
94
102
  managementSig: {
@@ -213,10 +221,16 @@ declare function mcpServerMultisignInput(fields: z.ZodRawShape): z.ZodObject<{}
213
221
  }>;
214
222
  declare const mcpServerSubmitOutputSchema: z.ZodObject<{
215
223
  requestId: z.ZodString;
224
+ status: z.ZodOptional<z.ZodLiteral<"submitted">>;
225
+ followUp: z.ZodOptional<z.ZodString>;
216
226
  }, "strip", z.ZodTypeAny, {
217
227
  requestId: string;
228
+ status?: "submitted" | undefined;
229
+ followUp?: string | undefined;
218
230
  }, {
219
231
  requestId: string;
232
+ status?: "submitted" | undefined;
233
+ followUp?: string | undefined;
220
234
  }>;
221
235
  /** Tools that only build calldata / quotes — no submit. */
222
236
  declare const MCP_NON_SUBMIT_TOOL_NAMES: Set<string>;
@@ -231,6 +245,14 @@ declare const MULTISIGN_SUBMIT_OUTPUT_DOC: {
231
245
  readonly type: "string";
232
246
  readonly description: "Sign request id from POST /multiSignRequest.";
233
247
  };
248
+ readonly status: {
249
+ readonly type: "string";
250
+ readonly description: "submitted when POST succeeded — do not call the same build tool again.";
251
+ };
252
+ readonly followUp: {
253
+ readonly type: "string";
254
+ readonly description: "Lifecycle next steps (wait_for_sign_request_ready → agree → trigger → broadcast).";
255
+ };
234
256
  };
235
257
  };
236
258
  /** Legacy unsigned builder output (node app / manual sign path — not MCP tool return value). */
@@ -337,7 +359,7 @@ declare const chainDetailSchema: z.ZodObject<{
337
359
  /** Shared inputs for all EVM multisign MCP tools. */
338
360
  declare const evmMultisignCommonInputSchema: z.ZodObject<{
339
361
  keyGenId: z.ZodOptional<z.ZodString>;
340
- keyGen: z.ZodObject<{
362
+ keyGen: z.ZodOptional<z.ZodObject<{
341
363
  pubkeyhex: z.ZodString;
342
364
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
343
365
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -349,13 +371,13 @@ declare const evmMultisignCommonInputSchema: z.ZodObject<{
349
371
  pubkeyhex: string;
350
372
  keylist?: string[] | undefined;
351
373
  ClientKeys?: Record<string, string> | undefined;
352
- }>;
374
+ }>>;
353
375
  purposeText: z.ZodString;
354
- useCustomGas: z.ZodBoolean;
355
- chainId: z.ZodNumber;
356
- rpcUrl: z.ZodString;
357
- executorAddress: z.ZodString;
358
- chainDetail: z.ZodObject<{
376
+ useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
377
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
378
+ rpcUrl: z.ZodOptional<z.ZodString>;
379
+ executorAddress: z.ZodOptional<z.ZodString>;
380
+ chainDetail: z.ZodOptional<z.ZodObject<{
359
381
  legacy: z.ZodOptional<z.ZodBoolean>;
360
382
  gasLimit: z.ZodOptional<z.ZodNumber>;
361
383
  gasMultiplier: z.ZodOptional<z.ZodNumber>;
@@ -379,54 +401,50 @@ declare const evmMultisignCommonInputSchema: z.ZodObject<{
379
401
  baseFee: z.ZodOptional<z.ZodNumber>;
380
402
  priorityFee: z.ZodOptional<z.ZodNumber>;
381
403
  baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
382
- }, z.ZodTypeAny, "passthrough">>;
404
+ }, z.ZodTypeAny, "passthrough">>>;
383
405
  customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
384
406
  }, "strip", z.ZodTypeAny, {
385
- keyGen: {
386
- pubkeyhex: string;
387
- keylist?: string[] | undefined;
388
- ClientKeys?: Record<string, string> | undefined;
389
- };
390
407
  purposeText: string;
391
408
  useCustomGas: boolean;
392
409
  chainId: number;
393
- rpcUrl: string;
394
- executorAddress: string;
395
- chainDetail: {
396
- legacy?: boolean | undefined;
397
- gasPrice?: number | undefined;
398
- gasLimit?: number | undefined;
399
- gasMultiplier?: number | undefined;
400
- baseFee?: number | undefined;
401
- priorityFee?: number | undefined;
402
- baseFeeMultiplier?: number | undefined;
403
- } & {
404
- [k: string]: unknown;
405
- };
410
+ keyGen?: {
411
+ pubkeyhex: string;
412
+ keylist?: string[] | undefined;
413
+ ClientKeys?: Record<string, string> | undefined;
414
+ } | undefined;
415
+ rpcUrl?: string | undefined;
416
+ executorAddress?: string | undefined;
417
+ chainDetail?: z.objectOutputType<{
418
+ legacy: z.ZodOptional<z.ZodBoolean>;
419
+ gasLimit: z.ZodOptional<z.ZodNumber>;
420
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
421
+ gasPrice: z.ZodOptional<z.ZodNumber>;
422
+ baseFee: z.ZodOptional<z.ZodNumber>;
423
+ priorityFee: z.ZodOptional<z.ZodNumber>;
424
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
425
+ }, z.ZodTypeAny, "passthrough"> | undefined;
406
426
  customGasChainDetails?: Record<string, unknown> | undefined;
407
427
  keyGenId?: string | undefined;
408
428
  }, {
409
- keyGen: {
429
+ purposeText: string;
430
+ keyGen?: {
410
431
  pubkeyhex: string;
411
432
  keylist?: string[] | undefined;
412
433
  ClientKeys?: Record<string, string> | undefined;
413
- };
414
- purposeText: string;
415
- useCustomGas: boolean;
416
- chainId: number;
417
- rpcUrl: string;
418
- executorAddress: string;
419
- chainDetail: {
420
- legacy?: boolean | undefined;
421
- gasPrice?: number | undefined;
422
- gasLimit?: number | undefined;
423
- gasMultiplier?: number | undefined;
424
- baseFee?: number | undefined;
425
- priorityFee?: number | undefined;
426
- baseFeeMultiplier?: number | undefined;
427
- } & {
428
- [k: string]: unknown;
429
- };
434
+ } | undefined;
435
+ useCustomGas?: unknown;
436
+ chainId?: unknown;
437
+ rpcUrl?: string | undefined;
438
+ executorAddress?: string | undefined;
439
+ chainDetail?: z.objectInputType<{
440
+ legacy: z.ZodOptional<z.ZodBoolean>;
441
+ gasLimit: z.ZodOptional<z.ZodNumber>;
442
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
443
+ gasPrice: z.ZodOptional<z.ZodNumber>;
444
+ baseFee: z.ZodOptional<z.ZodNumber>;
445
+ priorityFee: z.ZodOptional<z.ZodNumber>;
446
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
447
+ }, z.ZodTypeAny, "passthrough"> | undefined;
430
448
  customGasChainDetails?: Record<string, unknown> | undefined;
431
449
  keyGenId?: string | undefined;
432
450
  }>;
@@ -540,9 +558,9 @@ declare const mcpUniswapV4CreateSwapOutputSchema: z.ZodObject<{
540
558
  gasFee: z.ZodOptional<z.ZodString>;
541
559
  }, z.ZodTypeAny, "passthrough">>;
542
560
  /** Input for MCP tool `ctm_uniswap_v4_build_swap_multisign`. */
543
- declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodObject<{
561
+ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObject<{
544
562
  keyGenId: z.ZodOptional<z.ZodString>;
545
- keyGen: z.ZodObject<{
563
+ keyGen: z.ZodOptional<z.ZodObject<{
546
564
  pubkeyhex: z.ZodString;
547
565
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
548
566
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -554,13 +572,13 @@ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodObject<{
554
572
  pubkeyhex: string;
555
573
  keylist?: string[] | undefined;
556
574
  ClientKeys?: Record<string, string> | undefined;
557
- }>;
575
+ }>>;
558
576
  purposeText: z.ZodString;
559
- useCustomGas: z.ZodBoolean;
560
- chainId: z.ZodNumber;
561
- rpcUrl: z.ZodString;
562
- executorAddress: z.ZodString;
563
- chainDetail: z.ZodObject<{
577
+ useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
578
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
579
+ rpcUrl: z.ZodOptional<z.ZodString>;
580
+ executorAddress: z.ZodOptional<z.ZodString>;
581
+ chainDetail: z.ZodOptional<z.ZodObject<{
564
582
  legacy: z.ZodOptional<z.ZodBoolean>;
565
583
  gasLimit: z.ZodOptional<z.ZodNumber>;
566
584
  gasMultiplier: z.ZodOptional<z.ZodNumber>;
@@ -584,7 +602,7 @@ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodObject<{
584
602
  baseFee: z.ZodOptional<z.ZodNumber>;
585
603
  priorityFee: z.ZodOptional<z.ZodNumber>;
586
604
  baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
587
- }, z.ZodTypeAny, "passthrough">>;
605
+ }, z.ZodTypeAny, "passthrough">>>;
588
606
  customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
589
607
  } & {
590
608
  tokenIn: z.ZodString;
@@ -606,28 +624,10 @@ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodObject<{
606
624
  swapDeadlineUnix: z.ZodNumber;
607
625
  slippagePercent: z.ZodOptional<z.ZodNumber>;
608
626
  }, "strip", z.ZodTypeAny, {
609
- keyGen: {
610
- pubkeyhex: string;
611
- keylist?: string[] | undefined;
612
- ClientKeys?: Record<string, string> | undefined;
613
- };
614
627
  purposeText: string;
615
628
  useCustomGas: boolean;
616
629
  chainId: number;
617
630
  tokenIn: string;
618
- rpcUrl: string;
619
- executorAddress: string;
620
- chainDetail: {
621
- legacy?: boolean | undefined;
622
- gasPrice?: number | undefined;
623
- gasLimit?: number | undefined;
624
- gasMultiplier?: number | undefined;
625
- baseFee?: number | undefined;
626
- priorityFee?: number | undefined;
627
- baseFeeMultiplier?: number | undefined;
628
- } & {
629
- [k: string]: unknown;
630
- };
631
631
  swap: Record<string, unknown>;
632
632
  createSwapResponse: {
633
633
  swap: Record<string, unknown>;
@@ -638,32 +638,96 @@ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodObject<{
638
638
  };
639
639
  fullQuoteSnapshot: Record<string, unknown>;
640
640
  swapDeadlineUnix: number;
641
+ keyGen?: {
642
+ pubkeyhex: string;
643
+ keylist?: string[] | undefined;
644
+ ClientKeys?: Record<string, string> | undefined;
645
+ } | undefined;
646
+ rpcUrl?: string | undefined;
647
+ executorAddress?: string | undefined;
648
+ chainDetail?: z.objectOutputType<{
649
+ legacy: z.ZodOptional<z.ZodBoolean>;
650
+ gasLimit: z.ZodOptional<z.ZodNumber>;
651
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
652
+ gasPrice: z.ZodOptional<z.ZodNumber>;
653
+ baseFee: z.ZodOptional<z.ZodNumber>;
654
+ priorityFee: z.ZodOptional<z.ZodNumber>;
655
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
656
+ }, z.ZodTypeAny, "passthrough"> | undefined;
641
657
  customGasChainDetails?: Record<string, unknown> | undefined;
642
658
  slippagePercent?: number | undefined;
643
659
  keyGenId?: string | undefined;
644
660
  }, {
645
- keyGen: {
661
+ purposeText: string;
662
+ tokenIn: string;
663
+ swap: Record<string, unknown>;
664
+ createSwapResponse: {
665
+ swap: Record<string, unknown>;
666
+ requestId?: string | undefined;
667
+ gasFee?: string | undefined;
668
+ } & {
669
+ [k: string]: unknown;
670
+ };
671
+ fullQuoteSnapshot: Record<string, unknown>;
672
+ swapDeadlineUnix: number;
673
+ keyGen?: {
646
674
  pubkeyhex: string;
647
675
  keylist?: string[] | undefined;
648
676
  ClientKeys?: Record<string, string> | undefined;
649
- };
677
+ } | undefined;
678
+ useCustomGas?: unknown;
679
+ chainId?: unknown;
680
+ rpcUrl?: string | undefined;
681
+ executorAddress?: string | undefined;
682
+ chainDetail?: z.objectInputType<{
683
+ legacy: z.ZodOptional<z.ZodBoolean>;
684
+ gasLimit: z.ZodOptional<z.ZodNumber>;
685
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
686
+ gasPrice: z.ZodOptional<z.ZodNumber>;
687
+ baseFee: z.ZodOptional<z.ZodNumber>;
688
+ priorityFee: z.ZodOptional<z.ZodNumber>;
689
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
690
+ }, z.ZodTypeAny, "passthrough"> | undefined;
691
+ customGasChainDetails?: Record<string, unknown> | undefined;
692
+ slippagePercent?: number | undefined;
693
+ keyGenId?: string | undefined;
694
+ }>, {
650
695
  purposeText: string;
651
696
  useCustomGas: boolean;
652
697
  chainId: number;
653
698
  tokenIn: string;
654
- rpcUrl: string;
655
- executorAddress: string;
656
- chainDetail: {
657
- legacy?: boolean | undefined;
658
- gasPrice?: number | undefined;
659
- gasLimit?: number | undefined;
660
- gasMultiplier?: number | undefined;
661
- baseFee?: number | undefined;
662
- priorityFee?: number | undefined;
663
- baseFeeMultiplier?: number | undefined;
699
+ swap: Record<string, unknown>;
700
+ createSwapResponse: {
701
+ swap: Record<string, unknown>;
702
+ requestId?: string | undefined;
703
+ gasFee?: string | undefined;
664
704
  } & {
665
705
  [k: string]: unknown;
666
706
  };
707
+ fullQuoteSnapshot: Record<string, unknown>;
708
+ swapDeadlineUnix: number;
709
+ keyGen?: {
710
+ pubkeyhex: string;
711
+ keylist?: string[] | undefined;
712
+ ClientKeys?: Record<string, string> | undefined;
713
+ } | undefined;
714
+ rpcUrl?: string | undefined;
715
+ executorAddress?: string | undefined;
716
+ chainDetail?: z.objectOutputType<{
717
+ legacy: z.ZodOptional<z.ZodBoolean>;
718
+ gasLimit: z.ZodOptional<z.ZodNumber>;
719
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
720
+ gasPrice: z.ZodOptional<z.ZodNumber>;
721
+ baseFee: z.ZodOptional<z.ZodNumber>;
722
+ priorityFee: z.ZodOptional<z.ZodNumber>;
723
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
724
+ }, z.ZodTypeAny, "passthrough"> | undefined;
725
+ customGasChainDetails?: Record<string, unknown> | undefined;
726
+ slippagePercent?: number | undefined;
727
+ keyGenId?: string | undefined;
728
+ }, {
729
+ purposeText: string;
730
+ tokenIn: string;
667
731
  swap: Record<string, unknown>;
668
732
  createSwapResponse: {
669
733
  swap: Record<string, unknown>;
@@ -674,6 +738,24 @@ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodObject<{
674
738
  };
675
739
  fullQuoteSnapshot: Record<string, unknown>;
676
740
  swapDeadlineUnix: number;
741
+ keyGen?: {
742
+ pubkeyhex: string;
743
+ keylist?: string[] | undefined;
744
+ ClientKeys?: Record<string, string> | undefined;
745
+ } | undefined;
746
+ useCustomGas?: unknown;
747
+ chainId?: unknown;
748
+ rpcUrl?: string | undefined;
749
+ executorAddress?: string | undefined;
750
+ chainDetail?: z.objectInputType<{
751
+ legacy: z.ZodOptional<z.ZodBoolean>;
752
+ gasLimit: z.ZodOptional<z.ZodNumber>;
753
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
754
+ gasPrice: z.ZodOptional<z.ZodNumber>;
755
+ baseFee: z.ZodOptional<z.ZodNumber>;
756
+ priorityFee: z.ZodOptional<z.ZodNumber>;
757
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
758
+ }, z.ZodTypeAny, "passthrough"> | undefined;
677
759
  customGasChainDetails?: Record<string, unknown> | undefined;
678
760
  slippagePercent?: number | undefined;
679
761
  keyGenId?: string | undefined;
@@ -1201,9 +1283,9 @@ declare const mcpUniswapV4RegisterPositionFromMintTxOutputSchema: z.ZodObject<{
1201
1283
  positionManager: string;
1202
1284
  registered: boolean;
1203
1285
  }>;
1204
- declare const mcpUniswapV4BuildMintLiquidityMultisignInputSchema: z.ZodObject<{
1286
+ declare const mcpUniswapV4BuildMintLiquidityMultisignInputSchema: z.ZodEffects<z.ZodObject<{
1205
1287
  keyGenId: z.ZodOptional<z.ZodString>;
1206
- keyGen: z.ZodObject<{
1288
+ keyGen: z.ZodOptional<z.ZodObject<{
1207
1289
  pubkeyhex: z.ZodString;
1208
1290
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1209
1291
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -1215,13 +1297,13 @@ declare const mcpUniswapV4BuildMintLiquidityMultisignInputSchema: z.ZodObject<{
1215
1297
  pubkeyhex: string;
1216
1298
  keylist?: string[] | undefined;
1217
1299
  ClientKeys?: Record<string, string> | undefined;
1218
- }>;
1300
+ }>>;
1219
1301
  purposeText: z.ZodString;
1220
- useCustomGas: z.ZodBoolean;
1221
- chainId: z.ZodNumber;
1222
- rpcUrl: z.ZodString;
1223
- executorAddress: z.ZodString;
1224
- chainDetail: z.ZodObject<{
1302
+ useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
1303
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
1304
+ rpcUrl: z.ZodOptional<z.ZodString>;
1305
+ executorAddress: z.ZodOptional<z.ZodString>;
1306
+ chainDetail: z.ZodOptional<z.ZodObject<{
1225
1307
  legacy: z.ZodOptional<z.ZodBoolean>;
1226
1308
  gasLimit: z.ZodOptional<z.ZodNumber>;
1227
1309
  gasMultiplier: z.ZodOptional<z.ZodNumber>;
@@ -1245,70 +1327,116 @@ declare const mcpUniswapV4BuildMintLiquidityMultisignInputSchema: z.ZodObject<{
1245
1327
  baseFee: z.ZodOptional<z.ZodNumber>;
1246
1328
  priorityFee: z.ZodOptional<z.ZodNumber>;
1247
1329
  baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1248
- }, z.ZodTypeAny, "passthrough">>;
1330
+ }, z.ZodTypeAny, "passthrough">>>;
1249
1331
  customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1250
1332
  } & {
1251
1333
  lpResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1252
1334
  nativeWrapped: z.ZodOptional<z.ZodString>;
1253
1335
  poolReference: z.ZodOptional<z.ZodString>;
1254
1336
  }, "strip", z.ZodTypeAny, {
1255
- keyGen: {
1256
- pubkeyhex: string;
1257
- keylist?: string[] | undefined;
1258
- ClientKeys?: Record<string, string> | undefined;
1259
- };
1260
1337
  purposeText: string;
1261
1338
  useCustomGas: boolean;
1262
1339
  chainId: number;
1263
- rpcUrl: string;
1264
- executorAddress: string;
1265
- chainDetail: {
1266
- legacy?: boolean | undefined;
1267
- gasPrice?: number | undefined;
1268
- gasLimit?: number | undefined;
1269
- gasMultiplier?: number | undefined;
1270
- baseFee?: number | undefined;
1271
- priorityFee?: number | undefined;
1272
- baseFeeMultiplier?: number | undefined;
1273
- } & {
1274
- [k: string]: unknown;
1275
- };
1276
1340
  lpResponse: Record<string, unknown>;
1341
+ keyGen?: {
1342
+ pubkeyhex: string;
1343
+ keylist?: string[] | undefined;
1344
+ ClientKeys?: Record<string, string> | undefined;
1345
+ } | undefined;
1346
+ rpcUrl?: string | undefined;
1347
+ executorAddress?: string | undefined;
1348
+ chainDetail?: z.objectOutputType<{
1349
+ legacy: z.ZodOptional<z.ZodBoolean>;
1350
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1351
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1352
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1353
+ baseFee: z.ZodOptional<z.ZodNumber>;
1354
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1355
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1356
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1277
1357
  customGasChainDetails?: Record<string, unknown> | undefined;
1278
1358
  nativeWrapped?: string | undefined;
1279
1359
  poolReference?: string | undefined;
1280
1360
  keyGenId?: string | undefined;
1281
1361
  }, {
1282
- keyGen: {
1362
+ purposeText: string;
1363
+ lpResponse: Record<string, unknown>;
1364
+ keyGen?: {
1283
1365
  pubkeyhex: string;
1284
1366
  keylist?: string[] | undefined;
1285
1367
  ClientKeys?: Record<string, string> | undefined;
1286
- };
1368
+ } | undefined;
1369
+ useCustomGas?: unknown;
1370
+ chainId?: unknown;
1371
+ rpcUrl?: string | undefined;
1372
+ executorAddress?: string | undefined;
1373
+ chainDetail?: z.objectInputType<{
1374
+ legacy: z.ZodOptional<z.ZodBoolean>;
1375
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1376
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1377
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1378
+ baseFee: z.ZodOptional<z.ZodNumber>;
1379
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1380
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1381
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1382
+ customGasChainDetails?: Record<string, unknown> | undefined;
1383
+ nativeWrapped?: string | undefined;
1384
+ poolReference?: string | undefined;
1385
+ keyGenId?: string | undefined;
1386
+ }>, {
1287
1387
  purposeText: string;
1288
1388
  useCustomGas: boolean;
1289
1389
  chainId: number;
1290
- rpcUrl: string;
1291
- executorAddress: string;
1292
- chainDetail: {
1293
- legacy?: boolean | undefined;
1294
- gasPrice?: number | undefined;
1295
- gasLimit?: number | undefined;
1296
- gasMultiplier?: number | undefined;
1297
- baseFee?: number | undefined;
1298
- priorityFee?: number | undefined;
1299
- baseFeeMultiplier?: number | undefined;
1300
- } & {
1301
- [k: string]: unknown;
1302
- };
1303
1390
  lpResponse: Record<string, unknown>;
1391
+ keyGen?: {
1392
+ pubkeyhex: string;
1393
+ keylist?: string[] | undefined;
1394
+ ClientKeys?: Record<string, string> | undefined;
1395
+ } | undefined;
1396
+ rpcUrl?: string | undefined;
1397
+ executorAddress?: string | undefined;
1398
+ chainDetail?: z.objectOutputType<{
1399
+ legacy: z.ZodOptional<z.ZodBoolean>;
1400
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1401
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1402
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1403
+ baseFee: z.ZodOptional<z.ZodNumber>;
1404
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1405
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1406
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1407
+ customGasChainDetails?: Record<string, unknown> | undefined;
1408
+ nativeWrapped?: string | undefined;
1409
+ poolReference?: string | undefined;
1410
+ keyGenId?: string | undefined;
1411
+ }, {
1412
+ purposeText: string;
1413
+ lpResponse: Record<string, unknown>;
1414
+ keyGen?: {
1415
+ pubkeyhex: string;
1416
+ keylist?: string[] | undefined;
1417
+ ClientKeys?: Record<string, string> | undefined;
1418
+ } | undefined;
1419
+ useCustomGas?: unknown;
1420
+ chainId?: unknown;
1421
+ rpcUrl?: string | undefined;
1422
+ executorAddress?: string | undefined;
1423
+ chainDetail?: z.objectInputType<{
1424
+ legacy: z.ZodOptional<z.ZodBoolean>;
1425
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1426
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1427
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1428
+ baseFee: z.ZodOptional<z.ZodNumber>;
1429
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1430
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1431
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1304
1432
  customGasChainDetails?: Record<string, unknown> | undefined;
1305
1433
  nativeWrapped?: string | undefined;
1306
1434
  poolReference?: string | undefined;
1307
1435
  keyGenId?: string | undefined;
1308
1436
  }>;
1309
- declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodObject<{
1437
+ declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodEffects<z.ZodObject<{
1310
1438
  keyGenId: z.ZodOptional<z.ZodString>;
1311
- keyGen: z.ZodObject<{
1439
+ keyGen: z.ZodOptional<z.ZodObject<{
1312
1440
  pubkeyhex: z.ZodString;
1313
1441
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1314
1442
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -1320,13 +1448,13 @@ declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodObjec
1320
1448
  pubkeyhex: string;
1321
1449
  keylist?: string[] | undefined;
1322
1450
  ClientKeys?: Record<string, string> | undefined;
1323
- }>;
1451
+ }>>;
1324
1452
  purposeText: z.ZodString;
1325
- useCustomGas: z.ZodBoolean;
1326
- chainId: z.ZodNumber;
1327
- rpcUrl: z.ZodString;
1328
- executorAddress: z.ZodString;
1329
- chainDetail: z.ZodObject<{
1453
+ useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
1454
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
1455
+ rpcUrl: z.ZodOptional<z.ZodString>;
1456
+ executorAddress: z.ZodOptional<z.ZodString>;
1457
+ chainDetail: z.ZodOptional<z.ZodObject<{
1330
1458
  legacy: z.ZodOptional<z.ZodBoolean>;
1331
1459
  gasLimit: z.ZodOptional<z.ZodNumber>;
1332
1460
  gasMultiplier: z.ZodOptional<z.ZodNumber>;
@@ -1350,7 +1478,7 @@ declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodObjec
1350
1478
  baseFee: z.ZodOptional<z.ZodNumber>;
1351
1479
  priorityFee: z.ZodOptional<z.ZodNumber>;
1352
1480
  baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1353
- }, z.ZodTypeAny, "passthrough">>;
1481
+ }, z.ZodTypeAny, "passthrough">>>;
1354
1482
  customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1355
1483
  } & {
1356
1484
  nftTokenId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
@@ -1358,65 +1486,113 @@ declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodObjec
1358
1486
  nativeWrapped: z.ZodOptional<z.ZodString>;
1359
1487
  poolReference: z.ZodOptional<z.ZodString>;
1360
1488
  }, "strip", z.ZodTypeAny, {
1361
- keyGen: {
1362
- pubkeyhex: string;
1363
- keylist?: string[] | undefined;
1364
- ClientKeys?: Record<string, string> | undefined;
1365
- };
1366
1489
  purposeText: string;
1367
1490
  useCustomGas: boolean;
1368
1491
  chainId: number;
1369
- rpcUrl: string;
1370
- executorAddress: string;
1371
- chainDetail: {
1372
- legacy?: boolean | undefined;
1373
- gasPrice?: number | undefined;
1374
- gasLimit?: number | undefined;
1375
- gasMultiplier?: number | undefined;
1376
- baseFee?: number | undefined;
1377
- priorityFee?: number | undefined;
1378
- baseFeeMultiplier?: number | undefined;
1379
- } & {
1380
- [k: string]: unknown;
1381
- };
1382
1492
  nftTokenId: string | number;
1383
1493
  lpResponse: Record<string, unknown>;
1494
+ keyGen?: {
1495
+ pubkeyhex: string;
1496
+ keylist?: string[] | undefined;
1497
+ ClientKeys?: Record<string, string> | undefined;
1498
+ } | undefined;
1499
+ rpcUrl?: string | undefined;
1500
+ executorAddress?: string | undefined;
1501
+ chainDetail?: z.objectOutputType<{
1502
+ legacy: z.ZodOptional<z.ZodBoolean>;
1503
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1504
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1505
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1506
+ baseFee: z.ZodOptional<z.ZodNumber>;
1507
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1508
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1509
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1384
1510
  customGasChainDetails?: Record<string, unknown> | undefined;
1385
1511
  nativeWrapped?: string | undefined;
1386
1512
  poolReference?: string | undefined;
1387
1513
  keyGenId?: string | undefined;
1388
1514
  }, {
1389
- keyGen: {
1515
+ purposeText: string;
1516
+ nftTokenId: string | number;
1517
+ lpResponse: Record<string, unknown>;
1518
+ keyGen?: {
1390
1519
  pubkeyhex: string;
1391
1520
  keylist?: string[] | undefined;
1392
1521
  ClientKeys?: Record<string, string> | undefined;
1393
- };
1522
+ } | undefined;
1523
+ useCustomGas?: unknown;
1524
+ chainId?: unknown;
1525
+ rpcUrl?: string | undefined;
1526
+ executorAddress?: string | undefined;
1527
+ chainDetail?: z.objectInputType<{
1528
+ legacy: z.ZodOptional<z.ZodBoolean>;
1529
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1530
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1531
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1532
+ baseFee: z.ZodOptional<z.ZodNumber>;
1533
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1534
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1535
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1536
+ customGasChainDetails?: Record<string, unknown> | undefined;
1537
+ nativeWrapped?: string | undefined;
1538
+ poolReference?: string | undefined;
1539
+ keyGenId?: string | undefined;
1540
+ }>, {
1394
1541
  purposeText: string;
1395
1542
  useCustomGas: boolean;
1396
1543
  chainId: number;
1397
- rpcUrl: string;
1398
- executorAddress: string;
1399
- chainDetail: {
1400
- legacy?: boolean | undefined;
1401
- gasPrice?: number | undefined;
1402
- gasLimit?: number | undefined;
1403
- gasMultiplier?: number | undefined;
1404
- baseFee?: number | undefined;
1405
- priorityFee?: number | undefined;
1406
- baseFeeMultiplier?: number | undefined;
1407
- } & {
1408
- [k: string]: unknown;
1409
- };
1410
1544
  nftTokenId: string | number;
1411
1545
  lpResponse: Record<string, unknown>;
1546
+ keyGen?: {
1547
+ pubkeyhex: string;
1548
+ keylist?: string[] | undefined;
1549
+ ClientKeys?: Record<string, string> | undefined;
1550
+ } | undefined;
1551
+ rpcUrl?: string | undefined;
1552
+ executorAddress?: string | undefined;
1553
+ chainDetail?: z.objectOutputType<{
1554
+ legacy: z.ZodOptional<z.ZodBoolean>;
1555
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1556
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1557
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1558
+ baseFee: z.ZodOptional<z.ZodNumber>;
1559
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1560
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1561
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1562
+ customGasChainDetails?: Record<string, unknown> | undefined;
1563
+ nativeWrapped?: string | undefined;
1564
+ poolReference?: string | undefined;
1565
+ keyGenId?: string | undefined;
1566
+ }, {
1567
+ purposeText: string;
1568
+ nftTokenId: string | number;
1569
+ lpResponse: Record<string, unknown>;
1570
+ keyGen?: {
1571
+ pubkeyhex: string;
1572
+ keylist?: string[] | undefined;
1573
+ ClientKeys?: Record<string, string> | undefined;
1574
+ } | undefined;
1575
+ useCustomGas?: unknown;
1576
+ chainId?: unknown;
1577
+ rpcUrl?: string | undefined;
1578
+ executorAddress?: string | undefined;
1579
+ chainDetail?: z.objectInputType<{
1580
+ legacy: z.ZodOptional<z.ZodBoolean>;
1581
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1582
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1583
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1584
+ baseFee: z.ZodOptional<z.ZodNumber>;
1585
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1586
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1587
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1412
1588
  customGasChainDetails?: Record<string, unknown> | undefined;
1413
1589
  nativeWrapped?: string | undefined;
1414
1590
  poolReference?: string | undefined;
1415
1591
  keyGenId?: string | undefined;
1416
1592
  }>;
1417
- declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodObject<{
1593
+ declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodEffects<z.ZodObject<{
1418
1594
  keyGenId: z.ZodOptional<z.ZodString>;
1419
- keyGen: z.ZodObject<{
1595
+ keyGen: z.ZodOptional<z.ZodObject<{
1420
1596
  pubkeyhex: z.ZodString;
1421
1597
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1422
1598
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -1428,13 +1604,13 @@ declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodObjec
1428
1604
  pubkeyhex: string;
1429
1605
  keylist?: string[] | undefined;
1430
1606
  ClientKeys?: Record<string, string> | undefined;
1431
- }>;
1607
+ }>>;
1432
1608
  purposeText: z.ZodString;
1433
- useCustomGas: z.ZodBoolean;
1434
- chainId: z.ZodNumber;
1435
- rpcUrl: z.ZodString;
1436
- executorAddress: z.ZodString;
1437
- chainDetail: z.ZodObject<{
1609
+ useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
1610
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
1611
+ rpcUrl: z.ZodOptional<z.ZodString>;
1612
+ executorAddress: z.ZodOptional<z.ZodString>;
1613
+ chainDetail: z.ZodOptional<z.ZodObject<{
1438
1614
  legacy: z.ZodOptional<z.ZodBoolean>;
1439
1615
  gasLimit: z.ZodOptional<z.ZodNumber>;
1440
1616
  gasMultiplier: z.ZodOptional<z.ZodNumber>;
@@ -1458,7 +1634,7 @@ declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodObjec
1458
1634
  baseFee: z.ZodOptional<z.ZodNumber>;
1459
1635
  priorityFee: z.ZodOptional<z.ZodNumber>;
1460
1636
  baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1461
- }, z.ZodTypeAny, "passthrough">>;
1637
+ }, z.ZodTypeAny, "passthrough">>>;
1462
1638
  customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1463
1639
  } & {
1464
1640
  nftTokenId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
@@ -1466,65 +1642,113 @@ declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodObjec
1466
1642
  nativeWrapped: z.ZodOptional<z.ZodString>;
1467
1643
  poolReference: z.ZodOptional<z.ZodString>;
1468
1644
  }, "strip", z.ZodTypeAny, {
1469
- keyGen: {
1470
- pubkeyhex: string;
1471
- keylist?: string[] | undefined;
1472
- ClientKeys?: Record<string, string> | undefined;
1473
- };
1474
1645
  purposeText: string;
1475
1646
  useCustomGas: boolean;
1476
1647
  chainId: number;
1477
- rpcUrl: string;
1478
- executorAddress: string;
1479
- chainDetail: {
1480
- legacy?: boolean | undefined;
1481
- gasPrice?: number | undefined;
1482
- gasLimit?: number | undefined;
1483
- gasMultiplier?: number | undefined;
1484
- baseFee?: number | undefined;
1485
- priorityFee?: number | undefined;
1486
- baseFeeMultiplier?: number | undefined;
1487
- } & {
1488
- [k: string]: unknown;
1489
- };
1490
1648
  nftTokenId: string | number;
1491
1649
  lpResponse: Record<string, unknown>;
1650
+ keyGen?: {
1651
+ pubkeyhex: string;
1652
+ keylist?: string[] | undefined;
1653
+ ClientKeys?: Record<string, string> | undefined;
1654
+ } | undefined;
1655
+ rpcUrl?: string | undefined;
1656
+ executorAddress?: string | undefined;
1657
+ chainDetail?: z.objectOutputType<{
1658
+ legacy: z.ZodOptional<z.ZodBoolean>;
1659
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1660
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1661
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1662
+ baseFee: z.ZodOptional<z.ZodNumber>;
1663
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1664
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1665
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1492
1666
  customGasChainDetails?: Record<string, unknown> | undefined;
1493
1667
  nativeWrapped?: string | undefined;
1494
1668
  poolReference?: string | undefined;
1495
1669
  keyGenId?: string | undefined;
1496
1670
  }, {
1497
- keyGen: {
1671
+ purposeText: string;
1672
+ nftTokenId: string | number;
1673
+ lpResponse: Record<string, unknown>;
1674
+ keyGen?: {
1498
1675
  pubkeyhex: string;
1499
1676
  keylist?: string[] | undefined;
1500
1677
  ClientKeys?: Record<string, string> | undefined;
1501
- };
1678
+ } | undefined;
1679
+ useCustomGas?: unknown;
1680
+ chainId?: unknown;
1681
+ rpcUrl?: string | undefined;
1682
+ executorAddress?: string | undefined;
1683
+ chainDetail?: z.objectInputType<{
1684
+ legacy: z.ZodOptional<z.ZodBoolean>;
1685
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1686
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1687
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1688
+ baseFee: z.ZodOptional<z.ZodNumber>;
1689
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1690
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1691
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1692
+ customGasChainDetails?: Record<string, unknown> | undefined;
1693
+ nativeWrapped?: string | undefined;
1694
+ poolReference?: string | undefined;
1695
+ keyGenId?: string | undefined;
1696
+ }>, {
1502
1697
  purposeText: string;
1503
1698
  useCustomGas: boolean;
1504
1699
  chainId: number;
1505
- rpcUrl: string;
1506
- executorAddress: string;
1507
- chainDetail: {
1508
- legacy?: boolean | undefined;
1509
- gasPrice?: number | undefined;
1510
- gasLimit?: number | undefined;
1511
- gasMultiplier?: number | undefined;
1512
- baseFee?: number | undefined;
1513
- priorityFee?: number | undefined;
1514
- baseFeeMultiplier?: number | undefined;
1515
- } & {
1516
- [k: string]: unknown;
1517
- };
1518
1700
  nftTokenId: string | number;
1519
1701
  lpResponse: Record<string, unknown>;
1702
+ keyGen?: {
1703
+ pubkeyhex: string;
1704
+ keylist?: string[] | undefined;
1705
+ ClientKeys?: Record<string, string> | undefined;
1706
+ } | undefined;
1707
+ rpcUrl?: string | undefined;
1708
+ executorAddress?: string | undefined;
1709
+ chainDetail?: z.objectOutputType<{
1710
+ legacy: z.ZodOptional<z.ZodBoolean>;
1711
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1712
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1713
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1714
+ baseFee: z.ZodOptional<z.ZodNumber>;
1715
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1716
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1717
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1718
+ customGasChainDetails?: Record<string, unknown> | undefined;
1719
+ nativeWrapped?: string | undefined;
1720
+ poolReference?: string | undefined;
1721
+ keyGenId?: string | undefined;
1722
+ }, {
1723
+ purposeText: string;
1724
+ nftTokenId: string | number;
1725
+ lpResponse: Record<string, unknown>;
1726
+ keyGen?: {
1727
+ pubkeyhex: string;
1728
+ keylist?: string[] | undefined;
1729
+ ClientKeys?: Record<string, string> | undefined;
1730
+ } | undefined;
1731
+ useCustomGas?: unknown;
1732
+ chainId?: unknown;
1733
+ rpcUrl?: string | undefined;
1734
+ executorAddress?: string | undefined;
1735
+ chainDetail?: z.objectInputType<{
1736
+ legacy: z.ZodOptional<z.ZodBoolean>;
1737
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1738
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1739
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1740
+ baseFee: z.ZodOptional<z.ZodNumber>;
1741
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1742
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1743
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1520
1744
  customGasChainDetails?: Record<string, unknown> | undefined;
1521
1745
  nativeWrapped?: string | undefined;
1522
1746
  poolReference?: string | undefined;
1523
1747
  keyGenId?: string | undefined;
1524
1748
  }>;
1525
- declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodObject<{
1749
+ declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodEffects<z.ZodObject<{
1526
1750
  keyGenId: z.ZodOptional<z.ZodString>;
1527
- keyGen: z.ZodObject<{
1751
+ keyGen: z.ZodOptional<z.ZodObject<{
1528
1752
  pubkeyhex: z.ZodString;
1529
1753
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1530
1754
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -1536,13 +1760,13 @@ declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodObject<{
1536
1760
  pubkeyhex: string;
1537
1761
  keylist?: string[] | undefined;
1538
1762
  ClientKeys?: Record<string, string> | undefined;
1539
- }>;
1763
+ }>>;
1540
1764
  purposeText: z.ZodString;
1541
- useCustomGas: z.ZodBoolean;
1542
- chainId: z.ZodNumber;
1543
- rpcUrl: z.ZodString;
1544
- executorAddress: z.ZodString;
1545
- chainDetail: z.ZodObject<{
1765
+ useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
1766
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
1767
+ rpcUrl: z.ZodOptional<z.ZodString>;
1768
+ executorAddress: z.ZodOptional<z.ZodString>;
1769
+ chainDetail: z.ZodOptional<z.ZodObject<{
1546
1770
  legacy: z.ZodOptional<z.ZodBoolean>;
1547
1771
  gasLimit: z.ZodOptional<z.ZodNumber>;
1548
1772
  gasMultiplier: z.ZodOptional<z.ZodNumber>;
@@ -1566,7 +1790,7 @@ declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodObject<{
1566
1790
  baseFee: z.ZodOptional<z.ZodNumber>;
1567
1791
  priorityFee: z.ZodOptional<z.ZodNumber>;
1568
1792
  baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1569
- }, z.ZodTypeAny, "passthrough">>;
1793
+ }, z.ZodTypeAny, "passthrough">>>;
1570
1794
  customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1571
1795
  } & {
1572
1796
  nftTokenId: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
@@ -1574,57 +1798,105 @@ declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodObject<{
1574
1798
  nativeWrapped: z.ZodOptional<z.ZodString>;
1575
1799
  poolReference: z.ZodOptional<z.ZodString>;
1576
1800
  }, "strip", z.ZodTypeAny, {
1577
- keyGen: {
1578
- pubkeyhex: string;
1579
- keylist?: string[] | undefined;
1580
- ClientKeys?: Record<string, string> | undefined;
1581
- };
1582
1801
  purposeText: string;
1583
1802
  useCustomGas: boolean;
1584
1803
  chainId: number;
1585
- rpcUrl: string;
1586
- executorAddress: string;
1587
- chainDetail: {
1588
- legacy?: boolean | undefined;
1589
- gasPrice?: number | undefined;
1590
- gasLimit?: number | undefined;
1591
- gasMultiplier?: number | undefined;
1592
- baseFee?: number | undefined;
1593
- priorityFee?: number | undefined;
1594
- baseFeeMultiplier?: number | undefined;
1595
- } & {
1596
- [k: string]: unknown;
1597
- };
1598
1804
  nftTokenId: string | number;
1599
1805
  lpResponse: Record<string, unknown>;
1806
+ keyGen?: {
1807
+ pubkeyhex: string;
1808
+ keylist?: string[] | undefined;
1809
+ ClientKeys?: Record<string, string> | undefined;
1810
+ } | undefined;
1811
+ rpcUrl?: string | undefined;
1812
+ executorAddress?: string | undefined;
1813
+ chainDetail?: z.objectOutputType<{
1814
+ legacy: z.ZodOptional<z.ZodBoolean>;
1815
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1816
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1817
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1818
+ baseFee: z.ZodOptional<z.ZodNumber>;
1819
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1820
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1821
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1600
1822
  customGasChainDetails?: Record<string, unknown> | undefined;
1601
1823
  nativeWrapped?: string | undefined;
1602
1824
  poolReference?: string | undefined;
1603
1825
  keyGenId?: string | undefined;
1604
1826
  }, {
1605
- keyGen: {
1827
+ purposeText: string;
1828
+ nftTokenId: string | number;
1829
+ lpResponse: Record<string, unknown>;
1830
+ keyGen?: {
1606
1831
  pubkeyhex: string;
1607
1832
  keylist?: string[] | undefined;
1608
1833
  ClientKeys?: Record<string, string> | undefined;
1609
- };
1834
+ } | undefined;
1835
+ useCustomGas?: unknown;
1836
+ chainId?: unknown;
1837
+ rpcUrl?: string | undefined;
1838
+ executorAddress?: string | undefined;
1839
+ chainDetail?: z.objectInputType<{
1840
+ legacy: z.ZodOptional<z.ZodBoolean>;
1841
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1842
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1843
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1844
+ baseFee: z.ZodOptional<z.ZodNumber>;
1845
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1846
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1847
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1848
+ customGasChainDetails?: Record<string, unknown> | undefined;
1849
+ nativeWrapped?: string | undefined;
1850
+ poolReference?: string | undefined;
1851
+ keyGenId?: string | undefined;
1852
+ }>, {
1610
1853
  purposeText: string;
1611
1854
  useCustomGas: boolean;
1612
1855
  chainId: number;
1613
- rpcUrl: string;
1614
- executorAddress: string;
1615
- chainDetail: {
1616
- legacy?: boolean | undefined;
1617
- gasPrice?: number | undefined;
1618
- gasLimit?: number | undefined;
1619
- gasMultiplier?: number | undefined;
1620
- baseFee?: number | undefined;
1621
- priorityFee?: number | undefined;
1622
- baseFeeMultiplier?: number | undefined;
1623
- } & {
1624
- [k: string]: unknown;
1625
- };
1626
1856
  nftTokenId: string | number;
1627
1857
  lpResponse: Record<string, unknown>;
1858
+ keyGen?: {
1859
+ pubkeyhex: string;
1860
+ keylist?: string[] | undefined;
1861
+ ClientKeys?: Record<string, string> | undefined;
1862
+ } | undefined;
1863
+ rpcUrl?: string | undefined;
1864
+ executorAddress?: string | undefined;
1865
+ chainDetail?: z.objectOutputType<{
1866
+ legacy: z.ZodOptional<z.ZodBoolean>;
1867
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1868
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1869
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1870
+ baseFee: z.ZodOptional<z.ZodNumber>;
1871
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1872
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1873
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1874
+ customGasChainDetails?: Record<string, unknown> | undefined;
1875
+ nativeWrapped?: string | undefined;
1876
+ poolReference?: string | undefined;
1877
+ keyGenId?: string | undefined;
1878
+ }, {
1879
+ purposeText: string;
1880
+ nftTokenId: string | number;
1881
+ lpResponse: Record<string, unknown>;
1882
+ keyGen?: {
1883
+ pubkeyhex: string;
1884
+ keylist?: string[] | undefined;
1885
+ ClientKeys?: Record<string, string> | undefined;
1886
+ } | undefined;
1887
+ useCustomGas?: unknown;
1888
+ chainId?: unknown;
1889
+ rpcUrl?: string | undefined;
1890
+ executorAddress?: string | undefined;
1891
+ chainDetail?: z.objectInputType<{
1892
+ legacy: z.ZodOptional<z.ZodBoolean>;
1893
+ gasLimit: z.ZodOptional<z.ZodNumber>;
1894
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
1895
+ gasPrice: z.ZodOptional<z.ZodNumber>;
1896
+ baseFee: z.ZodOptional<z.ZodNumber>;
1897
+ priorityFee: z.ZodOptional<z.ZodNumber>;
1898
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1899
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1628
1900
  customGasChainDetails?: Record<string, unknown> | undefined;
1629
1901
  nativeWrapped?: string | undefined;
1630
1902
  poolReference?: string | undefined;
@@ -1658,9 +1930,9 @@ declare const mcpCurveDaoQuoteInputSchema: z.ZodObject<{
1658
1930
  }>;
1659
1931
  declare const mcpCurveDaoQuoteOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1660
1932
  /** Input for MCP tool `ctm_curve_dao_build_swap_multisign`. */
1661
- declare const mcpCurveDaoBuildSwapMultisignInputSchema: z.ZodObject<{
1933
+ declare const mcpCurveDaoBuildSwapMultisignInputSchema: z.ZodEffects<z.ZodObject<{
1662
1934
  keyGenId: z.ZodOptional<z.ZodString>;
1663
- keyGen: z.ZodObject<{
1935
+ keyGen: z.ZodOptional<z.ZodObject<{
1664
1936
  pubkeyhex: z.ZodString;
1665
1937
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1666
1938
  ClientKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -1672,13 +1944,13 @@ declare const mcpCurveDaoBuildSwapMultisignInputSchema: z.ZodObject<{
1672
1944
  pubkeyhex: string;
1673
1945
  keylist?: string[] | undefined;
1674
1946
  ClientKeys?: Record<string, string> | undefined;
1675
- }>;
1947
+ }>>;
1676
1948
  purposeText: z.ZodString;
1677
- useCustomGas: z.ZodBoolean;
1678
- chainId: z.ZodNumber;
1679
- rpcUrl: z.ZodString;
1680
- executorAddress: z.ZodString;
1681
- chainDetail: z.ZodObject<{
1949
+ useCustomGas: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
1950
+ chainId: z.ZodEffects<z.ZodNumber, number, unknown>;
1951
+ rpcUrl: z.ZodOptional<z.ZodString>;
1952
+ executorAddress: z.ZodOptional<z.ZodString>;
1953
+ chainDetail: z.ZodOptional<z.ZodObject<{
1682
1954
  legacy: z.ZodOptional<z.ZodBoolean>;
1683
1955
  gasLimit: z.ZodOptional<z.ZodNumber>;
1684
1956
  gasMultiplier: z.ZodOptional<z.ZodNumber>;
@@ -1702,7 +1974,7 @@ declare const mcpCurveDaoBuildSwapMultisignInputSchema: z.ZodObject<{
1702
1974
  baseFee: z.ZodOptional<z.ZodNumber>;
1703
1975
  priorityFee: z.ZodOptional<z.ZodNumber>;
1704
1976
  baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
1705
- }, z.ZodTypeAny, "passthrough">>;
1977
+ }, z.ZodTypeAny, "passthrough">>>;
1706
1978
  customGasChainDetails: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1707
1979
  } & {
1708
1980
  tokenIn: z.ZodString;
@@ -1710,59 +1982,107 @@ declare const mcpCurveDaoBuildSwapMultisignInputSchema: z.ZodObject<{
1710
1982
  amountHuman: z.ZodString;
1711
1983
  slippagePercent: z.ZodNumber;
1712
1984
  }, "strip", z.ZodTypeAny, {
1713
- keyGen: {
1714
- pubkeyhex: string;
1715
- keylist?: string[] | undefined;
1716
- ClientKeys?: Record<string, string> | undefined;
1717
- };
1718
1985
  purposeText: string;
1719
1986
  useCustomGas: boolean;
1720
1987
  chainId: number;
1721
1988
  tokenIn: string;
1722
1989
  tokenOut: string;
1723
- rpcUrl: string;
1724
- executorAddress: string;
1725
- chainDetail: {
1726
- legacy?: boolean | undefined;
1727
- gasPrice?: number | undefined;
1728
- gasLimit?: number | undefined;
1729
- gasMultiplier?: number | undefined;
1730
- baseFee?: number | undefined;
1731
- priorityFee?: number | undefined;
1732
- baseFeeMultiplier?: number | undefined;
1733
- } & {
1734
- [k: string]: unknown;
1735
- };
1736
1990
  slippagePercent: number;
1737
1991
  amountHuman: string;
1992
+ keyGen?: {
1993
+ pubkeyhex: string;
1994
+ keylist?: string[] | undefined;
1995
+ ClientKeys?: Record<string, string> | undefined;
1996
+ } | undefined;
1997
+ rpcUrl?: string | undefined;
1998
+ executorAddress?: string | undefined;
1999
+ chainDetail?: z.objectOutputType<{
2000
+ legacy: z.ZodOptional<z.ZodBoolean>;
2001
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2002
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2003
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2004
+ baseFee: z.ZodOptional<z.ZodNumber>;
2005
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2006
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2007
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1738
2008
  customGasChainDetails?: Record<string, unknown> | undefined;
1739
2009
  keyGenId?: string | undefined;
1740
2010
  }, {
1741
- keyGen: {
2011
+ purposeText: string;
2012
+ tokenIn: string;
2013
+ tokenOut: string;
2014
+ slippagePercent: number;
2015
+ amountHuman: string;
2016
+ keyGen?: {
1742
2017
  pubkeyhex: string;
1743
2018
  keylist?: string[] | undefined;
1744
2019
  ClientKeys?: Record<string, string> | undefined;
1745
- };
2020
+ } | undefined;
2021
+ useCustomGas?: unknown;
2022
+ chainId?: unknown;
2023
+ rpcUrl?: string | undefined;
2024
+ executorAddress?: string | undefined;
2025
+ chainDetail?: z.objectInputType<{
2026
+ legacy: z.ZodOptional<z.ZodBoolean>;
2027
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2028
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2029
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2030
+ baseFee: z.ZodOptional<z.ZodNumber>;
2031
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2032
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2033
+ }, z.ZodTypeAny, "passthrough"> | undefined;
2034
+ customGasChainDetails?: Record<string, unknown> | undefined;
2035
+ keyGenId?: string | undefined;
2036
+ }>, {
1746
2037
  purposeText: string;
1747
2038
  useCustomGas: boolean;
1748
2039
  chainId: number;
1749
2040
  tokenIn: string;
1750
2041
  tokenOut: string;
1751
- rpcUrl: string;
1752
- executorAddress: string;
1753
- chainDetail: {
1754
- legacy?: boolean | undefined;
1755
- gasPrice?: number | undefined;
1756
- gasLimit?: number | undefined;
1757
- gasMultiplier?: number | undefined;
1758
- baseFee?: number | undefined;
1759
- priorityFee?: number | undefined;
1760
- baseFeeMultiplier?: number | undefined;
1761
- } & {
1762
- [k: string]: unknown;
1763
- };
1764
2042
  slippagePercent: number;
1765
2043
  amountHuman: string;
2044
+ keyGen?: {
2045
+ pubkeyhex: string;
2046
+ keylist?: string[] | undefined;
2047
+ ClientKeys?: Record<string, string> | undefined;
2048
+ } | undefined;
2049
+ rpcUrl?: string | undefined;
2050
+ executorAddress?: string | undefined;
2051
+ chainDetail?: z.objectOutputType<{
2052
+ legacy: z.ZodOptional<z.ZodBoolean>;
2053
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2054
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2055
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2056
+ baseFee: z.ZodOptional<z.ZodNumber>;
2057
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2058
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2059
+ }, z.ZodTypeAny, "passthrough"> | undefined;
2060
+ customGasChainDetails?: Record<string, unknown> | undefined;
2061
+ keyGenId?: string | undefined;
2062
+ }, {
2063
+ purposeText: string;
2064
+ tokenIn: string;
2065
+ tokenOut: string;
2066
+ slippagePercent: number;
2067
+ amountHuman: string;
2068
+ keyGen?: {
2069
+ pubkeyhex: string;
2070
+ keylist?: string[] | undefined;
2071
+ ClientKeys?: Record<string, string> | undefined;
2072
+ } | undefined;
2073
+ useCustomGas?: unknown;
2074
+ chainId?: unknown;
2075
+ rpcUrl?: string | undefined;
2076
+ executorAddress?: string | undefined;
2077
+ chainDetail?: z.objectInputType<{
2078
+ legacy: z.ZodOptional<z.ZodBoolean>;
2079
+ gasLimit: z.ZodOptional<z.ZodNumber>;
2080
+ gasMultiplier: z.ZodOptional<z.ZodNumber>;
2081
+ gasPrice: z.ZodOptional<z.ZodNumber>;
2082
+ baseFee: z.ZodOptional<z.ZodNumber>;
2083
+ priorityFee: z.ZodOptional<z.ZodNumber>;
2084
+ baseFeeMultiplier: z.ZodOptional<z.ZodNumber>;
2085
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1766
2086
  customGasChainDetails?: Record<string, unknown> | undefined;
1767
2087
  keyGenId?: string | undefined;
1768
2088
  }>;
@@ -1771,209 +2091,325 @@ type McpCurveDaoQuoteOutput = z.infer<typeof mcpCurveDaoQuoteOutputSchema>;
1771
2091
  type McpCurveDaoBuildSwapMultisignInput = z.infer<typeof mcpCurveDaoBuildSwapMultisignInputSchema>;
1772
2092
 
1773
2093
  /** Extend common multisign inputs with protocol-specific fields. */
1774
- declare function mcpMultisignInput(fields: z.ZodRawShape): z.ZodObject<{} & {
2094
+ declare function mcpMultisignInput(fields: z.ZodRawShape): z.ZodEffects<z.ZodObject<{} & {
1775
2095
  [x: string]: z.ZodTypeAny;
1776
2096
  }, "strip", z.ZodTypeAny, {
1777
2097
  [x: string]: any;
1778
2098
  }, {
1779
2099
  [x: string]: any;
2100
+ }>, {
2101
+ [x: string]: any;
2102
+ }, {
2103
+ [x: string]: any;
1780
2104
  }>;
1781
2105
 
1782
- declare const mcpLidoSubmitInputSchema: z.ZodObject<{} & {
2106
+ declare const mcpLidoSubmitInputSchema: z.ZodEffects<z.ZodObject<{} & {
1783
2107
  [x: string]: z.ZodTypeAny;
1784
2108
  }, "strip", z.ZodTypeAny, {
1785
2109
  [x: string]: any;
1786
2110
  }, {
1787
2111
  [x: string]: any;
2112
+ }>, {
2113
+ [x: string]: any;
2114
+ }, {
2115
+ [x: string]: any;
1788
2116
  }>;
1789
- declare const mcpLidoRequestWithdrawalsInputSchema: z.ZodObject<{} & {
2117
+ declare const mcpLidoRequestWithdrawalsInputSchema: z.ZodEffects<z.ZodObject<{} & {
1790
2118
  [x: string]: z.ZodTypeAny;
1791
2119
  }, "strip", z.ZodTypeAny, {
1792
2120
  [x: string]: any;
1793
2121
  }, {
1794
2122
  [x: string]: any;
2123
+ }>, {
2124
+ [x: string]: any;
2125
+ }, {
2126
+ [x: string]: any;
1795
2127
  }>;
1796
- declare const mcpLidoClaimWithdrawalInputSchema: z.ZodObject<{} & {
2128
+ declare const mcpLidoClaimWithdrawalInputSchema: z.ZodEffects<z.ZodObject<{} & {
1797
2129
  [x: string]: z.ZodTypeAny;
1798
2130
  }, "strip", z.ZodTypeAny, {
1799
2131
  [x: string]: any;
1800
2132
  }, {
1801
2133
  [x: string]: any;
2134
+ }>, {
2135
+ [x: string]: any;
2136
+ }, {
2137
+ [x: string]: any;
1802
2138
  }>;
1803
- declare const mcpLidoWrapStEthInputSchema: z.ZodObject<{} & {
2139
+ declare const mcpLidoWrapStEthInputSchema: z.ZodEffects<z.ZodObject<{} & {
1804
2140
  [x: string]: z.ZodTypeAny;
1805
2141
  }, "strip", z.ZodTypeAny, {
1806
2142
  [x: string]: any;
1807
2143
  }, {
1808
2144
  [x: string]: any;
2145
+ }>, {
2146
+ [x: string]: any;
2147
+ }, {
2148
+ [x: string]: any;
1809
2149
  }>;
1810
- declare const mcpLidoUnwrapWstEthInputSchema: z.ZodObject<{} & {
2150
+ declare const mcpLidoUnwrapWstEthInputSchema: z.ZodEffects<z.ZodObject<{} & {
1811
2151
  [x: string]: z.ZodTypeAny;
1812
2152
  }, "strip", z.ZodTypeAny, {
1813
2153
  [x: string]: any;
1814
2154
  }, {
1815
2155
  [x: string]: any;
2156
+ }>, {
2157
+ [x: string]: any;
2158
+ }, {
2159
+ [x: string]: any;
1816
2160
  }>;
1817
- declare const mcpEthenaStakeInputSchema: z.ZodObject<{} & {
2161
+ declare const mcpEthenaStakeInputSchema: z.ZodEffects<z.ZodObject<{} & {
1818
2162
  [x: string]: z.ZodTypeAny;
1819
2163
  }, "strip", z.ZodTypeAny, {
1820
2164
  [x: string]: any;
1821
2165
  }, {
1822
2166
  [x: string]: any;
2167
+ }>, {
2168
+ [x: string]: any;
2169
+ }, {
2170
+ [x: string]: any;
1823
2171
  }>;
1824
- declare const mcpEthenaRedeemInputSchema: z.ZodObject<{} & {
2172
+ declare const mcpEthenaRedeemInputSchema: z.ZodEffects<z.ZodObject<{} & {
1825
2173
  [x: string]: z.ZodTypeAny;
1826
2174
  }, "strip", z.ZodTypeAny, {
1827
2175
  [x: string]: any;
1828
2176
  }, {
1829
2177
  [x: string]: any;
2178
+ }>, {
2179
+ [x: string]: any;
2180
+ }, {
2181
+ [x: string]: any;
1830
2182
  }>;
1831
- declare const mcpEthenaCooldownInputSchema: z.ZodObject<{} & {
2183
+ declare const mcpEthenaCooldownInputSchema: z.ZodEffects<z.ZodObject<{} & {
1832
2184
  [x: string]: z.ZodTypeAny;
1833
2185
  }, "strip", z.ZodTypeAny, {
1834
2186
  [x: string]: any;
1835
2187
  }, {
1836
2188
  [x: string]: any;
2189
+ }>, {
2190
+ [x: string]: any;
2191
+ }, {
2192
+ [x: string]: any;
1837
2193
  }>;
1838
- declare const mcpEthenaClaimInputSchema: z.ZodObject<{} & {
2194
+ declare const mcpEthenaClaimInputSchema: z.ZodEffects<z.ZodObject<{} & {
1839
2195
  [x: string]: z.ZodTypeAny;
1840
2196
  }, "strip", z.ZodTypeAny, {
1841
2197
  [x: string]: any;
1842
2198
  }, {
1843
2199
  [x: string]: any;
2200
+ }>, {
2201
+ [x: string]: any;
2202
+ }, {
2203
+ [x: string]: any;
1844
2204
  }>;
1845
- declare const mcpMapleDepositInputSchema: z.ZodObject<{} & {
2205
+ declare const mcpMapleDepositInputSchema: z.ZodEffects<z.ZodObject<{} & {
1846
2206
  [x: string]: z.ZodTypeAny;
1847
2207
  }, "strip", z.ZodTypeAny, {
1848
2208
  [x: string]: any;
1849
2209
  }, {
1850
2210
  [x: string]: any;
2211
+ }>, {
2212
+ [x: string]: any;
2213
+ }, {
2214
+ [x: string]: any;
1851
2215
  }>;
1852
- declare const mcpMapleRequestRedeemInputSchema: z.ZodObject<{} & {
2216
+ declare const mcpMapleRequestRedeemInputSchema: z.ZodEffects<z.ZodObject<{} & {
1853
2217
  [x: string]: z.ZodTypeAny;
1854
2218
  }, "strip", z.ZodTypeAny, {
1855
2219
  [x: string]: any;
1856
2220
  }, {
1857
2221
  [x: string]: any;
2222
+ }>, {
2223
+ [x: string]: any;
2224
+ }, {
2225
+ [x: string]: any;
1858
2226
  }>;
1859
- declare const mcpSkyLockstakeStakeInputSchema: z.ZodObject<{} & {
2227
+ declare const mcpSkyLockstakeStakeInputSchema: z.ZodEffects<z.ZodObject<{} & {
1860
2228
  [x: string]: z.ZodTypeAny;
1861
2229
  }, "strip", z.ZodTypeAny, {
1862
2230
  [x: string]: any;
1863
2231
  }, {
1864
2232
  [x: string]: any;
2233
+ }>, {
2234
+ [x: string]: any;
2235
+ }, {
2236
+ [x: string]: any;
1865
2237
  }>;
1866
- declare const mcpSkyLockstakeDrawInputSchema: z.ZodObject<{} & {
2238
+ declare const mcpSkyLockstakeDrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
1867
2239
  [x: string]: z.ZodTypeAny;
1868
2240
  }, "strip", z.ZodTypeAny, {
1869
2241
  [x: string]: any;
1870
2242
  }, {
1871
2243
  [x: string]: any;
2244
+ }>, {
2245
+ [x: string]: any;
2246
+ }, {
2247
+ [x: string]: any;
1872
2248
  }>;
1873
- declare const mcpSkyLockstakeWipeInputSchema: z.ZodObject<{} & {
2249
+ declare const mcpSkyLockstakeWipeInputSchema: z.ZodEffects<z.ZodObject<{} & {
1874
2250
  [x: string]: z.ZodTypeAny;
1875
2251
  }, "strip", z.ZodTypeAny, {
1876
2252
  [x: string]: any;
1877
2253
  }, {
1878
2254
  [x: string]: any;
2255
+ }>, {
2256
+ [x: string]: any;
2257
+ }, {
2258
+ [x: string]: any;
1879
2259
  }>;
1880
- declare const mcpSkyLockstakeCloseInputSchema: z.ZodObject<{} & {
2260
+ declare const mcpSkyLockstakeCloseInputSchema: z.ZodEffects<z.ZodObject<{} & {
1881
2261
  [x: string]: z.ZodTypeAny;
1882
2262
  }, "strip", z.ZodTypeAny, {
1883
2263
  [x: string]: any;
1884
2264
  }, {
1885
2265
  [x: string]: any;
2266
+ }>, {
2267
+ [x: string]: any;
2268
+ }, {
2269
+ [x: string]: any;
1886
2270
  }>;
1887
- declare const mcpSkyLockstakeGetRewardInputSchema: z.ZodObject<{} & {
2271
+ declare const mcpSkyLockstakeGetRewardInputSchema: z.ZodEffects<z.ZodObject<{} & {
1888
2272
  [x: string]: z.ZodTypeAny;
1889
2273
  }, "strip", z.ZodTypeAny, {
1890
2274
  [x: string]: any;
1891
2275
  }, {
1892
2276
  [x: string]: any;
2277
+ }>, {
2278
+ [x: string]: any;
2279
+ }, {
2280
+ [x: string]: any;
1893
2281
  }>;
1894
- declare const mcpSkySusdsDepositInputSchema: z.ZodObject<{} & {
2282
+ declare const mcpSkySusdsDepositInputSchema: z.ZodEffects<z.ZodObject<{} & {
1895
2283
  [x: string]: z.ZodTypeAny;
1896
2284
  }, "strip", z.ZodTypeAny, {
1897
2285
  [x: string]: any;
1898
2286
  }, {
1899
2287
  [x: string]: any;
2288
+ }>, {
2289
+ [x: string]: any;
2290
+ }, {
2291
+ [x: string]: any;
1900
2292
  }>;
1901
- declare const mcpSkySusdsRedeemInputSchema: z.ZodObject<{} & {
2293
+ declare const mcpSkySusdsRedeemInputSchema: z.ZodEffects<z.ZodObject<{} & {
1902
2294
  [x: string]: z.ZodTypeAny;
1903
2295
  }, "strip", z.ZodTypeAny, {
1904
2296
  [x: string]: any;
1905
2297
  }, {
1906
2298
  [x: string]: any;
2299
+ }>, {
2300
+ [x: string]: any;
2301
+ }, {
2302
+ [x: string]: any;
1907
2303
  }>;
1908
- declare const mcpAaveV4DepositInputSchema: z.ZodObject<{} & {
2304
+ declare const mcpAaveV4DepositInputSchema: z.ZodEffects<z.ZodObject<{} & {
1909
2305
  [x: string]: z.ZodTypeAny;
1910
2306
  }, "strip", z.ZodTypeAny, {
1911
2307
  [x: string]: any;
1912
2308
  }, {
1913
2309
  [x: string]: any;
2310
+ }>, {
2311
+ [x: string]: any;
2312
+ }, {
2313
+ [x: string]: any;
1914
2314
  }>;
1915
- declare const mcpAaveV4WithdrawInputSchema: z.ZodObject<{} & {
2315
+ declare const mcpAaveV4WithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
1916
2316
  [x: string]: z.ZodTypeAny;
1917
2317
  }, "strip", z.ZodTypeAny, {
1918
2318
  [x: string]: any;
1919
2319
  }, {
1920
2320
  [x: string]: any;
2321
+ }>, {
2322
+ [x: string]: any;
2323
+ }, {
2324
+ [x: string]: any;
1921
2325
  }>;
1922
- declare const mcpAaveV4BorrowInputSchema: z.ZodObject<{} & {
2326
+ declare const mcpAaveV4BorrowInputSchema: z.ZodEffects<z.ZodObject<{} & {
1923
2327
  [x: string]: z.ZodTypeAny;
1924
2328
  }, "strip", z.ZodTypeAny, {
1925
2329
  [x: string]: any;
1926
2330
  }, {
1927
2331
  [x: string]: any;
2332
+ }>, {
2333
+ [x: string]: any;
2334
+ }, {
2335
+ [x: string]: any;
1928
2336
  }>;
1929
- declare const mcpAaveV4RepayInputSchema: z.ZodObject<{} & {
2337
+ declare const mcpAaveV4RepayInputSchema: z.ZodEffects<z.ZodObject<{} & {
1930
2338
  [x: string]: z.ZodTypeAny;
1931
2339
  }, "strip", z.ZodTypeAny, {
1932
2340
  [x: string]: any;
1933
2341
  }, {
1934
2342
  [x: string]: any;
2343
+ }>, {
2344
+ [x: string]: any;
2345
+ }, {
2346
+ [x: string]: any;
1935
2347
  }>;
1936
- declare const mcpEulerV2IsolatedLendInputSchema: z.ZodObject<{} & {
2348
+ declare const mcpEulerV2IsolatedLendInputSchema: z.ZodEffects<z.ZodObject<{} & {
1937
2349
  [x: string]: z.ZodTypeAny;
1938
2350
  }, "strip", z.ZodTypeAny, {
1939
2351
  [x: string]: any;
1940
2352
  }, {
1941
2353
  [x: string]: any;
2354
+ }>, {
2355
+ [x: string]: any;
2356
+ }, {
2357
+ [x: string]: any;
1942
2358
  }>;
1943
- declare const mcpEulerV2IsolatedBorrowInputSchema: z.ZodObject<{} & {
2359
+ declare const mcpEulerV2IsolatedBorrowInputSchema: z.ZodEffects<z.ZodObject<{} & {
1944
2360
  [x: string]: z.ZodTypeAny;
1945
2361
  }, "strip", z.ZodTypeAny, {
1946
2362
  [x: string]: any;
1947
2363
  }, {
1948
2364
  [x: string]: any;
2365
+ }>, {
2366
+ [x: string]: any;
2367
+ }, {
2368
+ [x: string]: any;
1949
2369
  }>;
1950
- declare const mcpEulerV2VaultWithdrawInputSchema: z.ZodObject<{} & {
2370
+ declare const mcpEulerV2VaultWithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
1951
2371
  [x: string]: z.ZodTypeAny;
1952
2372
  }, "strip", z.ZodTypeAny, {
1953
2373
  [x: string]: any;
1954
2374
  }, {
1955
2375
  [x: string]: any;
2376
+ }>, {
2377
+ [x: string]: any;
2378
+ }, {
2379
+ [x: string]: any;
1956
2380
  }>;
1957
- declare const mcpEulerV2BorrowRepayInputSchema: z.ZodObject<{} & {
2381
+ declare const mcpEulerV2BorrowRepayInputSchema: z.ZodEffects<z.ZodObject<{} & {
1958
2382
  [x: string]: z.ZodTypeAny;
1959
2383
  }, "strip", z.ZodTypeAny, {
1960
2384
  [x: string]: any;
1961
2385
  }, {
1962
2386
  [x: string]: any;
2387
+ }>, {
2388
+ [x: string]: any;
2389
+ }, {
2390
+ [x: string]: any;
1963
2391
  }>;
1964
- declare const mcpEulerV2CollateralDepositInputSchema: z.ZodObject<{} & {
2392
+ declare const mcpEulerV2CollateralDepositInputSchema: z.ZodEffects<z.ZodObject<{} & {
1965
2393
  [x: string]: z.ZodTypeAny;
1966
2394
  }, "strip", z.ZodTypeAny, {
1967
2395
  [x: string]: any;
1968
2396
  }, {
1969
2397
  [x: string]: any;
2398
+ }>, {
2399
+ [x: string]: any;
2400
+ }, {
2401
+ [x: string]: any;
1970
2402
  }>;
1971
- declare const mcpEulerV2CollateralWithdrawInputSchema: z.ZodObject<{} & {
2403
+ declare const mcpEulerV2CollateralWithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
1972
2404
  [x: string]: z.ZodTypeAny;
1973
2405
  }, "strip", z.ZodTypeAny, {
1974
2406
  [x: string]: any;
1975
2407
  }, {
1976
2408
  [x: string]: any;
2409
+ }>, {
2410
+ [x: string]: any;
2411
+ }, {
2412
+ [x: string]: any;
1977
2413
  }>;
1978
2414
  type McpLidoSubmitInput = z.infer<typeof mcpLidoSubmitInputSchema>;
1979
2415
  type McpEthenaStakeInput = z.infer<typeof mcpEthenaStakeInputSchema>;
@@ -1981,54 +2417,82 @@ type McpMapleDepositInput = z.infer<typeof mcpMapleDepositInputSchema>;
1981
2417
  type McpSkyLockstakeStakeInput = z.infer<typeof mcpSkyLockstakeStakeInputSchema>;
1982
2418
  type McpAaveV4DepositInput = z.infer<typeof mcpAaveV4DepositInputSchema>;
1983
2419
  type McpEulerV2IsolatedLendInput = z.infer<typeof mcpEulerV2IsolatedLendInputSchema>;
1984
- declare const mcpMorphoVaultDepositInputSchema: z.ZodObject<{} & {
2420
+ declare const mcpMorphoVaultDepositInputSchema: z.ZodEffects<z.ZodObject<{} & {
1985
2421
  [x: string]: z.ZodTypeAny;
1986
2422
  }, "strip", z.ZodTypeAny, {
1987
2423
  [x: string]: any;
1988
2424
  }, {
1989
2425
  [x: string]: any;
2426
+ }>, {
2427
+ [x: string]: any;
2428
+ }, {
2429
+ [x: string]: any;
1990
2430
  }>;
1991
- declare const mcpMorphoVaultWithdrawInputSchema: z.ZodObject<{} & {
2431
+ declare const mcpMorphoVaultWithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
1992
2432
  [x: string]: z.ZodTypeAny;
1993
2433
  }, "strip", z.ZodTypeAny, {
1994
2434
  [x: string]: any;
1995
2435
  }, {
1996
2436
  [x: string]: any;
2437
+ }>, {
2438
+ [x: string]: any;
2439
+ }, {
2440
+ [x: string]: any;
1997
2441
  }>;
1998
- declare const mcpMorphoBlueCollateralDepositInputSchema: z.ZodObject<{} & {
2442
+ declare const mcpMorphoBlueCollateralDepositInputSchema: z.ZodEffects<z.ZodObject<{} & {
1999
2443
  [x: string]: z.ZodTypeAny;
2000
2444
  }, "strip", z.ZodTypeAny, {
2001
2445
  [x: string]: any;
2002
2446
  }, {
2003
2447
  [x: string]: any;
2448
+ }>, {
2449
+ [x: string]: any;
2450
+ }, {
2451
+ [x: string]: any;
2004
2452
  }>;
2005
- declare const mcpMorphoBlueBorrowInputSchema: z.ZodObject<{} & {
2453
+ declare const mcpMorphoBlueBorrowInputSchema: z.ZodEffects<z.ZodObject<{} & {
2006
2454
  [x: string]: z.ZodTypeAny;
2007
2455
  }, "strip", z.ZodTypeAny, {
2008
2456
  [x: string]: any;
2009
2457
  }, {
2010
2458
  [x: string]: any;
2459
+ }>, {
2460
+ [x: string]: any;
2461
+ }, {
2462
+ [x: string]: any;
2011
2463
  }>;
2012
- declare const mcpMorphoBlueRepayInputSchema: z.ZodObject<{} & {
2464
+ declare const mcpMorphoBlueRepayInputSchema: z.ZodEffects<z.ZodObject<{} & {
2013
2465
  [x: string]: z.ZodTypeAny;
2014
2466
  }, "strip", z.ZodTypeAny, {
2015
2467
  [x: string]: any;
2016
2468
  }, {
2017
2469
  [x: string]: any;
2470
+ }>, {
2471
+ [x: string]: any;
2472
+ }, {
2473
+ [x: string]: any;
2018
2474
  }>;
2019
- declare const mcpMorphoBlueCollateralWithdrawInputSchema: z.ZodObject<{} & {
2475
+ declare const mcpMorphoBlueCollateralWithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
2020
2476
  [x: string]: z.ZodTypeAny;
2021
2477
  }, "strip", z.ZodTypeAny, {
2022
2478
  [x: string]: any;
2023
2479
  }, {
2024
2480
  [x: string]: any;
2481
+ }>, {
2482
+ [x: string]: any;
2483
+ }, {
2484
+ [x: string]: any;
2025
2485
  }>;
2026
- declare const mcpMorphoMerklClaimInputSchema: z.ZodObject<{} & {
2486
+ declare const mcpMorphoMerklClaimInputSchema: z.ZodEffects<z.ZodObject<{} & {
2027
2487
  [x: string]: z.ZodTypeAny;
2028
2488
  }, "strip", z.ZodTypeAny, {
2029
2489
  [x: string]: any;
2030
2490
  }, {
2031
2491
  [x: string]: any;
2492
+ }>, {
2493
+ [x: string]: any;
2494
+ }, {
2495
+ [x: string]: any;
2032
2496
  }>;
2033
2497
  type McpMorphoVaultDepositInput = z.infer<typeof mcpMorphoVaultDepositInputSchema>;
2034
2498
 
@@ -2217,54 +2681,82 @@ declare const mcpGmxFetchPositionsOutputSchema: z.ZodObject<{
2217
2681
  }, {
2218
2682
  positions: Record<string, unknown>[];
2219
2683
  }>;
2220
- declare const mcpGmxIncreaseInputSchema: z.ZodObject<{} & {
2684
+ declare const mcpGmxIncreaseInputSchema: z.ZodEffects<z.ZodObject<{} & {
2221
2685
  [x: string]: z.ZodTypeAny;
2222
2686
  }, "strip", z.ZodTypeAny, {
2223
2687
  [x: string]: any;
2224
2688
  }, {
2225
2689
  [x: string]: any;
2690
+ }>, {
2691
+ [x: string]: any;
2692
+ }, {
2693
+ [x: string]: any;
2226
2694
  }>;
2227
- declare const mcpGmxDecreaseInputSchema: z.ZodObject<{} & {
2695
+ declare const mcpGmxDecreaseInputSchema: z.ZodEffects<z.ZodObject<{} & {
2228
2696
  [x: string]: z.ZodTypeAny;
2229
2697
  }, "strip", z.ZodTypeAny, {
2230
2698
  [x: string]: any;
2231
2699
  }, {
2232
2700
  [x: string]: any;
2701
+ }>, {
2702
+ [x: string]: any;
2703
+ }, {
2704
+ [x: string]: any;
2233
2705
  }>;
2234
- declare const mcpGmxCancelInputSchema: z.ZodObject<{} & {
2706
+ declare const mcpGmxCancelInputSchema: z.ZodEffects<z.ZodObject<{} & {
2235
2707
  [x: string]: z.ZodTypeAny;
2236
2708
  }, "strip", z.ZodTypeAny, {
2237
2709
  [x: string]: any;
2238
2710
  }, {
2239
2711
  [x: string]: any;
2712
+ }>, {
2713
+ [x: string]: any;
2714
+ }, {
2715
+ [x: string]: any;
2240
2716
  }>;
2241
- declare const mcpGmxGmDepositInputSchema: z.ZodObject<{} & {
2717
+ declare const mcpGmxGmDepositInputSchema: z.ZodEffects<z.ZodObject<{} & {
2242
2718
  [x: string]: z.ZodTypeAny;
2243
2719
  }, "strip", z.ZodTypeAny, {
2244
2720
  [x: string]: any;
2245
2721
  }, {
2246
2722
  [x: string]: any;
2723
+ }>, {
2724
+ [x: string]: any;
2725
+ }, {
2726
+ [x: string]: any;
2247
2727
  }>;
2248
- declare const mcpGmxGmWithdrawInputSchema: z.ZodObject<{} & {
2728
+ declare const mcpGmxGmWithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
2249
2729
  [x: string]: z.ZodTypeAny;
2250
2730
  }, "strip", z.ZodTypeAny, {
2251
2731
  [x: string]: any;
2252
2732
  }, {
2253
2733
  [x: string]: any;
2734
+ }>, {
2735
+ [x: string]: any;
2736
+ }, {
2737
+ [x: string]: any;
2254
2738
  }>;
2255
- declare const mcpGmxStakeGmxInputSchema: z.ZodObject<{} & {
2739
+ declare const mcpGmxStakeGmxInputSchema: z.ZodEffects<z.ZodObject<{} & {
2256
2740
  [x: string]: z.ZodTypeAny;
2257
2741
  }, "strip", z.ZodTypeAny, {
2258
2742
  [x: string]: any;
2259
2743
  }, {
2260
2744
  [x: string]: any;
2745
+ }>, {
2746
+ [x: string]: any;
2747
+ }, {
2748
+ [x: string]: any;
2261
2749
  }>;
2262
- declare const mcpGmxUnstakeGmxInputSchema: z.ZodObject<{} & {
2750
+ declare const mcpGmxUnstakeGmxInputSchema: z.ZodEffects<z.ZodObject<{} & {
2263
2751
  [x: string]: z.ZodTypeAny;
2264
2752
  }, "strip", z.ZodTypeAny, {
2265
2753
  [x: string]: any;
2266
2754
  }, {
2267
2755
  [x: string]: any;
2756
+ }>, {
2757
+ [x: string]: any;
2758
+ }, {
2759
+ [x: string]: any;
2268
2760
  }>;
2269
2761
  declare const mcpGmxFetchGmMarketsInputSchema: z.ZodObject<{
2270
2762
  chainId: z.ZodNumber;
@@ -3509,77 +4001,125 @@ declare const mcpHyperliquidFetchDelegationsOutputSchema: z.ZodObject<{
3509
4001
  validator: string;
3510
4002
  }[];
3511
4003
  }>;
3512
- declare const mcpHyperliquidLimitOrderInputSchema: z.ZodObject<{} & {
4004
+ declare const mcpHyperliquidLimitOrderInputSchema: z.ZodEffects<z.ZodObject<{} & {
3513
4005
  [x: string]: z.ZodTypeAny;
3514
4006
  }, "strip", z.ZodTypeAny, {
3515
4007
  [x: string]: any;
3516
4008
  }, {
3517
4009
  [x: string]: any;
4010
+ }>, {
4011
+ [x: string]: any;
4012
+ }, {
4013
+ [x: string]: any;
3518
4014
  }>;
3519
- declare const mcpHyperliquidCloseInputSchema: z.ZodObject<{} & {
4015
+ declare const mcpHyperliquidCloseInputSchema: z.ZodEffects<z.ZodObject<{} & {
3520
4016
  [x: string]: z.ZodTypeAny;
3521
4017
  }, "strip", z.ZodTypeAny, {
3522
4018
  [x: string]: any;
3523
4019
  }, {
3524
4020
  [x: string]: any;
4021
+ }>, {
4022
+ [x: string]: any;
4023
+ }, {
4024
+ [x: string]: any;
3525
4025
  }>;
3526
- declare const mcpHyperliquidCancelInputSchema: z.ZodObject<{} & {
4026
+ declare const mcpHyperliquidCancelInputSchema: z.ZodEffects<z.ZodObject<{} & {
3527
4027
  [x: string]: z.ZodTypeAny;
3528
4028
  }, "strip", z.ZodTypeAny, {
3529
4029
  [x: string]: any;
3530
4030
  }, {
3531
4031
  [x: string]: any;
4032
+ }>, {
4033
+ [x: string]: any;
4034
+ }, {
4035
+ [x: string]: any;
3532
4036
  }>;
3533
- declare const mcpHyperliquidUsdTransferInputSchema: z.ZodObject<{} & {
4037
+ declare const mcpHyperliquidUsdTransferInputSchema: z.ZodEffects<z.ZodObject<{} & {
3534
4038
  [x: string]: z.ZodTypeAny;
3535
4039
  }, "strip", z.ZodTypeAny, {
3536
4040
  [x: string]: any;
3537
4041
  }, {
3538
4042
  [x: string]: any;
4043
+ }>, {
4044
+ [x: string]: any;
4045
+ }, {
4046
+ [x: string]: any;
3539
4047
  }>;
3540
- declare const mcpHyperliquidVaultDepositInputSchema: z.ZodObject<{} & {
4048
+ declare const mcpHyperliquidVaultDepositInputSchema: z.ZodEffects<z.ZodObject<{} & {
3541
4049
  [x: string]: z.ZodTypeAny;
3542
4050
  }, "strip", z.ZodTypeAny, {
3543
4051
  [x: string]: any;
3544
4052
  }, {
3545
4053
  [x: string]: any;
4054
+ }>, {
4055
+ [x: string]: any;
4056
+ }, {
4057
+ [x: string]: any;
3546
4058
  }>;
3547
- declare const mcpHyperliquidVaultWithdrawInputSchema: z.ZodObject<{} & {
4059
+ declare const mcpHyperliquidVaultWithdrawInputSchema: z.ZodEffects<z.ZodObject<{} & {
3548
4060
  [x: string]: z.ZodTypeAny;
3549
4061
  }, "strip", z.ZodTypeAny, {
3550
4062
  [x: string]: any;
3551
4063
  }, {
3552
4064
  [x: string]: any;
4065
+ }>, {
4066
+ [x: string]: any;
4067
+ }, {
4068
+ [x: string]: any;
3553
4069
  }>;
3554
- declare const mcpHyperliquidStakeInputSchema: z.ZodObject<{} & {
4070
+ declare const mcpHyperliquidStakeInputSchema: z.ZodEffects<z.ZodObject<{} & {
3555
4071
  [x: string]: z.ZodTypeAny;
3556
4072
  }, "strip", z.ZodTypeAny, {
3557
4073
  [x: string]: any;
3558
4074
  }, {
3559
4075
  [x: string]: any;
4076
+ }>, {
4077
+ [x: string]: any;
4078
+ }, {
4079
+ [x: string]: any;
3560
4080
  }>;
3561
- declare const mcpHyperliquidUnstakeInputSchema: z.ZodObject<{} & {
4081
+ declare const mcpHyperliquidUnstakeInputSchema: z.ZodEffects<z.ZodObject<{} & {
3562
4082
  [x: string]: z.ZodTypeAny;
3563
4083
  }, "strip", z.ZodTypeAny, {
3564
4084
  [x: string]: any;
3565
4085
  }, {
3566
4086
  [x: string]: any;
4087
+ }>, {
4088
+ [x: string]: any;
4089
+ }, {
4090
+ [x: string]: any;
3567
4091
  }>;
3568
- declare const mcpHyperliquidDelegateInputSchema: z.ZodObject<{} & {
4092
+ declare const mcpHyperliquidDelegateInputSchema: z.ZodEffects<z.ZodObject<{} & {
3569
4093
  [x: string]: z.ZodTypeAny;
3570
4094
  }, "strip", z.ZodTypeAny, {
3571
4095
  [x: string]: any;
3572
4096
  }, {
3573
4097
  [x: string]: any;
4098
+ }>, {
4099
+ [x: string]: any;
4100
+ }, {
4101
+ [x: string]: any;
3574
4102
  }>;
3575
- declare const mcpHyperliquidUndelegateInputSchema: z.ZodObject<{} & {
4103
+ declare const mcpHyperliquidUndelegateInputSchema: z.ZodEffects<z.ZodObject<{} & {
3576
4104
  [x: string]: z.ZodTypeAny;
3577
4105
  }, "strip", z.ZodTypeAny, {
3578
4106
  [x: string]: any;
3579
4107
  }, {
3580
4108
  [x: string]: any;
4109
+ }>, {
4110
+ [x: string]: any;
4111
+ }, {
4112
+ [x: string]: any;
3581
4113
  }>;
3582
4114
 
4115
+ /** LLMs often pass "false"/"true" strings; Boolean("false") is true in JavaScript. */
4116
+ declare function parseAgentBoolean(raw: unknown, defaultValue?: boolean): boolean;
4117
+ /**
4118
+ * EVM chain id for multisign tools: decimal integer (8453 for Base).
4119
+ * Accepts number or decimal string; fixes common `0x8453` typo.
4120
+ */
4121
+ declare function parseAgentEvmChainId(raw: unknown): number;
4122
+
3583
4123
  /** Machine-readable catalog of protocol actions grouped by chain category. */
3584
4124
  declare function getAgentCatalog(): {
3585
4125
  protocols: readonly ProtocolModule[];
@@ -3624,6 +4164,14 @@ declare function getAgentCatalog(): {
3624
4164
  readonly type: "string";
3625
4165
  readonly description: "Sign request id from POST /multiSignRequest.";
3626
4166
  };
4167
+ readonly status: {
4168
+ readonly type: "string";
4169
+ readonly description: "submitted when POST succeeded — do not call the same build tool again.";
4170
+ };
4171
+ readonly followUp: {
4172
+ readonly type: "string";
4173
+ readonly description: "Lifecycle next steps (wait_for_sign_request_ready → agree → trigger → broadcast).";
4174
+ };
3627
4175
  };
3628
4176
  };
3629
4177
  managementSig: {
@@ -3674,4 +4222,4 @@ declare function getAgentCatalog(): {
3674
4222
  };
3675
4223
  };
3676
4224
 
3677
- 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, parseMcpToolInput, parseMcpToolOutput, parseMultisignBuilderOutput, uniswapQuoteTradeTypeSchema, zodSchemaToMcpJsonSchema };
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 };