@continuumdao/ctm-mpc-defi 0.2.7 → 0.2.9

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.
@@ -70,7 +70,7 @@ declare function getAgentCatalogForMcp(): {
70
70
  protocols: readonly ProtocolModule[];
71
71
  commonParams: Record<string, ParamDoc>;
72
72
  multisignOutput: {
73
- readonly description: "Unsigned mpc-auth multiSignRequest payload. The caller must sign messageToSign (MetaMask personal_sign or Ed25519) and POST { ...bodyForSign, clientSig, signedMessage: messageToSign } to /multiSignRequest.";
73
+ readonly description: "Unsigned mpc-auth multiSignRequest payload from protocol builders. MCP agents receive { requestId } instead; node-app callers sign messageToSign and POST { ...bodyForSign, clientSig, signedMessage }.";
74
74
  readonly fields: {
75
75
  readonly bodyForSign: {
76
76
  readonly type: "object";
@@ -82,6 +82,15 @@ declare function getAgentCatalogForMcp(): {
82
82
  };
83
83
  };
84
84
  };
85
+ multisignSubmitOutput: {
86
+ readonly description: "Submitted mpc-auth multiSignRequest id. continuum-mcp-server builds, signs the management envelope, and POSTs /multiSignRequest. Continue with wait_for_sign_request_ready → sign_request_agree → trigger_sign_result → broadcast_sign_result. Do not call the same build tool again if requestId was returned.";
87
+ readonly fields: {
88
+ readonly requestId: {
89
+ readonly type: "string";
90
+ readonly description: "Sign request id from POST /multiSignRequest.";
91
+ };
92
+ };
93
+ };
85
94
  managementSig: {
86
95
  readonly description: "Management POST bodies embed NodeMgtKeySig: { nonce, clientSig, nodeKey }. Sign JSON with clientSig cleared via messageToSignManagementBody; POST with withManagementClientSig(body, sig). Do not put signedMessage in the JSON body for standard management routes. Legacy Nonce/Sig/sig field names are not accepted.";
87
96
  readonly exceptions: {
@@ -124,6 +133,7 @@ declare function getAgentCatalogForMcp(): {
124
133
  outputSchemas: Record<string, z.ZodType<any, z.ZodTypeDef, any>>;
125
134
  workflow: {
126
135
  evmSwapTypical: string[];
136
+ evmSwapManualTypical: string[];
127
137
  managementPostTypical: string[];
128
138
  agentMultisignTypical: string[];
129
139
  };
@@ -213,8 +223,19 @@ declare const MCP_NON_SUBMIT_TOOL_NAMES: Set<string>;
213
223
 
214
224
  /** Shared inputs documented once for all EVM multisign builders. */
215
225
  declare const EVM_COMMON_PARAM_DOCS: Record<string, ParamDoc>;
226
+ /** MCP agent path: build_* tools auto-submit and return requestId. */
227
+ declare const MULTISIGN_SUBMIT_OUTPUT_DOC: {
228
+ readonly description: "Submitted mpc-auth multiSignRequest id. continuum-mcp-server builds, signs the management envelope, and POSTs /multiSignRequest. Continue with wait_for_sign_request_ready → sign_request_agree → trigger_sign_result → broadcast_sign_result. Do not call the same build tool again if requestId was returned.";
229
+ readonly fields: {
230
+ readonly requestId: {
231
+ readonly type: "string";
232
+ readonly description: "Sign request id from POST /multiSignRequest.";
233
+ };
234
+ };
235
+ };
236
+ /** Legacy unsigned builder output (node app / manual sign path — not MCP tool return value). */
216
237
  declare const MULTISIGN_OUTPUT_DOC: {
217
- readonly description: "Unsigned mpc-auth multiSignRequest payload. The caller must sign messageToSign (MetaMask personal_sign or Ed25519) and POST { ...bodyForSign, clientSig, signedMessage: messageToSign } to /multiSignRequest.";
238
+ readonly description: "Unsigned mpc-auth multiSignRequest payload from protocol builders. MCP agents receive { requestId } instead; node-app callers sign messageToSign and POST { ...bodyForSign, clientSig, signedMessage }.";
218
239
  readonly fields: {
219
240
  readonly bodyForSign: {
220
241
  readonly type: "object";
@@ -406,7 +427,7 @@ declare const evmMultisignCommonInputSchema: z.ZodObject<{
406
427
  };
407
428
  customGasChainDetails?: Record<string, unknown> | undefined;
408
429
  }>;
409
- /** Standard output of all `build_*_multisign` MCP tools. */
430
+ /** Internal builder output before MCP management submit (not the MCP tool return value). */
410
431
  declare const multisignOutputSchema: z.ZodObject<{
411
432
  bodyForSign: z.ZodRecord<z.ZodString, z.ZodUnknown>;
412
433
  messageToSign: z.ZodString;
@@ -423,6 +444,8 @@ type EvmMultisignCommonInput = z.infer<typeof evmMultisignCommonInputSchema>;
423
444
  type MultisignOutput = z.infer<typeof multisignOutputSchema>;
424
445
  type KeyGenMcpInput = z.infer<typeof keyGenSchema>;
425
446
  type ChainDetailMcpInput = z.infer<typeof chainDetailSchema>;
447
+ /** Parse protocol builder output before signAndSubmitMultiSignRequest. */
448
+ declare function parseMultisignBuilderOutput(data: unknown): MultisignOutput;
426
449
 
427
450
  declare const uniswapQuoteTradeTypeSchema: z.ZodEnum<["EXACT_INPUT", "EXACT_OUTPUT"]>;
428
451
  /** Input for MCP tool `ctm_uniswap_v4_quote` → handler `uniswapTradeQuote`. */
@@ -2279,6 +2302,660 @@ declare const mcpGmxFetchOhlcvOutputSchema: z.ZodObject<{
2279
2302
  }[];
2280
2303
  }>;
2281
2304
 
2305
+ declare const mcpHyperliquidFetchMarketsInputSchema: z.ZodObject<{
2306
+ chainId: z.ZodNumber;
2307
+ dex: z.ZodOptional<z.ZodString>;
2308
+ }, "strip", z.ZodTypeAny, {
2309
+ chainId: number;
2310
+ dex?: string | undefined;
2311
+ }, {
2312
+ chainId: number;
2313
+ dex?: string | undefined;
2314
+ }>;
2315
+ declare const mcpHyperliquidFetchMarketsOutputSchema: z.ZodObject<{
2316
+ markets: z.ZodArray<z.ZodObject<{
2317
+ name: z.ZodString;
2318
+ asset: z.ZodNumber;
2319
+ szDecimals: z.ZodNumber;
2320
+ maxLeverage: z.ZodNumber;
2321
+ onlyIsolated: z.ZodOptional<z.ZodBoolean>;
2322
+ }, "strip", z.ZodTypeAny, {
2323
+ name: string;
2324
+ asset: number;
2325
+ maxLeverage: number;
2326
+ szDecimals: number;
2327
+ onlyIsolated?: boolean | undefined;
2328
+ }, {
2329
+ name: string;
2330
+ asset: number;
2331
+ maxLeverage: number;
2332
+ szDecimals: number;
2333
+ onlyIsolated?: boolean | undefined;
2334
+ }>, "many">;
2335
+ dexes: z.ZodArray<z.ZodObject<{
2336
+ name: z.ZodString;
2337
+ fullName: z.ZodString;
2338
+ }, "strip", z.ZodTypeAny, {
2339
+ name: string;
2340
+ fullName: string;
2341
+ }, {
2342
+ name: string;
2343
+ fullName: string;
2344
+ }>, "many">;
2345
+ }, "strip", z.ZodTypeAny, {
2346
+ markets: {
2347
+ name: string;
2348
+ asset: number;
2349
+ maxLeverage: number;
2350
+ szDecimals: number;
2351
+ onlyIsolated?: boolean | undefined;
2352
+ }[];
2353
+ dexes: {
2354
+ name: string;
2355
+ fullName: string;
2356
+ }[];
2357
+ }, {
2358
+ markets: {
2359
+ name: string;
2360
+ asset: number;
2361
+ maxLeverage: number;
2362
+ szDecimals: number;
2363
+ onlyIsolated?: boolean | undefined;
2364
+ }[];
2365
+ dexes: {
2366
+ name: string;
2367
+ fullName: string;
2368
+ }[];
2369
+ }>;
2370
+ declare const mcpHyperliquidFetchOpenContextInputSchema: z.ZodObject<{
2371
+ chainId: z.ZodNumber;
2372
+ executorAddress: z.ZodString;
2373
+ coin: z.ZodString;
2374
+ dex: z.ZodOptional<z.ZodString>;
2375
+ }, "strip", z.ZodTypeAny, {
2376
+ chainId: number;
2377
+ executorAddress: string;
2378
+ coin: string;
2379
+ dex?: string | undefined;
2380
+ }, {
2381
+ chainId: number;
2382
+ executorAddress: string;
2383
+ coin: string;
2384
+ dex?: string | undefined;
2385
+ }>;
2386
+ declare const mcpHyperliquidFetchOpenContextOutputSchema: z.ZodObject<{
2387
+ context: z.ZodObject<{
2388
+ account: z.ZodObject<{
2389
+ accountValueUsd: z.ZodNullable<z.ZodString>;
2390
+ totalMarginUsedUsd: z.ZodNullable<z.ZodString>;
2391
+ withdrawableUsd: z.ZodNullable<z.ZodString>;
2392
+ }, "strip", z.ZodTypeAny, {
2393
+ accountValueUsd: string | null;
2394
+ totalMarginUsedUsd: string | null;
2395
+ withdrawableUsd: string | null;
2396
+ }, {
2397
+ accountValueUsd: string | null;
2398
+ totalMarginUsedUsd: string | null;
2399
+ withdrawableUsd: string | null;
2400
+ }>;
2401
+ activeAsset: z.ZodObject<{
2402
+ markPx: z.ZodNullable<z.ZodString>;
2403
+ leverageLabel: z.ZodNullable<z.ZodString>;
2404
+ availableToBuy: z.ZodNullable<z.ZodString>;
2405
+ availableToSell: z.ZodNullable<z.ZodString>;
2406
+ }, "strip", z.ZodTypeAny, {
2407
+ leverageLabel: string | null;
2408
+ markPx: string | null;
2409
+ availableToBuy: string | null;
2410
+ availableToSell: string | null;
2411
+ }, {
2412
+ leverageLabel: string | null;
2413
+ markPx: string | null;
2414
+ availableToBuy: string | null;
2415
+ availableToSell: string | null;
2416
+ }>;
2417
+ }, "strip", z.ZodTypeAny, {
2418
+ account: {
2419
+ accountValueUsd: string | null;
2420
+ totalMarginUsedUsd: string | null;
2421
+ withdrawableUsd: string | null;
2422
+ };
2423
+ activeAsset: {
2424
+ leverageLabel: string | null;
2425
+ markPx: string | null;
2426
+ availableToBuy: string | null;
2427
+ availableToSell: string | null;
2428
+ };
2429
+ }, {
2430
+ account: {
2431
+ accountValueUsd: string | null;
2432
+ totalMarginUsedUsd: string | null;
2433
+ withdrawableUsd: string | null;
2434
+ };
2435
+ activeAsset: {
2436
+ leverageLabel: string | null;
2437
+ markPx: string | null;
2438
+ availableToBuy: string | null;
2439
+ availableToSell: string | null;
2440
+ };
2441
+ }>;
2442
+ }, "strip", z.ZodTypeAny, {
2443
+ context: {
2444
+ account: {
2445
+ accountValueUsd: string | null;
2446
+ totalMarginUsedUsd: string | null;
2447
+ withdrawableUsd: string | null;
2448
+ };
2449
+ activeAsset: {
2450
+ leverageLabel: string | null;
2451
+ markPx: string | null;
2452
+ availableToBuy: string | null;
2453
+ availableToSell: string | null;
2454
+ };
2455
+ };
2456
+ }, {
2457
+ context: {
2458
+ account: {
2459
+ accountValueUsd: string | null;
2460
+ totalMarginUsedUsd: string | null;
2461
+ withdrawableUsd: string | null;
2462
+ };
2463
+ activeAsset: {
2464
+ leverageLabel: string | null;
2465
+ markPx: string | null;
2466
+ availableToBuy: string | null;
2467
+ availableToSell: string | null;
2468
+ };
2469
+ };
2470
+ }>;
2471
+ declare const mcpHyperliquidFetchPositionsInputSchema: z.ZodObject<{
2472
+ chainId: z.ZodNumber;
2473
+ executorAddress: z.ZodString;
2474
+ dex: z.ZodOptional<z.ZodString>;
2475
+ }, "strip", z.ZodTypeAny, {
2476
+ chainId: number;
2477
+ executorAddress: string;
2478
+ dex?: string | undefined;
2479
+ }, {
2480
+ chainId: number;
2481
+ executorAddress: string;
2482
+ dex?: string | undefined;
2483
+ }>;
2484
+ declare const mcpHyperliquidFetchPositionsOutputSchema: z.ZodObject<{
2485
+ positions: z.ZodArray<z.ZodObject<{
2486
+ key: z.ZodString;
2487
+ coin: z.ZodString;
2488
+ isLong: z.ZodBoolean;
2489
+ size: z.ZodNullable<z.ZodString>;
2490
+ entryPx: z.ZodNullable<z.ZodString>;
2491
+ positionValueUsd: z.ZodNullable<z.ZodString>;
2492
+ unrealizedPnlUsd: z.ZodNullable<z.ZodString>;
2493
+ liquidationPx: z.ZodNullable<z.ZodString>;
2494
+ leverageLabel: z.ZodNullable<z.ZodString>;
2495
+ maxLeverage: z.ZodNullable<z.ZodNumber>;
2496
+ marginUsedUsd: z.ZodNullable<z.ZodString>;
2497
+ returnOnEquity: z.ZodNullable<z.ZodString>;
2498
+ }, "strip", z.ZodTypeAny, {
2499
+ key: string;
2500
+ size: string | null;
2501
+ coin: string;
2502
+ isLong: boolean;
2503
+ entryPx: string | null;
2504
+ positionValueUsd: string | null;
2505
+ unrealizedPnlUsd: string | null;
2506
+ liquidationPx: string | null;
2507
+ leverageLabel: string | null;
2508
+ maxLeverage: number | null;
2509
+ marginUsedUsd: string | null;
2510
+ returnOnEquity: string | null;
2511
+ }, {
2512
+ key: string;
2513
+ size: string | null;
2514
+ coin: string;
2515
+ isLong: boolean;
2516
+ entryPx: string | null;
2517
+ positionValueUsd: string | null;
2518
+ unrealizedPnlUsd: string | null;
2519
+ liquidationPx: string | null;
2520
+ leverageLabel: string | null;
2521
+ maxLeverage: number | null;
2522
+ marginUsedUsd: string | null;
2523
+ returnOnEquity: string | null;
2524
+ }>, "many">;
2525
+ }, "strip", z.ZodTypeAny, {
2526
+ positions: {
2527
+ key: string;
2528
+ size: string | null;
2529
+ coin: string;
2530
+ isLong: boolean;
2531
+ entryPx: string | null;
2532
+ positionValueUsd: string | null;
2533
+ unrealizedPnlUsd: string | null;
2534
+ liquidationPx: string | null;
2535
+ leverageLabel: string | null;
2536
+ maxLeverage: number | null;
2537
+ marginUsedUsd: string | null;
2538
+ returnOnEquity: string | null;
2539
+ }[];
2540
+ }, {
2541
+ positions: {
2542
+ key: string;
2543
+ size: string | null;
2544
+ coin: string;
2545
+ isLong: boolean;
2546
+ entryPx: string | null;
2547
+ positionValueUsd: string | null;
2548
+ unrealizedPnlUsd: string | null;
2549
+ liquidationPx: string | null;
2550
+ leverageLabel: string | null;
2551
+ maxLeverage: number | null;
2552
+ marginUsedUsd: string | null;
2553
+ returnOnEquity: string | null;
2554
+ }[];
2555
+ }>;
2556
+ declare const mcpHyperliquidFetchOpenOrdersInputSchema: z.ZodObject<{
2557
+ chainId: z.ZodNumber;
2558
+ executorAddress: z.ZodString;
2559
+ dex: z.ZodOptional<z.ZodString>;
2560
+ }, "strip", z.ZodTypeAny, {
2561
+ chainId: number;
2562
+ executorAddress: string;
2563
+ dex?: string | undefined;
2564
+ }, {
2565
+ chainId: number;
2566
+ executorAddress: string;
2567
+ dex?: string | undefined;
2568
+ }>;
2569
+ declare const mcpHyperliquidFetchOpenOrdersOutputSchema: z.ZodObject<{
2570
+ orders: z.ZodArray<z.ZodObject<{
2571
+ coin: z.ZodString;
2572
+ side: z.ZodString;
2573
+ limitPx: z.ZodString;
2574
+ sz: z.ZodString;
2575
+ oid: z.ZodNumber;
2576
+ timestamp: z.ZodNumber;
2577
+ reduceOnly: z.ZodOptional<z.ZodBoolean>;
2578
+ }, "strip", z.ZodTypeAny, {
2579
+ timestamp: number;
2580
+ coin: string;
2581
+ side: string;
2582
+ limitPx: string;
2583
+ sz: string;
2584
+ oid: number;
2585
+ reduceOnly?: boolean | undefined;
2586
+ }, {
2587
+ timestamp: number;
2588
+ coin: string;
2589
+ side: string;
2590
+ limitPx: string;
2591
+ sz: string;
2592
+ oid: number;
2593
+ reduceOnly?: boolean | undefined;
2594
+ }>, "many">;
2595
+ }, "strip", z.ZodTypeAny, {
2596
+ orders: {
2597
+ timestamp: number;
2598
+ coin: string;
2599
+ side: string;
2600
+ limitPx: string;
2601
+ sz: string;
2602
+ oid: number;
2603
+ reduceOnly?: boolean | undefined;
2604
+ }[];
2605
+ }, {
2606
+ orders: {
2607
+ timestamp: number;
2608
+ coin: string;
2609
+ side: string;
2610
+ limitPx: string;
2611
+ sz: string;
2612
+ oid: number;
2613
+ reduceOnly?: boolean | undefined;
2614
+ }[];
2615
+ }>;
2616
+ declare const mcpHyperliquidFetchMarketSnapshotInputSchema: z.ZodObject<{
2617
+ chainId: z.ZodNumber;
2618
+ coin: z.ZodString;
2619
+ interval: z.ZodOptional<z.ZodEnum<["1m", "3m", "5m", "15m", "30m", "1h", "2h", "4h", "8h", "12h", "1d", "3d", "1w", "1M"]>>;
2620
+ dex: z.ZodOptional<z.ZodString>;
2621
+ }, "strip", z.ZodTypeAny, {
2622
+ chainId: number;
2623
+ coin: string;
2624
+ dex?: string | undefined;
2625
+ interval?: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d" | undefined;
2626
+ }, {
2627
+ chainId: number;
2628
+ coin: string;
2629
+ dex?: string | undefined;
2630
+ interval?: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d" | undefined;
2631
+ }>;
2632
+ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
2633
+ snapshot: z.ZodObject<{
2634
+ coin: z.ZodString;
2635
+ midUsd: z.ZodNullable<z.ZodString>;
2636
+ fetchedAtMs: z.ZodNumber;
2637
+ interval: z.ZodEnum<["1m", "3m", "5m", "15m", "30m", "1h", "2h", "4h", "8h", "12h", "1d", "3d", "1w", "1M"]>;
2638
+ candles: z.ZodArray<z.ZodObject<{
2639
+ timestampMs: z.ZodNumber;
2640
+ open: z.ZodString;
2641
+ high: z.ZodString;
2642
+ low: z.ZodString;
2643
+ close: z.ZodString;
2644
+ volume: z.ZodString;
2645
+ }, "strip", z.ZodTypeAny, {
2646
+ high: string;
2647
+ low: string;
2648
+ timestampMs: number;
2649
+ open: string;
2650
+ close: string;
2651
+ volume: string;
2652
+ }, {
2653
+ high: string;
2654
+ low: string;
2655
+ timestampMs: number;
2656
+ open: string;
2657
+ close: string;
2658
+ volume: string;
2659
+ }>, "many">;
2660
+ }, "strip", z.ZodTypeAny, {
2661
+ fetchedAtMs: number;
2662
+ candles: {
2663
+ high: string;
2664
+ low: string;
2665
+ timestampMs: number;
2666
+ open: string;
2667
+ close: string;
2668
+ volume: string;
2669
+ }[];
2670
+ coin: string;
2671
+ interval: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d";
2672
+ midUsd: string | null;
2673
+ }, {
2674
+ fetchedAtMs: number;
2675
+ candles: {
2676
+ high: string;
2677
+ low: string;
2678
+ timestampMs: number;
2679
+ open: string;
2680
+ close: string;
2681
+ volume: string;
2682
+ }[];
2683
+ coin: string;
2684
+ interval: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d";
2685
+ midUsd: string | null;
2686
+ }>;
2687
+ }, "strip", z.ZodTypeAny, {
2688
+ snapshot: {
2689
+ fetchedAtMs: number;
2690
+ candles: {
2691
+ high: string;
2692
+ low: string;
2693
+ timestampMs: number;
2694
+ open: string;
2695
+ close: string;
2696
+ volume: string;
2697
+ }[];
2698
+ coin: string;
2699
+ interval: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d";
2700
+ midUsd: string | null;
2701
+ };
2702
+ }, {
2703
+ snapshot: {
2704
+ fetchedAtMs: number;
2705
+ candles: {
2706
+ high: string;
2707
+ low: string;
2708
+ timestampMs: number;
2709
+ open: string;
2710
+ close: string;
2711
+ volume: string;
2712
+ }[];
2713
+ coin: string;
2714
+ interval: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d";
2715
+ midUsd: string | null;
2716
+ };
2717
+ }>;
2718
+ declare const mcpHyperliquidFetchUsdClassBalancesInputSchema: z.ZodObject<{
2719
+ chainId: z.ZodNumber;
2720
+ executorAddress: z.ZodString;
2721
+ }, "strip", z.ZodTypeAny, {
2722
+ chainId: number;
2723
+ executorAddress: string;
2724
+ }, {
2725
+ chainId: number;
2726
+ executorAddress: string;
2727
+ }>;
2728
+ declare const mcpHyperliquidFetchUsdClassBalancesOutputSchema: z.ZodObject<{
2729
+ balances: z.ZodObject<{
2730
+ spotUsdcAvailable: z.ZodString;
2731
+ perpWithdrawable: z.ZodString;
2732
+ }, "strip", z.ZodTypeAny, {
2733
+ spotUsdcAvailable: string;
2734
+ perpWithdrawable: string;
2735
+ }, {
2736
+ spotUsdcAvailable: string;
2737
+ perpWithdrawable: string;
2738
+ }>;
2739
+ }, "strip", z.ZodTypeAny, {
2740
+ balances: {
2741
+ spotUsdcAvailable: string;
2742
+ perpWithdrawable: string;
2743
+ };
2744
+ }, {
2745
+ balances: {
2746
+ spotUsdcAvailable: string;
2747
+ perpWithdrawable: string;
2748
+ };
2749
+ }>;
2750
+ declare const mcpHyperliquidFetchVaultsInputSchema: z.ZodObject<{
2751
+ chainId: z.ZodNumber;
2752
+ executorAddress: z.ZodOptional<z.ZodString>;
2753
+ }, "strip", z.ZodTypeAny, {
2754
+ chainId: number;
2755
+ executorAddress?: string | undefined;
2756
+ }, {
2757
+ chainId: number;
2758
+ executorAddress?: string | undefined;
2759
+ }>;
2760
+ declare const mcpHyperliquidFetchVaultsOutputSchema: z.ZodObject<{
2761
+ vaults: z.ZodArray<z.ZodObject<{
2762
+ vaultAddress: z.ZodString;
2763
+ name: z.ZodString;
2764
+ apr: z.ZodNullable<z.ZodNumber>;
2765
+ tvlUsd: z.ZodNullable<z.ZodString>;
2766
+ }, "strip", z.ZodTypeAny, {
2767
+ name: string;
2768
+ vaultAddress: string;
2769
+ apr: number | null;
2770
+ tvlUsd: string | null;
2771
+ }, {
2772
+ name: string;
2773
+ vaultAddress: string;
2774
+ apr: number | null;
2775
+ tvlUsd: string | null;
2776
+ }>, "many">;
2777
+ }, "strip", z.ZodTypeAny, {
2778
+ vaults: {
2779
+ name: string;
2780
+ vaultAddress: string;
2781
+ apr: number | null;
2782
+ tvlUsd: string | null;
2783
+ }[];
2784
+ }, {
2785
+ vaults: {
2786
+ name: string;
2787
+ vaultAddress: string;
2788
+ apr: number | null;
2789
+ tvlUsd: string | null;
2790
+ }[];
2791
+ }>;
2792
+ declare const mcpHyperliquidFetchUserVaultEquitiesInputSchema: z.ZodObject<{
2793
+ chainId: z.ZodNumber;
2794
+ executorAddress: z.ZodString;
2795
+ }, "strip", z.ZodTypeAny, {
2796
+ chainId: number;
2797
+ executorAddress: string;
2798
+ }, {
2799
+ chainId: number;
2800
+ executorAddress: string;
2801
+ }>;
2802
+ declare const mcpHyperliquidFetchUserVaultEquitiesOutputSchema: z.ZodObject<{
2803
+ rows: z.ZodArray<z.ZodObject<{
2804
+ vaultAddress: z.ZodString;
2805
+ equity: z.ZodString;
2806
+ }, "strip", z.ZodTypeAny, {
2807
+ vaultAddress: string;
2808
+ equity: string;
2809
+ }, {
2810
+ vaultAddress: string;
2811
+ equity: string;
2812
+ }>, "many">;
2813
+ }, "strip", z.ZodTypeAny, {
2814
+ rows: {
2815
+ vaultAddress: string;
2816
+ equity: string;
2817
+ }[];
2818
+ }, {
2819
+ rows: {
2820
+ vaultAddress: string;
2821
+ equity: string;
2822
+ }[];
2823
+ }>;
2824
+ declare const mcpHyperliquidFetchStakingSummaryInputSchema: z.ZodObject<{
2825
+ chainId: z.ZodNumber;
2826
+ executorAddress: z.ZodString;
2827
+ }, "strip", z.ZodTypeAny, {
2828
+ chainId: number;
2829
+ executorAddress: string;
2830
+ }, {
2831
+ chainId: number;
2832
+ executorAddress: string;
2833
+ }>;
2834
+ declare const mcpHyperliquidFetchStakingSummaryOutputSchema: z.ZodObject<{
2835
+ summary: z.ZodObject<{
2836
+ delegated: z.ZodString;
2837
+ undelegated: z.ZodString;
2838
+ }, "strip", z.ZodTypeAny, {
2839
+ delegated: string;
2840
+ undelegated: string;
2841
+ }, {
2842
+ delegated: string;
2843
+ undelegated: string;
2844
+ }>;
2845
+ }, "strip", z.ZodTypeAny, {
2846
+ summary: {
2847
+ delegated: string;
2848
+ undelegated: string;
2849
+ };
2850
+ }, {
2851
+ summary: {
2852
+ delegated: string;
2853
+ undelegated: string;
2854
+ };
2855
+ }>;
2856
+ declare const mcpHyperliquidFetchDelegationsInputSchema: z.ZodObject<{
2857
+ chainId: z.ZodNumber;
2858
+ executorAddress: z.ZodString;
2859
+ }, "strip", z.ZodTypeAny, {
2860
+ chainId: number;
2861
+ executorAddress: string;
2862
+ }, {
2863
+ chainId: number;
2864
+ executorAddress: string;
2865
+ }>;
2866
+ declare const mcpHyperliquidFetchDelegationsOutputSchema: z.ZodObject<{
2867
+ delegations: z.ZodArray<z.ZodObject<{
2868
+ validator: z.ZodString;
2869
+ amount: z.ZodString;
2870
+ }, "strip", z.ZodTypeAny, {
2871
+ amount: string;
2872
+ validator: string;
2873
+ }, {
2874
+ amount: string;
2875
+ validator: string;
2876
+ }>, "many">;
2877
+ }, "strip", z.ZodTypeAny, {
2878
+ delegations: {
2879
+ amount: string;
2880
+ validator: string;
2881
+ }[];
2882
+ }, {
2883
+ delegations: {
2884
+ amount: string;
2885
+ validator: string;
2886
+ }[];
2887
+ }>;
2888
+ declare const mcpHyperliquidLimitOrderInputSchema: z.ZodObject<{} & {
2889
+ [x: string]: z.ZodTypeAny;
2890
+ }, "strip", z.ZodTypeAny, {
2891
+ [x: string]: any;
2892
+ }, {
2893
+ [x: string]: any;
2894
+ }>;
2895
+ declare const mcpHyperliquidCloseInputSchema: z.ZodObject<{} & {
2896
+ [x: string]: z.ZodTypeAny;
2897
+ }, "strip", z.ZodTypeAny, {
2898
+ [x: string]: any;
2899
+ }, {
2900
+ [x: string]: any;
2901
+ }>;
2902
+ declare const mcpHyperliquidCancelInputSchema: z.ZodObject<{} & {
2903
+ [x: string]: z.ZodTypeAny;
2904
+ }, "strip", z.ZodTypeAny, {
2905
+ [x: string]: any;
2906
+ }, {
2907
+ [x: string]: any;
2908
+ }>;
2909
+ declare const mcpHyperliquidUsdTransferInputSchema: z.ZodObject<{} & {
2910
+ [x: string]: z.ZodTypeAny;
2911
+ }, "strip", z.ZodTypeAny, {
2912
+ [x: string]: any;
2913
+ }, {
2914
+ [x: string]: any;
2915
+ }>;
2916
+ declare const mcpHyperliquidVaultDepositInputSchema: z.ZodObject<{} & {
2917
+ [x: string]: z.ZodTypeAny;
2918
+ }, "strip", z.ZodTypeAny, {
2919
+ [x: string]: any;
2920
+ }, {
2921
+ [x: string]: any;
2922
+ }>;
2923
+ declare const mcpHyperliquidVaultWithdrawInputSchema: z.ZodObject<{} & {
2924
+ [x: string]: z.ZodTypeAny;
2925
+ }, "strip", z.ZodTypeAny, {
2926
+ [x: string]: any;
2927
+ }, {
2928
+ [x: string]: any;
2929
+ }>;
2930
+ declare const mcpHyperliquidStakeInputSchema: z.ZodObject<{} & {
2931
+ [x: string]: z.ZodTypeAny;
2932
+ }, "strip", z.ZodTypeAny, {
2933
+ [x: string]: any;
2934
+ }, {
2935
+ [x: string]: any;
2936
+ }>;
2937
+ declare const mcpHyperliquidUnstakeInputSchema: z.ZodObject<{} & {
2938
+ [x: string]: z.ZodTypeAny;
2939
+ }, "strip", z.ZodTypeAny, {
2940
+ [x: string]: any;
2941
+ }, {
2942
+ [x: string]: any;
2943
+ }>;
2944
+ declare const mcpHyperliquidDelegateInputSchema: z.ZodObject<{} & {
2945
+ [x: string]: z.ZodTypeAny;
2946
+ }, "strip", z.ZodTypeAny, {
2947
+ [x: string]: any;
2948
+ }, {
2949
+ [x: string]: any;
2950
+ }>;
2951
+ declare const mcpHyperliquidUndelegateInputSchema: z.ZodObject<{} & {
2952
+ [x: string]: z.ZodTypeAny;
2953
+ }, "strip", z.ZodTypeAny, {
2954
+ [x: string]: any;
2955
+ }, {
2956
+ [x: string]: any;
2957
+ }>;
2958
+
2282
2959
  /** Machine-readable catalog of protocol actions grouped by chain category. */
2283
2960
  declare function getAgentCatalog(): {
2284
2961
  protocols: readonly ProtocolModule[];
@@ -2296,13 +2973,14 @@ declare function getAgentCatalog(): {
2296
2973
  aaveV4: ProtocolModule;
2297
2974
  eulerV2: ProtocolModule;
2298
2975
  gmx: ProtocolModule;
2976
+ hyperliquid: ProtocolModule;
2299
2977
  /** Prefer getAgentCatalogForMcp() or getMcpToolDefinitions() for MCP servers. */
2300
2978
  mcp: {
2301
2979
  tools: readonly McpToolDefinition[];
2302
2980
  protocols: readonly ProtocolModule[];
2303
2981
  commonParams: Record<string, ParamDoc>;
2304
2982
  multisignOutput: {
2305
- readonly description: "Unsigned mpc-auth multiSignRequest payload. The caller must sign messageToSign (MetaMask personal_sign or Ed25519) and POST { ...bodyForSign, clientSig, signedMessage: messageToSign } to /multiSignRequest.";
2983
+ readonly description: "Unsigned mpc-auth multiSignRequest payload from protocol builders. MCP agents receive { requestId } instead; node-app callers sign messageToSign and POST { ...bodyForSign, clientSig, signedMessage }.";
2306
2984
  readonly fields: {
2307
2985
  readonly bodyForSign: {
2308
2986
  readonly type: "object";
@@ -2314,6 +2992,15 @@ declare function getAgentCatalog(): {
2314
2992
  };
2315
2993
  };
2316
2994
  };
2995
+ multisignSubmitOutput: {
2996
+ readonly description: "Submitted mpc-auth multiSignRequest id. continuum-mcp-server builds, signs the management envelope, and POSTs /multiSignRequest. Continue with wait_for_sign_request_ready → sign_request_agree → trigger_sign_result → broadcast_sign_result. Do not call the same build tool again if requestId was returned.";
2997
+ readonly fields: {
2998
+ readonly requestId: {
2999
+ readonly type: "string";
3000
+ readonly description: "Sign request id from POST /multiSignRequest.";
3001
+ };
3002
+ };
3003
+ };
2317
3004
  managementSig: {
2318
3005
  readonly description: "Management POST bodies embed NodeMgtKeySig: { nonce, clientSig, nodeKey }. Sign JSON with clientSig cleared via messageToSignManagementBody; POST with withManagementClientSig(body, sig). Do not put signedMessage in the JSON body for standard management routes. Legacy Nonce/Sig/sig field names are not accepted.";
2319
3006
  readonly exceptions: {
@@ -2355,10 +3042,11 @@ declare function getAgentCatalog(): {
2355
3042
  outputSchemas: Record<string, zod.ZodType<any, zod.ZodTypeDef, any>>;
2356
3043
  workflow: {
2357
3044
  evmSwapTypical: string[];
3045
+ evmSwapManualTypical: string[];
2358
3046
  managementPostTypical: string[];
2359
3047
  agentMultisignTypical: string[];
2360
3048
  };
2361
3049
  };
2362
3050
  };
2363
3051
 
2364
- export { type ChainDetailMcpInput, EVM_COMMON_PARAM_DOCS, type EvmMultisignCommonInput, type KeyGenMcpInput, MANAGEMENT_SIG_DOC, MCP_NON_SUBMIT_TOOL_NAMES, MCP_TOOL_DEFINITIONS, MCP_TOOL_INPUT_SCHEMAS, MCP_TOOL_OUTPUT_SCHEMAS, MULTISIGN_OUTPUT_DOC, type McpAaveV4DepositInput, type McpCurveDaoBuildSwapMultisignInput, type McpCurveDaoQuoteInput, type McpCurveDaoQuoteOutput, type McpEthenaStakeInput, type McpEulerV2IsolatedLendInput, type McpJsonSchema, type McpLidoSubmitInput, type McpMapleDepositInput, type McpSchemaProperty, type McpSkyLockstakeStakeInput, type McpToolDefinition, type McpToolHandler, type McpToolInputMap, type McpToolName, type McpToolOutputMap, type McpUniswapV4BuildMintLiquidityMultisignInput, type McpUniswapV4BuildSwapMultisignInput, type McpUniswapV4CreateSwapInput, type McpUniswapV4CreateSwapOutput, type McpUniswapV4LpCreatePositionInput, type McpUniswapV4QuoteInput, type McpUniswapV4QuoteOutput, type MultisignOutput, PROTOCOL_SUPPORT_ADVISORS, type ProtocolSupportAdvisor, type SupportedTokenRow, type TokenFilterKind, chainDetailSchema, evmAddressSchema, evmMultisignCommonInputSchema, getAgentCatalog, getAgentCatalogForMcp, getMcpToolByName, getMcpToolDefinitions, getMcpToolInputSchema, getMcpToolOutputSchema, getProtocolDiscoverySummary, getProtocolSkill, getProtocolSupportAdvisor, getToolsForProtocol, jsonObjectSchema, keyGenSchema, listProtocolSupportAdvisorIds, listProtocolsWithSkills, mcpAaveV4BorrowInputSchema, mcpAaveV4DepositInputSchema, mcpAaveV4RepayInputSchema, mcpAaveV4WithdrawInputSchema, mcpCurveDaoBuildSwapMultisignInputSchema, mcpCurveDaoQuoteInputSchema, mcpCurveDaoQuoteOutputSchema, mcpEthenaClaimInputSchema, mcpEthenaCooldownInputSchema, mcpEthenaRedeemInputSchema, mcpEthenaStakeInputSchema, mcpEulerV2BorrowRepayInputSchema, mcpEulerV2CollateralDepositInputSchema, mcpEulerV2CollateralWithdrawInputSchema, mcpEulerV2IsolatedBorrowInputSchema, mcpEulerV2IsolatedLendInputSchema, mcpEulerV2VaultWithdrawInputSchema, mcpGmxCancelInputSchema, mcpGmxDecreaseInputSchema, mcpGmxFetchGmApyInputSchema, mcpGmxFetchGmApyOutputSchema, mcpGmxFetchGmMarketsInputSchema, mcpGmxFetchGmMarketsOutputSchema, mcpGmxFetchMarketPricesInputSchema, mcpGmxFetchMarketPricesOutputSchema, mcpGmxFetchMarketsInputSchema, mcpGmxFetchMarketsOutputSchema, mcpGmxFetchOhlcvInputSchema, mcpGmxFetchOhlcvOutputSchema, mcpGmxFetchPositionsInputSchema, mcpGmxFetchPositionsOutputSchema, mcpGmxFetchStakingPowerInputSchema, mcpGmxFetchStakingPowerOutputSchema, mcpGmxGmDepositInputSchema, mcpGmxGmWithdrawInputSchema, mcpGmxIncreaseInputSchema, multisignOutputSchema as mcpGmxMultisignOutputSchema, mcpGmxStakeGmxInputSchema, mcpGmxUnstakeGmxInputSchema, mcpLidoClaimWithdrawalInputSchema, mcpLidoRequestWithdrawalsInputSchema, mcpLidoSubmitInputSchema, mcpLidoUnwrapWstEthInputSchema, mcpLidoWrapStEthInputSchema, mcpMapleDepositInputSchema, mcpMapleRequestRedeemInputSchema, mcpMultisignInput, multisignOutputSchema as mcpMultisignOutputSchema, mcpServerCommonInputSchema, mcpServerMultisignInput, mcpServerSubmitOutputSchema, mcpSkyLockstakeCloseInputSchema, mcpSkyLockstakeDrawInputSchema, mcpSkyLockstakeGetRewardInputSchema, mcpSkyLockstakeStakeInputSchema, mcpSkyLockstakeWipeInputSchema, mcpSkySusdsDepositInputSchema, mcpSkySusdsRedeemInputSchema, mcpUniswapV4BuildCollectFeesMultisignInputSchema, mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildMintLiquidityMultisignInputSchema, mcpUniswapV4BuildSwapMultisignInputSchema, mcpUniswapV4CreateSwapInputSchema, mcpUniswapV4CreateSwapOutputSchema, mcpUniswapV4LpClaimInputSchema, mcpUniswapV4LpClaimOutputSchema, mcpUniswapV4LpCreatePositionInputSchema, mcpUniswapV4LpCreatePositionOutputSchema, mcpUniswapV4LpDecreaseInputSchema, mcpUniswapV4LpDecreaseOutputSchema, mcpUniswapV4LpIncreaseInputSchema, mcpUniswapV4LpIncreaseOutputSchema, mcpUniswapV4LpListPoolsInputSchema, mcpUniswapV4LpListPoolsOutputSchema, mcpUniswapV4LpListPositionsInputSchema, mcpUniswapV4LpListPositionsOutputSchema, mcpUniswapV4QuoteInputSchema, mcpUniswapV4QuoteOutputSchema, mcpUniswapV4RegisterPositionFromMintTxInputSchema, mcpUniswapV4RegisterPositionFromMintTxOutputSchema, mcpUniswapV4RegisterPositionNftInputSchema, mcpUniswapV4RegisterPositionNftOutputSchema, multisignOutputSchema, parseMcpToolInput, parseMcpToolOutput, uniswapQuoteTradeTypeSchema, zodSchemaToMcpJsonSchema };
3052
+ 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 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, mcpHyperliquidFetchOpenContextInputSchema, mcpHyperliquidFetchOpenContextOutputSchema, mcpHyperliquidFetchOpenOrdersInputSchema, mcpHyperliquidFetchOpenOrdersOutputSchema, mcpHyperliquidFetchPositionsInputSchema, mcpHyperliquidFetchPositionsOutputSchema, mcpHyperliquidFetchStakingSummaryInputSchema, mcpHyperliquidFetchStakingSummaryOutputSchema, mcpHyperliquidFetchUsdClassBalancesInputSchema, mcpHyperliquidFetchUsdClassBalancesOutputSchema, mcpHyperliquidFetchUserVaultEquitiesInputSchema, mcpHyperliquidFetchUserVaultEquitiesOutputSchema, mcpHyperliquidFetchVaultsInputSchema, mcpHyperliquidFetchVaultsOutputSchema, mcpHyperliquidLimitOrderInputSchema, mcpHyperliquidStakeInputSchema, mcpHyperliquidUndelegateInputSchema, mcpHyperliquidUnstakeInputSchema, mcpHyperliquidUsdTransferInputSchema, mcpHyperliquidVaultDepositInputSchema, mcpHyperliquidVaultWithdrawInputSchema, mcpLidoClaimWithdrawalInputSchema, mcpLidoRequestWithdrawalsInputSchema, mcpLidoSubmitInputSchema, mcpLidoUnwrapWstEthInputSchema, mcpLidoWrapStEthInputSchema, mcpMapleDepositInputSchema, mcpMapleRequestRedeemInputSchema, 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 };