@continuumdao/ctm-mpc-defi 0.2.9 → 0.2.11

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 (36) hide show
  1. package/dist/agent/catalog.cjs +522 -19
  2. package/dist/agent/catalog.cjs.map +1 -1
  3. package/dist/agent/catalog.d.ts +639 -14
  4. package/dist/agent/catalog.js +510 -20
  5. package/dist/agent/catalog.js.map +1 -1
  6. package/dist/agent/skills/hyperliquid/SKILL.md +34 -6
  7. package/dist/agent/skills/morpho/SKILL.md +63 -0
  8. package/dist/core/index.cjs +9 -0
  9. package/dist/core/index.cjs.map +1 -1
  10. package/dist/core/index.d.ts +3 -1
  11. package/dist/core/index.js +8 -1
  12. package/dist/core/index.js.map +1 -1
  13. package/dist/index.cjs +9 -0
  14. package/dist/index.cjs.map +1 -1
  15. package/dist/index.d.ts +1 -1
  16. package/dist/index.js +8 -1
  17. package/dist/index.js.map +1 -1
  18. package/dist/protocols/evm/aave-v4/index.cjs.map +1 -1
  19. package/dist/protocols/evm/aave-v4/index.js.map +1 -1
  20. package/dist/protocols/evm/euler-v2/index.cjs.map +1 -1
  21. package/dist/protocols/evm/euler-v2/index.js.map +1 -1
  22. package/dist/protocols/evm/hyperliquid/index.cjs +407 -34
  23. package/dist/protocols/evm/hyperliquid/index.cjs.map +1 -1
  24. package/dist/protocols/evm/hyperliquid/index.d.ts +168 -15
  25. package/dist/protocols/evm/hyperliquid/index.js +390 -35
  26. package/dist/protocols/evm/hyperliquid/index.js.map +1 -1
  27. package/dist/protocols/evm/maple/index.cjs.map +1 -1
  28. package/dist/protocols/evm/maple/index.js.map +1 -1
  29. package/dist/protocols/evm/morpho/index.cjs +1971 -0
  30. package/dist/protocols/evm/morpho/index.cjs.map +1 -0
  31. package/dist/protocols/evm/morpho/index.d.ts +522 -0
  32. package/dist/protocols/evm/morpho/index.js +1918 -0
  33. package/dist/protocols/evm/morpho/index.js.map +1 -0
  34. package/dist/protocols/evm/sky/index.cjs.map +1 -1
  35. package/dist/protocols/evm/sky/index.js.map +1 -1
  36. package/package.json +6 -1
@@ -336,6 +336,7 @@ declare const chainDetailSchema: z.ZodObject<{
336
336
  }, z.ZodTypeAny, "passthrough">>;
337
337
  /** Shared inputs for all EVM multisign MCP tools. */
338
338
  declare const evmMultisignCommonInputSchema: z.ZodObject<{
339
+ keyGenId: z.ZodOptional<z.ZodString>;
339
340
  keyGen: z.ZodObject<{
340
341
  pubkeyhex: z.ZodString;
341
342
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -403,6 +404,7 @@ declare const evmMultisignCommonInputSchema: z.ZodObject<{
403
404
  [k: string]: unknown;
404
405
  };
405
406
  customGasChainDetails?: Record<string, unknown> | undefined;
407
+ keyGenId?: string | undefined;
406
408
  }, {
407
409
  keyGen: {
408
410
  pubkeyhex: string;
@@ -426,6 +428,7 @@ declare const evmMultisignCommonInputSchema: z.ZodObject<{
426
428
  [k: string]: unknown;
427
429
  };
428
430
  customGasChainDetails?: Record<string, unknown> | undefined;
431
+ keyGenId?: string | undefined;
429
432
  }>;
430
433
  /** Internal builder output before MCP management submit (not the MCP tool return value). */
431
434
  declare const multisignOutputSchema: z.ZodObject<{
@@ -538,6 +541,7 @@ declare const mcpUniswapV4CreateSwapOutputSchema: z.ZodObject<{
538
541
  }, z.ZodTypeAny, "passthrough">>;
539
542
  /** Input for MCP tool `ctm_uniswap_v4_build_swap_multisign`. */
540
543
  declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodObject<{
544
+ keyGenId: z.ZodOptional<z.ZodString>;
541
545
  keyGen: z.ZodObject<{
542
546
  pubkeyhex: z.ZodString;
543
547
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -636,6 +640,7 @@ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodObject<{
636
640
  swapDeadlineUnix: number;
637
641
  customGasChainDetails?: Record<string, unknown> | undefined;
638
642
  slippagePercent?: number | undefined;
643
+ keyGenId?: string | undefined;
639
644
  }, {
640
645
  keyGen: {
641
646
  pubkeyhex: string;
@@ -671,6 +676,7 @@ declare const mcpUniswapV4BuildSwapMultisignInputSchema: z.ZodObject<{
671
676
  swapDeadlineUnix: number;
672
677
  customGasChainDetails?: Record<string, unknown> | undefined;
673
678
  slippagePercent?: number | undefined;
679
+ keyGenId?: string | undefined;
674
680
  }>;
675
681
  type McpUniswapV4QuoteInput = z.infer<typeof mcpUniswapV4QuoteInputSchema>;
676
682
  type McpUniswapV4QuoteOutput = z.infer<typeof mcpUniswapV4QuoteOutputSchema>;
@@ -1196,6 +1202,7 @@ declare const mcpUniswapV4RegisterPositionFromMintTxOutputSchema: z.ZodObject<{
1196
1202
  registered: boolean;
1197
1203
  }>;
1198
1204
  declare const mcpUniswapV4BuildMintLiquidityMultisignInputSchema: z.ZodObject<{
1205
+ keyGenId: z.ZodOptional<z.ZodString>;
1199
1206
  keyGen: z.ZodObject<{
1200
1207
  pubkeyhex: z.ZodString;
1201
1208
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -1270,6 +1277,7 @@ declare const mcpUniswapV4BuildMintLiquidityMultisignInputSchema: z.ZodObject<{
1270
1277
  customGasChainDetails?: Record<string, unknown> | undefined;
1271
1278
  nativeWrapped?: string | undefined;
1272
1279
  poolReference?: string | undefined;
1280
+ keyGenId?: string | undefined;
1273
1281
  }, {
1274
1282
  keyGen: {
1275
1283
  pubkeyhex: string;
@@ -1296,8 +1304,10 @@ declare const mcpUniswapV4BuildMintLiquidityMultisignInputSchema: z.ZodObject<{
1296
1304
  customGasChainDetails?: Record<string, unknown> | undefined;
1297
1305
  nativeWrapped?: string | undefined;
1298
1306
  poolReference?: string | undefined;
1307
+ keyGenId?: string | undefined;
1299
1308
  }>;
1300
1309
  declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodObject<{
1310
+ keyGenId: z.ZodOptional<z.ZodString>;
1301
1311
  keyGen: z.ZodObject<{
1302
1312
  pubkeyhex: z.ZodString;
1303
1313
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -1374,6 +1384,7 @@ declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodObjec
1374
1384
  customGasChainDetails?: Record<string, unknown> | undefined;
1375
1385
  nativeWrapped?: string | undefined;
1376
1386
  poolReference?: string | undefined;
1387
+ keyGenId?: string | undefined;
1377
1388
  }, {
1378
1389
  keyGen: {
1379
1390
  pubkeyhex: string;
@@ -1401,8 +1412,10 @@ declare const mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema: z.ZodObjec
1401
1412
  customGasChainDetails?: Record<string, unknown> | undefined;
1402
1413
  nativeWrapped?: string | undefined;
1403
1414
  poolReference?: string | undefined;
1415
+ keyGenId?: string | undefined;
1404
1416
  }>;
1405
1417
  declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodObject<{
1418
+ keyGenId: z.ZodOptional<z.ZodString>;
1406
1419
  keyGen: z.ZodObject<{
1407
1420
  pubkeyhex: z.ZodString;
1408
1421
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -1479,6 +1492,7 @@ declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodObjec
1479
1492
  customGasChainDetails?: Record<string, unknown> | undefined;
1480
1493
  nativeWrapped?: string | undefined;
1481
1494
  poolReference?: string | undefined;
1495
+ keyGenId?: string | undefined;
1482
1496
  }, {
1483
1497
  keyGen: {
1484
1498
  pubkeyhex: string;
@@ -1506,8 +1520,10 @@ declare const mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema: z.ZodObjec
1506
1520
  customGasChainDetails?: Record<string, unknown> | undefined;
1507
1521
  nativeWrapped?: string | undefined;
1508
1522
  poolReference?: string | undefined;
1523
+ keyGenId?: string | undefined;
1509
1524
  }>;
1510
1525
  declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodObject<{
1526
+ keyGenId: z.ZodOptional<z.ZodString>;
1511
1527
  keyGen: z.ZodObject<{
1512
1528
  pubkeyhex: z.ZodString;
1513
1529
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -1584,6 +1600,7 @@ declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodObject<{
1584
1600
  customGasChainDetails?: Record<string, unknown> | undefined;
1585
1601
  nativeWrapped?: string | undefined;
1586
1602
  poolReference?: string | undefined;
1603
+ keyGenId?: string | undefined;
1587
1604
  }, {
1588
1605
  keyGen: {
1589
1606
  pubkeyhex: string;
@@ -1611,6 +1628,7 @@ declare const mcpUniswapV4BuildCollectFeesMultisignInputSchema: z.ZodObject<{
1611
1628
  customGasChainDetails?: Record<string, unknown> | undefined;
1612
1629
  nativeWrapped?: string | undefined;
1613
1630
  poolReference?: string | undefined;
1631
+ keyGenId?: string | undefined;
1614
1632
  }>;
1615
1633
  type McpUniswapV4LpCreatePositionInput = z.infer<typeof mcpUniswapV4LpCreatePositionInputSchema>;
1616
1634
  type McpUniswapV4BuildMintLiquidityMultisignInput = z.infer<typeof mcpUniswapV4BuildMintLiquidityMultisignInputSchema>;
@@ -1641,6 +1659,7 @@ declare const mcpCurveDaoQuoteInputSchema: z.ZodObject<{
1641
1659
  declare const mcpCurveDaoQuoteOutputSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1642
1660
  /** Input for MCP tool `ctm_curve_dao_build_swap_multisign`. */
1643
1661
  declare const mcpCurveDaoBuildSwapMultisignInputSchema: z.ZodObject<{
1662
+ keyGenId: z.ZodOptional<z.ZodString>;
1644
1663
  keyGen: z.ZodObject<{
1645
1664
  pubkeyhex: z.ZodString;
1646
1665
  keylist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -1717,6 +1736,7 @@ declare const mcpCurveDaoBuildSwapMultisignInputSchema: z.ZodObject<{
1717
1736
  slippagePercent: number;
1718
1737
  amountHuman: string;
1719
1738
  customGasChainDetails?: Record<string, unknown> | undefined;
1739
+ keyGenId?: string | undefined;
1720
1740
  }, {
1721
1741
  keyGen: {
1722
1742
  pubkeyhex: string;
@@ -1744,6 +1764,7 @@ declare const mcpCurveDaoBuildSwapMultisignInputSchema: z.ZodObject<{
1744
1764
  slippagePercent: number;
1745
1765
  amountHuman: string;
1746
1766
  customGasChainDetails?: Record<string, unknown> | undefined;
1767
+ keyGenId?: string | undefined;
1747
1768
  }>;
1748
1769
  type McpCurveDaoQuoteInput = z.infer<typeof mcpCurveDaoQuoteInputSchema>;
1749
1770
  type McpCurveDaoQuoteOutput = z.infer<typeof mcpCurveDaoQuoteOutputSchema>;
@@ -1960,6 +1981,190 @@ type McpMapleDepositInput = z.infer<typeof mcpMapleDepositInputSchema>;
1960
1981
  type McpSkyLockstakeStakeInput = z.infer<typeof mcpSkyLockstakeStakeInputSchema>;
1961
1982
  type McpAaveV4DepositInput = z.infer<typeof mcpAaveV4DepositInputSchema>;
1962
1983
  type McpEulerV2IsolatedLendInput = z.infer<typeof mcpEulerV2IsolatedLendInputSchema>;
1984
+ declare const mcpMorphoVaultDepositInputSchema: z.ZodObject<{} & {
1985
+ [x: string]: z.ZodTypeAny;
1986
+ }, "strip", z.ZodTypeAny, {
1987
+ [x: string]: any;
1988
+ }, {
1989
+ [x: string]: any;
1990
+ }>;
1991
+ declare const mcpMorphoVaultWithdrawInputSchema: z.ZodObject<{} & {
1992
+ [x: string]: z.ZodTypeAny;
1993
+ }, "strip", z.ZodTypeAny, {
1994
+ [x: string]: any;
1995
+ }, {
1996
+ [x: string]: any;
1997
+ }>;
1998
+ declare const mcpMorphoBlueCollateralDepositInputSchema: z.ZodObject<{} & {
1999
+ [x: string]: z.ZodTypeAny;
2000
+ }, "strip", z.ZodTypeAny, {
2001
+ [x: string]: any;
2002
+ }, {
2003
+ [x: string]: any;
2004
+ }>;
2005
+ declare const mcpMorphoBlueBorrowInputSchema: z.ZodObject<{} & {
2006
+ [x: string]: z.ZodTypeAny;
2007
+ }, "strip", z.ZodTypeAny, {
2008
+ [x: string]: any;
2009
+ }, {
2010
+ [x: string]: any;
2011
+ }>;
2012
+ declare const mcpMorphoBlueRepayInputSchema: z.ZodObject<{} & {
2013
+ [x: string]: z.ZodTypeAny;
2014
+ }, "strip", z.ZodTypeAny, {
2015
+ [x: string]: any;
2016
+ }, {
2017
+ [x: string]: any;
2018
+ }>;
2019
+ declare const mcpMorphoBlueCollateralWithdrawInputSchema: z.ZodObject<{} & {
2020
+ [x: string]: z.ZodTypeAny;
2021
+ }, "strip", z.ZodTypeAny, {
2022
+ [x: string]: any;
2023
+ }, {
2024
+ [x: string]: any;
2025
+ }>;
2026
+ declare const mcpMorphoMerklClaimInputSchema: z.ZodObject<{} & {
2027
+ [x: string]: z.ZodTypeAny;
2028
+ }, "strip", z.ZodTypeAny, {
2029
+ [x: string]: any;
2030
+ }, {
2031
+ [x: string]: any;
2032
+ }>;
2033
+ type McpMorphoVaultDepositInput = z.infer<typeof mcpMorphoVaultDepositInputSchema>;
2034
+
2035
+ declare const mcpMorphoFetchEarnVaultsInputSchema: z.ZodObject<{
2036
+ chainId: z.ZodNumber;
2037
+ underlying: z.ZodOptional<z.ZodString>;
2038
+ query: z.ZodOptional<z.ZodString>;
2039
+ limit: z.ZodOptional<z.ZodNumber>;
2040
+ }, "strip", z.ZodTypeAny, {
2041
+ chainId: number;
2042
+ underlying?: string | undefined;
2043
+ query?: string | undefined;
2044
+ limit?: number | undefined;
2045
+ }, {
2046
+ chainId: number;
2047
+ underlying?: string | undefined;
2048
+ query?: string | undefined;
2049
+ limit?: number | undefined;
2050
+ }>;
2051
+ declare const mcpMorphoFetchEarnVaultsOutputSchema: z.ZodObject<{
2052
+ vaults: z.ZodArray<z.ZodObject<{
2053
+ vaultAddress: z.ZodString;
2054
+ vaultName: z.ZodString;
2055
+ vaultSymbol: z.ZodString;
2056
+ underlyingAddress: z.ZodString;
2057
+ underlyingSymbol: z.ZodString;
2058
+ apy: z.ZodString;
2059
+ netApy: z.ZodString;
2060
+ netApy7d: z.ZodString;
2061
+ netApy30d: z.ZodString;
2062
+ netApy90d: z.ZodString;
2063
+ performanceFee: z.ZodString;
2064
+ managementFee: z.ZodNullable<z.ZodString>;
2065
+ totalDepositsUsd: z.ZodString;
2066
+ liquidityUsd: z.ZodString;
2067
+ exposure: z.ZodArray<z.ZodObject<{
2068
+ label: z.ZodString;
2069
+ allocatedUsdLabel: z.ZodString;
2070
+ allocationPercentLabel: z.ZodString;
2071
+ }, "strip", z.ZodTypeAny, {
2072
+ label: string;
2073
+ allocatedUsdLabel: string;
2074
+ allocationPercentLabel: string;
2075
+ }, {
2076
+ label: string;
2077
+ allocatedUsdLabel: string;
2078
+ allocationPercentLabel: string;
2079
+ }>, "many">;
2080
+ }, "strip", z.ZodTypeAny, {
2081
+ vaultAddress: string;
2082
+ vaultName: string;
2083
+ vaultSymbol: string;
2084
+ underlyingAddress: string;
2085
+ underlyingSymbol: string;
2086
+ apy: string;
2087
+ netApy: string;
2088
+ netApy7d: string;
2089
+ netApy30d: string;
2090
+ netApy90d: string;
2091
+ performanceFee: string;
2092
+ managementFee: string | null;
2093
+ totalDepositsUsd: string;
2094
+ liquidityUsd: string;
2095
+ exposure: {
2096
+ label: string;
2097
+ allocatedUsdLabel: string;
2098
+ allocationPercentLabel: string;
2099
+ }[];
2100
+ }, {
2101
+ vaultAddress: string;
2102
+ vaultName: string;
2103
+ vaultSymbol: string;
2104
+ underlyingAddress: string;
2105
+ underlyingSymbol: string;
2106
+ apy: string;
2107
+ netApy: string;
2108
+ netApy7d: string;
2109
+ netApy30d: string;
2110
+ netApy90d: string;
2111
+ performanceFee: string;
2112
+ managementFee: string | null;
2113
+ totalDepositsUsd: string;
2114
+ liquidityUsd: string;
2115
+ exposure: {
2116
+ label: string;
2117
+ allocatedUsdLabel: string;
2118
+ allocationPercentLabel: string;
2119
+ }[];
2120
+ }>, "many">;
2121
+ }, "strip", z.ZodTypeAny, {
2122
+ vaults: {
2123
+ vaultAddress: string;
2124
+ vaultName: string;
2125
+ vaultSymbol: string;
2126
+ underlyingAddress: string;
2127
+ underlyingSymbol: string;
2128
+ apy: string;
2129
+ netApy: string;
2130
+ netApy7d: string;
2131
+ netApy30d: string;
2132
+ netApy90d: string;
2133
+ performanceFee: string;
2134
+ managementFee: string | null;
2135
+ totalDepositsUsd: string;
2136
+ liquidityUsd: string;
2137
+ exposure: {
2138
+ label: string;
2139
+ allocatedUsdLabel: string;
2140
+ allocationPercentLabel: string;
2141
+ }[];
2142
+ }[];
2143
+ }, {
2144
+ vaults: {
2145
+ vaultAddress: string;
2146
+ vaultName: string;
2147
+ vaultSymbol: string;
2148
+ underlyingAddress: string;
2149
+ underlyingSymbol: string;
2150
+ apy: string;
2151
+ netApy: string;
2152
+ netApy7d: string;
2153
+ netApy30d: string;
2154
+ netApy90d: string;
2155
+ performanceFee: string;
2156
+ managementFee: string | null;
2157
+ totalDepositsUsd: string;
2158
+ liquidityUsd: string;
2159
+ exposure: {
2160
+ label: string;
2161
+ allocatedUsdLabel: string;
2162
+ allocationPercentLabel: string;
2163
+ }[];
2164
+ }[];
2165
+ }>;
2166
+ type McpMorphoFetchEarnVaultsInput = z.infer<typeof mcpMorphoFetchEarnVaultsInputSchema>;
2167
+ type McpMorphoFetchEarnVaultsOutput = z.infer<typeof mcpMorphoFetchEarnVaultsOutputSchema>;
1963
2168
 
1964
2169
  declare const mcpGmxFetchMarketsInputSchema: z.ZodObject<{
1965
2170
  chainId: z.ZodNumber;
@@ -2080,19 +2285,19 @@ declare const mcpGmxFetchGmMarketsOutputSchema: z.ZodObject<{
2080
2285
  apyPercentLabel: z.ZodNullable<z.ZodString>;
2081
2286
  }, "strip", z.ZodTypeAny, {
2082
2287
  symbol: string;
2288
+ apy: number | null;
2083
2289
  marketTokenAddress: string;
2084
2290
  longTokenSymbol: string | null;
2085
2291
  shortTokenSymbol: string | null;
2086
- apy: number | null;
2087
2292
  baseApy: number | null;
2088
2293
  bonusApr: number | null;
2089
2294
  apyPercentLabel: string | null;
2090
2295
  }, {
2091
2296
  symbol: string;
2297
+ apy: number | null;
2092
2298
  marketTokenAddress: string;
2093
2299
  longTokenSymbol: string | null;
2094
2300
  shortTokenSymbol: string | null;
2095
- apy: number | null;
2096
2301
  baseApy: number | null;
2097
2302
  bonusApr: number | null;
2098
2303
  apyPercentLabel: string | null;
@@ -2100,10 +2305,10 @@ declare const mcpGmxFetchGmMarketsOutputSchema: z.ZodObject<{
2100
2305
  }, "strip", z.ZodTypeAny, {
2101
2306
  markets: {
2102
2307
  symbol: string;
2308
+ apy: number | null;
2103
2309
  marketTokenAddress: string;
2104
2310
  longTokenSymbol: string | null;
2105
2311
  shortTokenSymbol: string | null;
2106
- apy: number | null;
2107
2312
  baseApy: number | null;
2108
2313
  bonusApr: number | null;
2109
2314
  apyPercentLabel: string | null;
@@ -2111,10 +2316,10 @@ declare const mcpGmxFetchGmMarketsOutputSchema: z.ZodObject<{
2111
2316
  }, {
2112
2317
  markets: {
2113
2318
  symbol: string;
2319
+ apy: number | null;
2114
2320
  marketTokenAddress: string;
2115
2321
  longTokenSymbol: string | null;
2116
2322
  shortTokenSymbol: string | null;
2117
- apy: number | null;
2118
2323
  baseApy: number | null;
2119
2324
  bonusApr: number | null;
2120
2325
  apyPercentLabel: string | null;
@@ -2139,19 +2344,19 @@ declare const mcpGmxFetchGmApyOutputSchema: z.ZodObject<{
2139
2344
  apyPercentLabel: z.ZodNullable<z.ZodString>;
2140
2345
  }, "strip", z.ZodTypeAny, {
2141
2346
  symbol: string;
2347
+ apy: number | null;
2142
2348
  marketTokenAddress: string;
2143
2349
  longTokenSymbol: string | null;
2144
2350
  shortTokenSymbol: string | null;
2145
- apy: number | null;
2146
2351
  baseApy: number | null;
2147
2352
  bonusApr: number | null;
2148
2353
  apyPercentLabel: string | null;
2149
2354
  }, {
2150
2355
  symbol: string;
2356
+ apy: number | null;
2151
2357
  marketTokenAddress: string;
2152
2358
  longTokenSymbol: string | null;
2153
2359
  shortTokenSymbol: string | null;
2154
- apy: number | null;
2155
2360
  baseApy: number | null;
2156
2361
  bonusApr: number | null;
2157
2362
  apyPercentLabel: string | null;
@@ -2159,10 +2364,10 @@ declare const mcpGmxFetchGmApyOutputSchema: z.ZodObject<{
2159
2364
  }, "strip", z.ZodTypeAny, {
2160
2365
  markets: {
2161
2366
  symbol: string;
2367
+ apy: number | null;
2162
2368
  marketTokenAddress: string;
2163
2369
  longTokenSymbol: string | null;
2164
2370
  shortTokenSymbol: string | null;
2165
- apy: number | null;
2166
2371
  baseApy: number | null;
2167
2372
  bonusApr: number | null;
2168
2373
  apyPercentLabel: string | null;
@@ -2170,10 +2375,10 @@ declare const mcpGmxFetchGmApyOutputSchema: z.ZodObject<{
2170
2375
  }, {
2171
2376
  markets: {
2172
2377
  symbol: string;
2378
+ apy: number | null;
2173
2379
  marketTokenAddress: string;
2174
2380
  longTokenSymbol: string | null;
2175
2381
  shortTokenSymbol: string | null;
2176
- apy: number | null;
2177
2382
  baseApy: number | null;
2178
2383
  bonusApr: number | null;
2179
2384
  apyPercentLabel: string | null;
@@ -2319,17 +2524,20 @@ declare const mcpHyperliquidFetchMarketsOutputSchema: z.ZodObject<{
2319
2524
  szDecimals: z.ZodNumber;
2320
2525
  maxLeverage: z.ZodNumber;
2321
2526
  onlyIsolated: z.ZodOptional<z.ZodBoolean>;
2527
+ dex: z.ZodOptional<z.ZodString>;
2322
2528
  }, "strip", z.ZodTypeAny, {
2323
2529
  name: string;
2324
2530
  asset: number;
2325
2531
  maxLeverage: number;
2326
2532
  szDecimals: number;
2533
+ dex?: string | undefined;
2327
2534
  onlyIsolated?: boolean | undefined;
2328
2535
  }, {
2329
2536
  name: string;
2330
2537
  asset: number;
2331
2538
  maxLeverage: number;
2332
2539
  szDecimals: number;
2540
+ dex?: string | undefined;
2333
2541
  onlyIsolated?: boolean | undefined;
2334
2542
  }>, "many">;
2335
2543
  dexes: z.ZodArray<z.ZodObject<{
@@ -2348,6 +2556,7 @@ declare const mcpHyperliquidFetchMarketsOutputSchema: z.ZodObject<{
2348
2556
  asset: number;
2349
2557
  maxLeverage: number;
2350
2558
  szDecimals: number;
2559
+ dex?: string | undefined;
2351
2560
  onlyIsolated?: boolean | undefined;
2352
2561
  }[];
2353
2562
  dexes: {
@@ -2360,6 +2569,7 @@ declare const mcpHyperliquidFetchMarketsOutputSchema: z.ZodObject<{
2360
2569
  asset: number;
2361
2570
  maxLeverage: number;
2362
2571
  szDecimals: number;
2572
+ dex?: string | undefined;
2363
2573
  onlyIsolated?: boolean | undefined;
2364
2574
  }[];
2365
2575
  dexes: {
@@ -2367,6 +2577,94 @@ declare const mcpHyperliquidFetchMarketsOutputSchema: z.ZodObject<{
2367
2577
  fullName: string;
2368
2578
  }[];
2369
2579
  }>;
2580
+ declare const mcpHyperliquidSearchMarketsInputSchema: z.ZodObject<{
2581
+ chainId: z.ZodNumber;
2582
+ query: z.ZodString;
2583
+ dex: z.ZodOptional<z.ZodString>;
2584
+ limit: z.ZodOptional<z.ZodNumber>;
2585
+ }, "strip", z.ZodTypeAny, {
2586
+ chainId: number;
2587
+ query: string;
2588
+ limit?: number | undefined;
2589
+ dex?: string | undefined;
2590
+ }, {
2591
+ chainId: number;
2592
+ query: string;
2593
+ limit?: number | undefined;
2594
+ dex?: string | undefined;
2595
+ }>;
2596
+ declare const mcpHyperliquidSearchMarketsOutputSchema: z.ZodObject<{
2597
+ matches: z.ZodArray<z.ZodObject<{
2598
+ coin: z.ZodString;
2599
+ symbol: z.ZodString;
2600
+ dex: z.ZodOptional<z.ZodString>;
2601
+ asset: z.ZodNumber;
2602
+ szDecimals: z.ZodNumber;
2603
+ maxLeverage: z.ZodNumber;
2604
+ onlyIsolated: z.ZodOptional<z.ZodBoolean>;
2605
+ displayName: z.ZodOptional<z.ZodString>;
2606
+ category: z.ZodOptional<z.ZodString>;
2607
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2608
+ matchScore: z.ZodNumber;
2609
+ matchReason: z.ZodString;
2610
+ }, "strip", z.ZodTypeAny, {
2611
+ symbol: string;
2612
+ asset: number;
2613
+ coin: string;
2614
+ maxLeverage: number;
2615
+ szDecimals: number;
2616
+ matchScore: number;
2617
+ matchReason: string;
2618
+ dex?: string | undefined;
2619
+ onlyIsolated?: boolean | undefined;
2620
+ displayName?: string | undefined;
2621
+ category?: string | undefined;
2622
+ keywords?: string[] | undefined;
2623
+ }, {
2624
+ symbol: string;
2625
+ asset: number;
2626
+ coin: string;
2627
+ maxLeverage: number;
2628
+ szDecimals: number;
2629
+ matchScore: number;
2630
+ matchReason: string;
2631
+ dex?: string | undefined;
2632
+ onlyIsolated?: boolean | undefined;
2633
+ displayName?: string | undefined;
2634
+ category?: string | undefined;
2635
+ keywords?: string[] | undefined;
2636
+ }>, "many">;
2637
+ }, "strip", z.ZodTypeAny, {
2638
+ matches: {
2639
+ symbol: string;
2640
+ asset: number;
2641
+ coin: string;
2642
+ maxLeverage: number;
2643
+ szDecimals: number;
2644
+ matchScore: number;
2645
+ matchReason: string;
2646
+ dex?: string | undefined;
2647
+ onlyIsolated?: boolean | undefined;
2648
+ displayName?: string | undefined;
2649
+ category?: string | undefined;
2650
+ keywords?: string[] | undefined;
2651
+ }[];
2652
+ }, {
2653
+ matches: {
2654
+ symbol: string;
2655
+ asset: number;
2656
+ coin: string;
2657
+ maxLeverage: number;
2658
+ szDecimals: number;
2659
+ matchScore: number;
2660
+ matchReason: string;
2661
+ dex?: string | undefined;
2662
+ onlyIsolated?: boolean | undefined;
2663
+ displayName?: string | undefined;
2664
+ category?: string | undefined;
2665
+ keywords?: string[] | undefined;
2666
+ }[];
2667
+ }>;
2370
2668
  declare const mcpHyperliquidFetchOpenContextInputSchema: z.ZodObject<{
2371
2669
  chainId: z.ZodNumber;
2372
2670
  executorAddress: z.ZodString;
@@ -2618,23 +2916,72 @@ declare const mcpHyperliquidFetchMarketSnapshotInputSchema: z.ZodObject<{
2618
2916
  coin: z.ZodString;
2619
2917
  interval: z.ZodOptional<z.ZodEnum<["1m", "3m", "5m", "15m", "30m", "1h", "2h", "4h", "8h", "12h", "1d", "3d", "1w", "1M"]>>;
2620
2918
  dex: z.ZodOptional<z.ZodString>;
2919
+ /** Recent OHLCV bars to return (default 48, max 200). Live price is always current. */
2920
+ candleLimit: z.ZodOptional<z.ZodNumber>;
2621
2921
  }, "strip", z.ZodTypeAny, {
2622
2922
  chainId: number;
2623
2923
  coin: string;
2624
2924
  dex?: string | undefined;
2625
2925
  interval?: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d" | undefined;
2926
+ candleLimit?: number | undefined;
2626
2927
  }, {
2627
2928
  chainId: number;
2628
2929
  coin: string;
2629
2930
  dex?: string | undefined;
2630
2931
  interval?: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d" | undefined;
2932
+ candleLimit?: number | undefined;
2631
2933
  }>;
2632
2934
  declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
2633
2935
  snapshot: z.ZodObject<{
2634
2936
  coin: z.ZodString;
2635
- midUsd: z.ZodNullable<z.ZodString>;
2937
+ dex: z.ZodNullable<z.ZodString>;
2938
+ livePrice: z.ZodObject<{
2939
+ markPx: z.ZodNullable<z.ZodString>;
2940
+ midPx: z.ZodNullable<z.ZodString>;
2941
+ oraclePx: z.ZodNullable<z.ZodString>;
2942
+ prevDayPx: z.ZodNullable<z.ZodString>;
2943
+ midUsd: z.ZodString;
2944
+ source: z.ZodEnum<["midPx", "markPx", "allMids"]>;
2945
+ }, "strip", z.ZodTypeAny, {
2946
+ source: "markPx" | "midPx" | "allMids";
2947
+ markPx: string | null;
2948
+ midPx: string | null;
2949
+ oraclePx: string | null;
2950
+ prevDayPx: string | null;
2951
+ midUsd: string;
2952
+ }, {
2953
+ source: "markPx" | "midPx" | "allMids";
2954
+ markPx: string | null;
2955
+ midPx: string | null;
2956
+ oraclePx: string | null;
2957
+ prevDayPx: string | null;
2958
+ midUsd: string;
2959
+ }>;
2960
+ midUsd: z.ZodString;
2636
2961
  fetchedAtMs: z.ZodNumber;
2637
2962
  interval: z.ZodEnum<["1m", "3m", "5m", "15m", "30m", "1h", "2h", "4h", "8h", "12h", "1d", "3d", "1w", "1M"]>;
2963
+ latestCandle: z.ZodNullable<z.ZodObject<{
2964
+ timestampMs: z.ZodNumber;
2965
+ open: z.ZodString;
2966
+ high: z.ZodString;
2967
+ low: z.ZodString;
2968
+ close: z.ZodString;
2969
+ volume: z.ZodString;
2970
+ }, "strip", z.ZodTypeAny, {
2971
+ high: string;
2972
+ low: string;
2973
+ timestampMs: number;
2974
+ open: string;
2975
+ close: string;
2976
+ volume: string;
2977
+ }, {
2978
+ high: string;
2979
+ low: string;
2980
+ timestampMs: number;
2981
+ open: string;
2982
+ close: string;
2983
+ volume: string;
2984
+ }>>;
2638
2985
  candles: z.ZodArray<z.ZodObject<{
2639
2986
  timestampMs: z.ZodNumber;
2640
2987
  open: z.ZodString;
@@ -2657,6 +3004,7 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
2657
3004
  close: string;
2658
3005
  volume: string;
2659
3006
  }>, "many">;
3007
+ candleCount: z.ZodNumber;
2660
3008
  }, "strip", z.ZodTypeAny, {
2661
3009
  fetchedAtMs: number;
2662
3010
  candles: {
@@ -2668,8 +3016,26 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
2668
3016
  volume: string;
2669
3017
  }[];
2670
3018
  coin: string;
3019
+ dex: string | null;
2671
3020
  interval: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d";
2672
- midUsd: string | null;
3021
+ midUsd: string;
3022
+ livePrice: {
3023
+ source: "markPx" | "midPx" | "allMids";
3024
+ markPx: string | null;
3025
+ midPx: string | null;
3026
+ oraclePx: string | null;
3027
+ prevDayPx: string | null;
3028
+ midUsd: string;
3029
+ };
3030
+ latestCandle: {
3031
+ high: string;
3032
+ low: string;
3033
+ timestampMs: number;
3034
+ open: string;
3035
+ close: string;
3036
+ volume: string;
3037
+ } | null;
3038
+ candleCount: number;
2673
3039
  }, {
2674
3040
  fetchedAtMs: number;
2675
3041
  candles: {
@@ -2681,10 +3047,31 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
2681
3047
  volume: string;
2682
3048
  }[];
2683
3049
  coin: string;
3050
+ dex: string | null;
2684
3051
  interval: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d";
2685
- midUsd: string | null;
3052
+ midUsd: string;
3053
+ livePrice: {
3054
+ source: "markPx" | "midPx" | "allMids";
3055
+ markPx: string | null;
3056
+ midPx: string | null;
3057
+ oraclePx: string | null;
3058
+ prevDayPx: string | null;
3059
+ midUsd: string;
3060
+ };
3061
+ latestCandle: {
3062
+ high: string;
3063
+ low: string;
3064
+ timestampMs: number;
3065
+ open: string;
3066
+ close: string;
3067
+ volume: string;
3068
+ } | null;
3069
+ candleCount: number;
2686
3070
  }>;
3071
+ resolvedCoin: z.ZodString;
3072
+ dex: z.ZodNullable<z.ZodString>;
2687
3073
  }, "strip", z.ZodTypeAny, {
3074
+ dex: string | null;
2688
3075
  snapshot: {
2689
3076
  fetchedAtMs: number;
2690
3077
  candles: {
@@ -2696,10 +3083,30 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
2696
3083
  volume: string;
2697
3084
  }[];
2698
3085
  coin: string;
3086
+ dex: string | null;
2699
3087
  interval: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d";
2700
- midUsd: string | null;
3088
+ midUsd: string;
3089
+ livePrice: {
3090
+ source: "markPx" | "midPx" | "allMids";
3091
+ markPx: string | null;
3092
+ midPx: string | null;
3093
+ oraclePx: string | null;
3094
+ prevDayPx: string | null;
3095
+ midUsd: string;
3096
+ };
3097
+ latestCandle: {
3098
+ high: string;
3099
+ low: string;
3100
+ timestampMs: number;
3101
+ open: string;
3102
+ close: string;
3103
+ volume: string;
3104
+ } | null;
3105
+ candleCount: number;
2701
3106
  };
3107
+ resolvedCoin: string;
2702
3108
  }, {
3109
+ dex: string | null;
2703
3110
  snapshot: {
2704
3111
  fetchedAtMs: number;
2705
3112
  candles: {
@@ -2711,8 +3118,225 @@ declare const mcpHyperliquidFetchMarketSnapshotOutputSchema: z.ZodObject<{
2711
3118
  volume: string;
2712
3119
  }[];
2713
3120
  coin: string;
3121
+ dex: string | null;
3122
+ interval: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d";
3123
+ midUsd: string;
3124
+ livePrice: {
3125
+ source: "markPx" | "midPx" | "allMids";
3126
+ markPx: string | null;
3127
+ midPx: string | null;
3128
+ oraclePx: string | null;
3129
+ prevDayPx: string | null;
3130
+ midUsd: string;
3131
+ };
3132
+ latestCandle: {
3133
+ high: string;
3134
+ low: string;
3135
+ timestampMs: number;
3136
+ open: string;
3137
+ close: string;
3138
+ volume: string;
3139
+ } | null;
3140
+ candleCount: number;
3141
+ };
3142
+ resolvedCoin: string;
3143
+ }>;
3144
+ declare const mcpHyperliquidFetchOhlcvInputSchema: z.ZodObject<{
3145
+ chainId: z.ZodNumber;
3146
+ coin: z.ZodString;
3147
+ interval: z.ZodOptional<z.ZodEnum<["1m", "3m", "5m", "15m", "30m", "1h", "2h", "4h", "8h", "12h", "1d", "3d", "1w", "1M"]>>;
3148
+ dex: z.ZodOptional<z.ZodString>;
3149
+ /** Calendar-day lookback ending now (e.g. 7 = last week). Preferred for agent requests. */
3150
+ lookbackDays: z.ZodOptional<z.ZodNumber>;
3151
+ /** Hour lookback ending now. Alternative to lookbackDays. */
3152
+ lookbackHours: z.ZodOptional<z.ZodNumber>;
3153
+ /** Explicit range start (ms since epoch). Use with endTimeMs. */
3154
+ startTimeMs: z.ZodOptional<z.ZodNumber>;
3155
+ /** Explicit range end (ms since epoch). Defaults to now. */
3156
+ endTimeMs: z.ZodOptional<z.ZodNumber>;
3157
+ }, "strip", z.ZodTypeAny, {
3158
+ chainId: number;
3159
+ coin: string;
3160
+ dex?: string | undefined;
3161
+ interval?: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d" | undefined;
3162
+ lookbackDays?: number | undefined;
3163
+ lookbackHours?: number | undefined;
3164
+ startTimeMs?: number | undefined;
3165
+ endTimeMs?: number | undefined;
3166
+ }, {
3167
+ chainId: number;
3168
+ coin: string;
3169
+ dex?: string | undefined;
3170
+ interval?: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d" | undefined;
3171
+ lookbackDays?: number | undefined;
3172
+ lookbackHours?: number | undefined;
3173
+ startTimeMs?: number | undefined;
3174
+ endTimeMs?: number | undefined;
3175
+ }>;
3176
+ declare const mcpHyperliquidFetchOhlcvOutputSchema: z.ZodObject<{
3177
+ ohlcv: z.ZodObject<{
3178
+ coin: z.ZodString;
3179
+ dex: z.ZodNullable<z.ZodString>;
3180
+ interval: z.ZodEnum<["1m", "3m", "5m", "15m", "30m", "1h", "2h", "4h", "8h", "12h", "1d", "3d", "1w", "1M"]>;
3181
+ startTimeMs: z.ZodNumber;
3182
+ endTimeMs: z.ZodNumber;
3183
+ expectedBars: z.ZodNumber;
3184
+ candleCount: z.ZodNumber;
3185
+ latestCandle: z.ZodNullable<z.ZodObject<{
3186
+ timestampMs: z.ZodNumber;
3187
+ open: z.ZodString;
3188
+ high: z.ZodString;
3189
+ low: z.ZodString;
3190
+ close: z.ZodString;
3191
+ volume: z.ZodString;
3192
+ }, "strip", z.ZodTypeAny, {
3193
+ high: string;
3194
+ low: string;
3195
+ timestampMs: number;
3196
+ open: string;
3197
+ close: string;
3198
+ volume: string;
3199
+ }, {
3200
+ high: string;
3201
+ low: string;
3202
+ timestampMs: number;
3203
+ open: string;
3204
+ close: string;
3205
+ volume: string;
3206
+ }>>;
3207
+ candles: z.ZodArray<z.ZodObject<{
3208
+ timestampMs: z.ZodNumber;
3209
+ open: z.ZodString;
3210
+ high: z.ZodString;
3211
+ low: z.ZodString;
3212
+ close: z.ZodString;
3213
+ volume: z.ZodString;
3214
+ }, "strip", z.ZodTypeAny, {
3215
+ high: string;
3216
+ low: string;
3217
+ timestampMs: number;
3218
+ open: string;
3219
+ close: string;
3220
+ volume: string;
3221
+ }, {
3222
+ high: string;
3223
+ low: string;
3224
+ timestampMs: number;
3225
+ open: string;
3226
+ close: string;
3227
+ volume: string;
3228
+ }>, "many">;
3229
+ fetchedAtMs: z.ZodNumber;
3230
+ }, "strip", z.ZodTypeAny, {
3231
+ fetchedAtMs: number;
3232
+ candles: {
3233
+ high: string;
3234
+ low: string;
3235
+ timestampMs: number;
3236
+ open: string;
3237
+ close: string;
3238
+ volume: string;
3239
+ }[];
3240
+ coin: string;
3241
+ dex: string | null;
3242
+ interval: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d";
3243
+ latestCandle: {
3244
+ high: string;
3245
+ low: string;
3246
+ timestampMs: number;
3247
+ open: string;
3248
+ close: string;
3249
+ volume: string;
3250
+ } | null;
3251
+ candleCount: number;
3252
+ startTimeMs: number;
3253
+ endTimeMs: number;
3254
+ expectedBars: number;
3255
+ }, {
3256
+ fetchedAtMs: number;
3257
+ candles: {
3258
+ high: string;
3259
+ low: string;
3260
+ timestampMs: number;
3261
+ open: string;
3262
+ close: string;
3263
+ volume: string;
3264
+ }[];
3265
+ coin: string;
3266
+ dex: string | null;
2714
3267
  interval: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d";
2715
- midUsd: string | null;
3268
+ latestCandle: {
3269
+ high: string;
3270
+ low: string;
3271
+ timestampMs: number;
3272
+ open: string;
3273
+ close: string;
3274
+ volume: string;
3275
+ } | null;
3276
+ candleCount: number;
3277
+ startTimeMs: number;
3278
+ endTimeMs: number;
3279
+ expectedBars: number;
3280
+ }>;
3281
+ resolvedCoin: z.ZodString;
3282
+ dex: z.ZodNullable<z.ZodString>;
3283
+ }, "strip", z.ZodTypeAny, {
3284
+ dex: string | null;
3285
+ resolvedCoin: string;
3286
+ ohlcv: {
3287
+ fetchedAtMs: number;
3288
+ candles: {
3289
+ high: string;
3290
+ low: string;
3291
+ timestampMs: number;
3292
+ open: string;
3293
+ close: string;
3294
+ volume: string;
3295
+ }[];
3296
+ coin: string;
3297
+ dex: string | null;
3298
+ interval: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d";
3299
+ latestCandle: {
3300
+ high: string;
3301
+ low: string;
3302
+ timestampMs: number;
3303
+ open: string;
3304
+ close: string;
3305
+ volume: string;
3306
+ } | null;
3307
+ candleCount: number;
3308
+ startTimeMs: number;
3309
+ endTimeMs: number;
3310
+ expectedBars: number;
3311
+ };
3312
+ }, {
3313
+ dex: string | null;
3314
+ resolvedCoin: string;
3315
+ ohlcv: {
3316
+ fetchedAtMs: number;
3317
+ candles: {
3318
+ high: string;
3319
+ low: string;
3320
+ timestampMs: number;
3321
+ open: string;
3322
+ close: string;
3323
+ volume: string;
3324
+ }[];
3325
+ coin: string;
3326
+ dex: string | null;
3327
+ interval: "1m" | "5m" | "15m" | "1h" | "4h" | "1d" | "1w" | "1M" | "3m" | "30m" | "2h" | "8h" | "12h" | "3d";
3328
+ latestCandle: {
3329
+ high: string;
3330
+ low: string;
3331
+ timestampMs: number;
3332
+ open: string;
3333
+ close: string;
3334
+ volume: string;
3335
+ } | null;
3336
+ candleCount: number;
3337
+ startTimeMs: number;
3338
+ endTimeMs: number;
3339
+ expectedBars: number;
2716
3340
  };
2717
3341
  }>;
2718
3342
  declare const mcpHyperliquidFetchUsdClassBalancesInputSchema: z.ZodObject<{
@@ -2974,6 +3598,7 @@ declare function getAgentCatalog(): {
2974
3598
  eulerV2: ProtocolModule;
2975
3599
  gmx: ProtocolModule;
2976
3600
  hyperliquid: ProtocolModule;
3601
+ morpho: ProtocolModule;
2977
3602
  /** Prefer getAgentCatalogForMcp() or getMcpToolDefinitions() for MCP servers. */
2978
3603
  mcp: {
2979
3604
  tools: readonly McpToolDefinition[];
@@ -3049,4 +3674,4 @@ declare function getAgentCatalog(): {
3049
3674
  };
3050
3675
  };
3051
3676
 
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 };
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 };