@continuumdao/ctm-mpc-defi 0.2.44 → 0.2.46
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.
- package/dist/agent/catalog.cjs +144 -8
- package/dist/agent/catalog.cjs.map +1 -1
- package/dist/agent/catalog.d.ts +217 -1
- package/dist/agent/catalog.js +140 -9
- package/dist/agent/catalog.js.map +1 -1
- package/dist/agent/skills/continuum-dao/SKILL.md +1 -1
- package/dist/agent/skills/hyperliquid/SKILL.md +32 -2
- package/dist/agent/skills/yield-compare/SKILL.md +4 -1
- package/dist/protocols/evm/continuum-dao/index.cjs +75 -13
- package/dist/protocols/evm/continuum-dao/index.cjs.map +1 -1
- package/dist/protocols/evm/continuum-dao/index.d.ts +45 -6
- package/dist/protocols/evm/continuum-dao/index.js +70 -14
- package/dist/protocols/evm/continuum-dao/index.js.map +1 -1
- package/dist/protocols/evm/hyperliquid/index.cjs +320 -0
- package/dist/protocols/evm/hyperliquid/index.cjs.map +1 -1
- package/dist/protocols/evm/hyperliquid/index.d.ts +153 -1
- package/dist/protocols/evm/hyperliquid/index.js +303 -1
- package/dist/protocols/evm/hyperliquid/index.js.map +1 -1
- package/package.json +1 -1
package/dist/agent/catalog.d.ts
CHANGED
|
@@ -9809,12 +9809,18 @@ declare const mcpContinuumDaoFetchProposalsInputSchema: z.ZodObject<{
|
|
|
9809
9809
|
declare const mcpContinuumDaoFetchProposalsOutputSchema: z.ZodObject<{
|
|
9810
9810
|
proposals: z.ZodArray<z.ZodUnknown, "many">;
|
|
9811
9811
|
total: z.ZodOptional<z.ZodNumber>;
|
|
9812
|
+
minIndex: z.ZodOptional<z.ZodNumber>;
|
|
9813
|
+
maxIndex: z.ZodOptional<z.ZodNumber>;
|
|
9812
9814
|
}, "strip", z.ZodTypeAny, {
|
|
9813
9815
|
proposals: unknown[];
|
|
9814
9816
|
total?: number | undefined;
|
|
9817
|
+
minIndex?: number | undefined;
|
|
9818
|
+
maxIndex?: number | undefined;
|
|
9815
9819
|
}, {
|
|
9816
9820
|
proposals: unknown[];
|
|
9817
9821
|
total?: number | undefined;
|
|
9822
|
+
minIndex?: number | undefined;
|
|
9823
|
+
maxIndex?: number | undefined;
|
|
9818
9824
|
}>;
|
|
9819
9825
|
declare const mcpContinuumDaoFetchProposalInputSchema: z.ZodObject<{
|
|
9820
9826
|
id: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
@@ -9857,6 +9863,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
9857
9863
|
onchainId: z.ZodString;
|
|
9858
9864
|
title: z.ZodString;
|
|
9859
9865
|
configuration: z.ZodOptional<z.ZodNumber>;
|
|
9866
|
+
governorAddress: z.ZodOptional<z.ZodString>;
|
|
9860
9867
|
state: z.ZodNullable<z.ZodNumber>;
|
|
9861
9868
|
stateLabel: z.ZodString;
|
|
9862
9869
|
bucket: z.ZodEnum<["live", "pending", "readyToExecute", "recentlyCompleted", "unknown"]>;
|
|
@@ -9874,6 +9881,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
9874
9881
|
forVotes?: string | undefined;
|
|
9875
9882
|
abstainVotes?: string | undefined;
|
|
9876
9883
|
configuration?: number | undefined;
|
|
9884
|
+
governorAddress?: string | undefined;
|
|
9877
9885
|
}, {
|
|
9878
9886
|
title: string;
|
|
9879
9887
|
state: number | null;
|
|
@@ -9885,12 +9893,14 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
9885
9893
|
forVotes?: string | undefined;
|
|
9886
9894
|
abstainVotes?: string | undefined;
|
|
9887
9895
|
configuration?: number | undefined;
|
|
9896
|
+
governorAddress?: string | undefined;
|
|
9888
9897
|
}>, "many">;
|
|
9889
9898
|
pending: z.ZodArray<z.ZodObject<{
|
|
9890
9899
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9891
9900
|
onchainId: z.ZodString;
|
|
9892
9901
|
title: z.ZodString;
|
|
9893
9902
|
configuration: z.ZodOptional<z.ZodNumber>;
|
|
9903
|
+
governorAddress: z.ZodOptional<z.ZodString>;
|
|
9894
9904
|
state: z.ZodNullable<z.ZodNumber>;
|
|
9895
9905
|
stateLabel: z.ZodString;
|
|
9896
9906
|
bucket: z.ZodEnum<["live", "pending", "readyToExecute", "recentlyCompleted", "unknown"]>;
|
|
@@ -9908,6 +9918,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
9908
9918
|
forVotes?: string | undefined;
|
|
9909
9919
|
abstainVotes?: string | undefined;
|
|
9910
9920
|
configuration?: number | undefined;
|
|
9921
|
+
governorAddress?: string | undefined;
|
|
9911
9922
|
}, {
|
|
9912
9923
|
title: string;
|
|
9913
9924
|
state: number | null;
|
|
@@ -9919,12 +9930,14 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
9919
9930
|
forVotes?: string | undefined;
|
|
9920
9931
|
abstainVotes?: string | undefined;
|
|
9921
9932
|
configuration?: number | undefined;
|
|
9933
|
+
governorAddress?: string | undefined;
|
|
9922
9934
|
}>, "many">;
|
|
9923
9935
|
readyToExecute: z.ZodArray<z.ZodObject<{
|
|
9924
9936
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9925
9937
|
onchainId: z.ZodString;
|
|
9926
9938
|
title: z.ZodString;
|
|
9927
9939
|
configuration: z.ZodOptional<z.ZodNumber>;
|
|
9940
|
+
governorAddress: z.ZodOptional<z.ZodString>;
|
|
9928
9941
|
state: z.ZodNullable<z.ZodNumber>;
|
|
9929
9942
|
stateLabel: z.ZodString;
|
|
9930
9943
|
bucket: z.ZodEnum<["live", "pending", "readyToExecute", "recentlyCompleted", "unknown"]>;
|
|
@@ -9942,6 +9955,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
9942
9955
|
forVotes?: string | undefined;
|
|
9943
9956
|
abstainVotes?: string | undefined;
|
|
9944
9957
|
configuration?: number | undefined;
|
|
9958
|
+
governorAddress?: string | undefined;
|
|
9945
9959
|
}, {
|
|
9946
9960
|
title: string;
|
|
9947
9961
|
state: number | null;
|
|
@@ -9953,12 +9967,14 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
9953
9967
|
forVotes?: string | undefined;
|
|
9954
9968
|
abstainVotes?: string | undefined;
|
|
9955
9969
|
configuration?: number | undefined;
|
|
9970
|
+
governorAddress?: string | undefined;
|
|
9956
9971
|
}>, "many">;
|
|
9957
9972
|
recentlyCompleted: z.ZodArray<z.ZodObject<{
|
|
9958
9973
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9959
9974
|
onchainId: z.ZodString;
|
|
9960
9975
|
title: z.ZodString;
|
|
9961
9976
|
configuration: z.ZodOptional<z.ZodNumber>;
|
|
9977
|
+
governorAddress: z.ZodOptional<z.ZodString>;
|
|
9962
9978
|
state: z.ZodNullable<z.ZodNumber>;
|
|
9963
9979
|
stateLabel: z.ZodString;
|
|
9964
9980
|
bucket: z.ZodEnum<["live", "pending", "readyToExecute", "recentlyCompleted", "unknown"]>;
|
|
@@ -9976,6 +9992,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
9976
9992
|
forVotes?: string | undefined;
|
|
9977
9993
|
abstainVotes?: string | undefined;
|
|
9978
9994
|
configuration?: number | undefined;
|
|
9995
|
+
governorAddress?: string | undefined;
|
|
9979
9996
|
}, {
|
|
9980
9997
|
title: string;
|
|
9981
9998
|
state: number | null;
|
|
@@ -9987,12 +10004,14 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
9987
10004
|
forVotes?: string | undefined;
|
|
9988
10005
|
abstainVotes?: string | undefined;
|
|
9989
10006
|
configuration?: number | undefined;
|
|
10007
|
+
governorAddress?: string | undefined;
|
|
9990
10008
|
}>, "many">;
|
|
9991
10009
|
unknown: z.ZodArray<z.ZodObject<{
|
|
9992
10010
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9993
10011
|
onchainId: z.ZodString;
|
|
9994
10012
|
title: z.ZodString;
|
|
9995
10013
|
configuration: z.ZodOptional<z.ZodNumber>;
|
|
10014
|
+
governorAddress: z.ZodOptional<z.ZodString>;
|
|
9996
10015
|
state: z.ZodNullable<z.ZodNumber>;
|
|
9997
10016
|
stateLabel: z.ZodString;
|
|
9998
10017
|
bucket: z.ZodEnum<["live", "pending", "readyToExecute", "recentlyCompleted", "unknown"]>;
|
|
@@ -10010,6 +10029,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
10010
10029
|
forVotes?: string | undefined;
|
|
10011
10030
|
abstainVotes?: string | undefined;
|
|
10012
10031
|
configuration?: number | undefined;
|
|
10032
|
+
governorAddress?: string | undefined;
|
|
10013
10033
|
}, {
|
|
10014
10034
|
title: string;
|
|
10015
10035
|
state: number | null;
|
|
@@ -10021,6 +10041,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
10021
10041
|
forVotes?: string | undefined;
|
|
10022
10042
|
abstainVotes?: string | undefined;
|
|
10023
10043
|
configuration?: number | undefined;
|
|
10044
|
+
governorAddress?: string | undefined;
|
|
10024
10045
|
}>, "many">;
|
|
10025
10046
|
note: z.ZodString;
|
|
10026
10047
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -10035,6 +10056,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
10035
10056
|
forVotes?: string | undefined;
|
|
10036
10057
|
abstainVotes?: string | undefined;
|
|
10037
10058
|
configuration?: number | undefined;
|
|
10059
|
+
governorAddress?: string | undefined;
|
|
10038
10060
|
}[];
|
|
10039
10061
|
unknown: {
|
|
10040
10062
|
title: string;
|
|
@@ -10047,6 +10069,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
10047
10069
|
forVotes?: string | undefined;
|
|
10048
10070
|
abstainVotes?: string | undefined;
|
|
10049
10071
|
configuration?: number | undefined;
|
|
10072
|
+
governorAddress?: string | undefined;
|
|
10050
10073
|
}[];
|
|
10051
10074
|
live: {
|
|
10052
10075
|
title: string;
|
|
@@ -10059,6 +10082,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
10059
10082
|
forVotes?: string | undefined;
|
|
10060
10083
|
abstainVotes?: string | undefined;
|
|
10061
10084
|
configuration?: number | undefined;
|
|
10085
|
+
governorAddress?: string | undefined;
|
|
10062
10086
|
}[];
|
|
10063
10087
|
readyToExecute: {
|
|
10064
10088
|
title: string;
|
|
@@ -10071,6 +10095,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
10071
10095
|
forVotes?: string | undefined;
|
|
10072
10096
|
abstainVotes?: string | undefined;
|
|
10073
10097
|
configuration?: number | undefined;
|
|
10098
|
+
governorAddress?: string | undefined;
|
|
10074
10099
|
}[];
|
|
10075
10100
|
recentlyCompleted: {
|
|
10076
10101
|
title: string;
|
|
@@ -10083,6 +10108,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
10083
10108
|
forVotes?: string | undefined;
|
|
10084
10109
|
abstainVotes?: string | undefined;
|
|
10085
10110
|
configuration?: number | undefined;
|
|
10111
|
+
governorAddress?: string | undefined;
|
|
10086
10112
|
}[];
|
|
10087
10113
|
overlay: "on-chain" | "backend-only";
|
|
10088
10114
|
scanned: number;
|
|
@@ -10099,6 +10125,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
10099
10125
|
forVotes?: string | undefined;
|
|
10100
10126
|
abstainVotes?: string | undefined;
|
|
10101
10127
|
configuration?: number | undefined;
|
|
10128
|
+
governorAddress?: string | undefined;
|
|
10102
10129
|
}[];
|
|
10103
10130
|
unknown: {
|
|
10104
10131
|
title: string;
|
|
@@ -10111,6 +10138,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
10111
10138
|
forVotes?: string | undefined;
|
|
10112
10139
|
abstainVotes?: string | undefined;
|
|
10113
10140
|
configuration?: number | undefined;
|
|
10141
|
+
governorAddress?: string | undefined;
|
|
10114
10142
|
}[];
|
|
10115
10143
|
live: {
|
|
10116
10144
|
title: string;
|
|
@@ -10123,6 +10151,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
10123
10151
|
forVotes?: string | undefined;
|
|
10124
10152
|
abstainVotes?: string | undefined;
|
|
10125
10153
|
configuration?: number | undefined;
|
|
10154
|
+
governorAddress?: string | undefined;
|
|
10126
10155
|
}[];
|
|
10127
10156
|
readyToExecute: {
|
|
10128
10157
|
title: string;
|
|
@@ -10135,6 +10164,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
10135
10164
|
forVotes?: string | undefined;
|
|
10136
10165
|
abstainVotes?: string | undefined;
|
|
10137
10166
|
configuration?: number | undefined;
|
|
10167
|
+
governorAddress?: string | undefined;
|
|
10138
10168
|
}[];
|
|
10139
10169
|
recentlyCompleted: {
|
|
10140
10170
|
title: string;
|
|
@@ -10147,6 +10177,7 @@ declare const mcpContinuumDaoFetchLiveProposalsOutputSchema: z.ZodObject<{
|
|
|
10147
10177
|
forVotes?: string | undefined;
|
|
10148
10178
|
abstainVotes?: string | undefined;
|
|
10149
10179
|
configuration?: number | undefined;
|
|
10180
|
+
governorAddress?: string | undefined;
|
|
10150
10181
|
}[];
|
|
10151
10182
|
overlay: "on-chain" | "backend-only";
|
|
10152
10183
|
scanned: number;
|
|
@@ -10177,6 +10208,7 @@ declare const mcpContinuumDaoExplainProposalOutputSchema: z.ZodObject<{
|
|
|
10177
10208
|
typeLabel: z.ZodString;
|
|
10178
10209
|
configuration: z.ZodEnum<["bravo", "delta"]>;
|
|
10179
10210
|
nWinners: z.ZodOptional<z.ZodNumber>;
|
|
10211
|
+
governorAddress: z.ZodOptional<z.ZodString>;
|
|
10180
10212
|
briefing: z.ZodString;
|
|
10181
10213
|
actions: z.ZodArray<z.ZodUnknown, "many">;
|
|
10182
10214
|
options: z.ZodArray<z.ZodUnknown, "many">;
|
|
@@ -10195,6 +10227,7 @@ declare const mcpContinuumDaoExplainProposalOutputSchema: z.ZodObject<{
|
|
|
10195
10227
|
risks: string[];
|
|
10196
10228
|
id?: number | undefined;
|
|
10197
10229
|
nWinners?: number | undefined;
|
|
10230
|
+
governorAddress?: string | undefined;
|
|
10198
10231
|
forumSection?: string | null | undefined;
|
|
10199
10232
|
forumCid?: number | null | undefined;
|
|
10200
10233
|
}, {
|
|
@@ -10211,6 +10244,7 @@ declare const mcpContinuumDaoExplainProposalOutputSchema: z.ZodObject<{
|
|
|
10211
10244
|
risks: string[];
|
|
10212
10245
|
id?: number | undefined;
|
|
10213
10246
|
nWinners?: number | undefined;
|
|
10247
|
+
governorAddress?: string | undefined;
|
|
10214
10248
|
forumSection?: string | null | undefined;
|
|
10215
10249
|
forumCid?: number | null | undefined;
|
|
10216
10250
|
}>;
|
|
@@ -16985,6 +17019,188 @@ declare const mcpHyperliquidUpdateLeverageInputSchema: z.ZodEffects<z.ZodObject<
|
|
|
16985
17019
|
}, unknown>, {
|
|
16986
17020
|
[x: string]: any;
|
|
16987
17021
|
}, unknown>;
|
|
17022
|
+
declare const mcpHyperliquidFetchLendMarketsInputSchema: z.ZodObject<{
|
|
17023
|
+
chainId: z.ZodDefault<z.ZodNumber>;
|
|
17024
|
+
}, "strip", z.ZodTypeAny, {
|
|
17025
|
+
chainId: number;
|
|
17026
|
+
}, {
|
|
17027
|
+
chainId?: number | undefined;
|
|
17028
|
+
}>;
|
|
17029
|
+
declare const mcpHyperliquidFetchLendMarketsOutputSchema: z.ZodObject<{
|
|
17030
|
+
markets: z.ZodArray<z.ZodObject<{
|
|
17031
|
+
tokenIndex: z.ZodNumber;
|
|
17032
|
+
coin: z.ZodString;
|
|
17033
|
+
role: z.ZodEnum<["collateral", "quote"]>;
|
|
17034
|
+
szDecimals: z.ZodNullable<z.ZodNumber>;
|
|
17035
|
+
supplyYearlyRate: z.ZodString;
|
|
17036
|
+
borrowYearlyRate: z.ZodString;
|
|
17037
|
+
supplyAprPercent: z.ZodNullable<z.ZodNumber>;
|
|
17038
|
+
borrowAprPercent: z.ZodNullable<z.ZodNumber>;
|
|
17039
|
+
utilization: z.ZodString;
|
|
17040
|
+
oraclePx: z.ZodString;
|
|
17041
|
+
ltv: z.ZodString;
|
|
17042
|
+
totalSupplied: z.ZodString;
|
|
17043
|
+
totalBorrowed: z.ZodString;
|
|
17044
|
+
balance: z.ZodString;
|
|
17045
|
+
}, "strip", z.ZodTypeAny, {
|
|
17046
|
+
coin: string;
|
|
17047
|
+
role: "quote" | "collateral";
|
|
17048
|
+
utilization: string;
|
|
17049
|
+
supplyAprPercent: number | null;
|
|
17050
|
+
borrowAprPercent: number | null;
|
|
17051
|
+
balance: string;
|
|
17052
|
+
szDecimals: number | null;
|
|
17053
|
+
oraclePx: string;
|
|
17054
|
+
tokenIndex: number;
|
|
17055
|
+
supplyYearlyRate: string;
|
|
17056
|
+
borrowYearlyRate: string;
|
|
17057
|
+
ltv: string;
|
|
17058
|
+
totalSupplied: string;
|
|
17059
|
+
totalBorrowed: string;
|
|
17060
|
+
}, {
|
|
17061
|
+
coin: string;
|
|
17062
|
+
role: "quote" | "collateral";
|
|
17063
|
+
utilization: string;
|
|
17064
|
+
supplyAprPercent: number | null;
|
|
17065
|
+
borrowAprPercent: number | null;
|
|
17066
|
+
balance: string;
|
|
17067
|
+
szDecimals: number | null;
|
|
17068
|
+
oraclePx: string;
|
|
17069
|
+
tokenIndex: number;
|
|
17070
|
+
supplyYearlyRate: string;
|
|
17071
|
+
borrowYearlyRate: string;
|
|
17072
|
+
ltv: string;
|
|
17073
|
+
totalSupplied: string;
|
|
17074
|
+
totalBorrowed: string;
|
|
17075
|
+
}>, "many">;
|
|
17076
|
+
notes: z.ZodString;
|
|
17077
|
+
}, "strip", z.ZodTypeAny, {
|
|
17078
|
+
notes: string;
|
|
17079
|
+
markets: {
|
|
17080
|
+
coin: string;
|
|
17081
|
+
role: "quote" | "collateral";
|
|
17082
|
+
utilization: string;
|
|
17083
|
+
supplyAprPercent: number | null;
|
|
17084
|
+
borrowAprPercent: number | null;
|
|
17085
|
+
balance: string;
|
|
17086
|
+
szDecimals: number | null;
|
|
17087
|
+
oraclePx: string;
|
|
17088
|
+
tokenIndex: number;
|
|
17089
|
+
supplyYearlyRate: string;
|
|
17090
|
+
borrowYearlyRate: string;
|
|
17091
|
+
ltv: string;
|
|
17092
|
+
totalSupplied: string;
|
|
17093
|
+
totalBorrowed: string;
|
|
17094
|
+
}[];
|
|
17095
|
+
}, {
|
|
17096
|
+
notes: string;
|
|
17097
|
+
markets: {
|
|
17098
|
+
coin: string;
|
|
17099
|
+
role: "quote" | "collateral";
|
|
17100
|
+
utilization: string;
|
|
17101
|
+
supplyAprPercent: number | null;
|
|
17102
|
+
borrowAprPercent: number | null;
|
|
17103
|
+
balance: string;
|
|
17104
|
+
szDecimals: number | null;
|
|
17105
|
+
oraclePx: string;
|
|
17106
|
+
tokenIndex: number;
|
|
17107
|
+
supplyYearlyRate: string;
|
|
17108
|
+
borrowYearlyRate: string;
|
|
17109
|
+
ltv: string;
|
|
17110
|
+
totalSupplied: string;
|
|
17111
|
+
totalBorrowed: string;
|
|
17112
|
+
}[];
|
|
17113
|
+
}>;
|
|
17114
|
+
declare const mcpHyperliquidFetchLendPositionsInputSchema: z.ZodObject<{
|
|
17115
|
+
chainId: z.ZodDefault<z.ZodNumber>;
|
|
17116
|
+
} & {
|
|
17117
|
+
executorAddress: z.ZodString;
|
|
17118
|
+
}, "strip", z.ZodTypeAny, {
|
|
17119
|
+
chainId: number;
|
|
17120
|
+
executorAddress: string;
|
|
17121
|
+
}, {
|
|
17122
|
+
executorAddress: string;
|
|
17123
|
+
chainId?: number | undefined;
|
|
17124
|
+
}>;
|
|
17125
|
+
declare const mcpHyperliquidFetchLendPositionsOutputSchema: z.ZodObject<{
|
|
17126
|
+
positions: z.ZodArray<z.ZodObject<{
|
|
17127
|
+
tokenIndex: z.ZodNumber;
|
|
17128
|
+
coin: z.ZodString;
|
|
17129
|
+
role: z.ZodNullable<z.ZodEnum<["collateral", "quote"]>>;
|
|
17130
|
+
suppliedBasis: z.ZodString;
|
|
17131
|
+
suppliedValue: z.ZodString;
|
|
17132
|
+
borrowedBasis: z.ZodString;
|
|
17133
|
+
borrowedValue: z.ZodString;
|
|
17134
|
+
}, "strip", z.ZodTypeAny, {
|
|
17135
|
+
coin: string;
|
|
17136
|
+
role: "quote" | "collateral" | null;
|
|
17137
|
+
tokenIndex: number;
|
|
17138
|
+
suppliedBasis: string;
|
|
17139
|
+
suppliedValue: string;
|
|
17140
|
+
borrowedBasis: string;
|
|
17141
|
+
borrowedValue: string;
|
|
17142
|
+
}, {
|
|
17143
|
+
coin: string;
|
|
17144
|
+
role: "quote" | "collateral" | null;
|
|
17145
|
+
tokenIndex: number;
|
|
17146
|
+
suppliedBasis: string;
|
|
17147
|
+
suppliedValue: string;
|
|
17148
|
+
borrowedBasis: string;
|
|
17149
|
+
borrowedValue: string;
|
|
17150
|
+
}>, "many">;
|
|
17151
|
+
health: z.ZodString;
|
|
17152
|
+
healthFactor: z.ZodNullable<z.ZodString>;
|
|
17153
|
+
userAbstraction: z.ZodString;
|
|
17154
|
+
manualBorrowEnabled: z.ZodBoolean;
|
|
17155
|
+
notes: z.ZodString;
|
|
17156
|
+
}, "strip", z.ZodTypeAny, {
|
|
17157
|
+
positions: {
|
|
17158
|
+
coin: string;
|
|
17159
|
+
role: "quote" | "collateral" | null;
|
|
17160
|
+
tokenIndex: number;
|
|
17161
|
+
suppliedBasis: string;
|
|
17162
|
+
suppliedValue: string;
|
|
17163
|
+
borrowedBasis: string;
|
|
17164
|
+
borrowedValue: string;
|
|
17165
|
+
}[];
|
|
17166
|
+
notes: string;
|
|
17167
|
+
health: string;
|
|
17168
|
+
healthFactor: string | null;
|
|
17169
|
+
userAbstraction: string;
|
|
17170
|
+
manualBorrowEnabled: boolean;
|
|
17171
|
+
}, {
|
|
17172
|
+
positions: {
|
|
17173
|
+
coin: string;
|
|
17174
|
+
role: "quote" | "collateral" | null;
|
|
17175
|
+
tokenIndex: number;
|
|
17176
|
+
suppliedBasis: string;
|
|
17177
|
+
suppliedValue: string;
|
|
17178
|
+
borrowedBasis: string;
|
|
17179
|
+
borrowedValue: string;
|
|
17180
|
+
}[];
|
|
17181
|
+
notes: string;
|
|
17182
|
+
health: string;
|
|
17183
|
+
healthFactor: string | null;
|
|
17184
|
+
userAbstraction: string;
|
|
17185
|
+
manualBorrowEnabled: boolean;
|
|
17186
|
+
}>;
|
|
17187
|
+
declare const mcpHyperliquidLendInputSchema: z.ZodEffects<z.ZodObject<{} & {
|
|
17188
|
+
[x: string]: z.ZodTypeAny;
|
|
17189
|
+
}, "strip", z.ZodTypeAny, {
|
|
17190
|
+
[x: string]: any;
|
|
17191
|
+
}, {
|
|
17192
|
+
[x: string]: any;
|
|
17193
|
+
}> | z.ZodEffects<z.ZodObject<{} & {
|
|
17194
|
+
[x: string]: z.ZodTypeAny;
|
|
17195
|
+
}, "strip", z.ZodTypeAny, {
|
|
17196
|
+
[x: string]: any;
|
|
17197
|
+
}, {
|
|
17198
|
+
[x: string]: any;
|
|
17199
|
+
}>, {
|
|
17200
|
+
[x: string]: any;
|
|
17201
|
+
}, unknown>, {
|
|
17202
|
+
[x: string]: any;
|
|
17203
|
+
}, unknown>;
|
|
16988
17204
|
|
|
16989
17205
|
declare const mcpArcusFetchMarketsInputSchema: z.ZodObject<{
|
|
16990
17206
|
chainId: z.ZodDefault<z.ZodNumber>;
|
|
@@ -19332,4 +19548,4 @@ declare function getAgentCatalog(): {
|
|
|
19332
19548
|
};
|
|
19333
19549
|
};
|
|
19334
19550
|
|
|
19335
|
-
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 McpAaveV4FetchMarketInput, type McpAaveV4FetchMarketOutput, type McpAaveV4FetchMarketsInput, type McpAaveV4FetchMarketsOutput, type McpCurveDaoBuildSwapMultisignInput, type McpCurveDaoQuoteInput, type McpCurveDaoQuoteOutput, type McpEthenaFetchSusdeApyInput, type McpEthenaFetchSusdeApyOutput, type McpEthenaStakeInput, type McpEulerV2FetchEarnVaultsInput, type McpEulerV2FetchEarnVaultsOutput, type McpEulerV2FetchLendVaultsInput, type McpEulerV2FetchLendVaultsOutput, type McpEulerV2IsolatedLendInput, type McpJsonSchema, type McpLidoFetchStethAprInput, type McpLidoFetchStethAprOutput, type McpLidoSubmitInput, type McpMapleDepositInput, type McpMapleFetchMarketInput, type McpMapleFetchMarketOutput, type McpMapleFetchMarketsInput, type McpMapleFetchMarketsOutput, type McpMerklRewardsFetchInput, type McpMerklRewardsFetchOutput, type McpMorphoFetchBlueMarketsInput, type McpMorphoFetchBlueMarketsOutput, type McpMorphoFetchEarnVaultsInput, type McpMorphoFetchEarnVaultsOutput, type McpMorphoFetchMidnightBooksInput, type McpMorphoFetchMidnightBooksOutput, type McpMorphoFetchMidnightOffersInput, type McpMorphoFetchMidnightOffersOutput, type McpMorphoFetchMidnightPositionsInput, type McpMorphoFetchMidnightPositionsOutput, type McpMorphoFetchMidnightQuoteInput, type McpMorphoFetchMidnightQuoteOutput, type McpMorphoFetchPositionsInput, type McpMorphoFetchPositionsOutput, type McpMorphoFetchStockMarketsInput, type McpMorphoFetchStockMarketsOutput, type McpMorphoVaultDepositInput, type McpSchemaProperty, type McpSkyFetchSusdsRateInput, type McpSkyFetchSusdsRateOutput, type McpSkyLockstakeStakeInput, type McpToolDefinition, type McpToolHandler, type McpToolInputMap, type McpToolName, type McpToolOutputMap, type McpUniswapV4BuildAllowlistFinalizeMultisignInput, type McpUniswapV4BuildMintLiquidityMultisignInput, type McpUniswapV4BuildSwapMultisignInput, type McpUniswapV4CheckPermissionsInput, type McpUniswapV4CreateSwapInput, type McpUniswapV4CreateSwapOutput, type McpUniswapV4FetchOhlcvInput, type McpUniswapV4FetchOhlcvOutput, type McpUniswapV4KycApplyLinkInput, 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, mcpAaveV4FetchMarketInputSchema, mcpAaveV4FetchMarketOutputSchema, mcpAaveV4FetchMarketsInputSchema, mcpAaveV4FetchMarketsOutputSchema, mcpAaveV4MerklClaimInputSchema, mcpAaveV4RepayInputSchema, mcpAaveV4WithdrawInputSchema, mcpAerodromeBuildAddLiquidityMultisignInputSchema, mcpAerodromeBuildClBurnMultisignInputSchema, mcpAerodromeBuildClCollectFeesMultisignInputSchema, mcpAerodromeBuildClDecreaseMultisignInputSchema, mcpAerodromeBuildClIncreaseMultisignInputSchema, mcpAerodromeBuildClMintMultisignInputSchema, mcpAerodromeBuildClaimEmissionsMultisignInputSchema, mcpAerodromeBuildClaimFeesMultisignInputSchema, mcpAerodromeBuildGaugeStakeMultisignInputSchema, mcpAerodromeBuildGaugeUnstakeMultisignInputSchema, mcpAerodromeBuildRemoveLiquidityMultisignInputSchema, mcpAerodromeBuildSwapMultisignInputSchema, mcpAerodromeDiscoverPoolsInputSchema, mcpAerodromeDiscoverPoolsOutputSchema, mcpAerodromeFetchLpYieldsInputSchema, mcpAerodromeFetchLpYieldsOutputSchema, mcpAerodromeFetchPoolsInputSchema, mcpAerodromeFetchPoolsOutputSchema, mcpAerodromeFetchPositionsInputSchema, mcpAerodromeFetchPositionsOutputSchema, mcpAerodromeFetchStockLpYieldsInputSchema, mcpAerodromeFetchStockLpYieldsOutputSchema, mcpAerodromeQuoteAddLiquidityInputSchema, mcpAerodromeQuoteAddLiquidityOutputSchema, mcpAerodromeQuoteClDepositInputSchema, mcpAerodromeQuoteClDepositOutputSchema, mcpAerodromeQuoteInputSchema, mcpAerodromeQuoteOutputSchema, mcpArcusBuildCancelOrderMultisignInputSchema, mcpArcusBuildCloseMultisignInputSchema, mcpArcusBuildCreateApiKeyMultisignInputSchema, mcpArcusBuildDepositMultisignInputSchema, mcpArcusBuildPlaceOrderMultisignInputSchema, mcpArcusBuildSetLeverageMultisignInputSchema, mcpArcusBuildWithdrawMultisignInputSchema, mcpArcusFetchAccountInputSchema, mcpArcusFetchAccountOutputSchema, mcpArcusFetchMarketSnapshotInputSchema, mcpArcusFetchMarketSnapshotOutputSchema, mcpArcusFetchMarketsInputSchema, mcpArcusFetchMarketsOutputSchema, mcpArcusFetchOhlcvInputSchema, mcpArcusFetchOhlcvOutputSchema, mcpArcusFetchOpenContextInputSchema, mcpArcusFetchOpenContextOutputSchema, mcpArcusFetchOpenOrdersInputSchema, mcpArcusFetchOpenOrdersOutputSchema, mcpArcusFetchPositionsInputSchema, mcpArcusFetchPositionsOutputSchema, mcpArcusSearchMarketsInputSchema, mcpArcusSearchMarketsOutputSchema, mcpArcusSpotBuildRfqMultisignInputSchema, mcpArcusSpotFetchBalancesInputSchema, mcpArcusSpotFetchBalancesOutputSchema, mcpArcusSpotFetchMarketsInputSchema, mcpArcusSpotFetchMarketsOutputSchema, mcpArcusSpotFetchOhlcvInputSchema, mcpArcusSpotFetchOhlcvOutputSchema, mcpCompoundV3BulkerInputSchema, mcpCompoundV3ClaimRewardsInputSchema, mcpCompoundV3FetchAccountInputSchema, mcpCompoundV3FetchAccountOutputSchema, mcpCompoundV3FetchMarketInputSchema, mcpCompoundV3FetchMarketOutputSchema, mcpCompoundV3FetchMarketsInputSchema, mcpCompoundV3FetchMarketsOutputSchema, mcpCompoundV3RepayInputSchema, mcpCompoundV3SupplyInputSchema, mcpCompoundV3WithdrawInputSchema, mcpContinuumDaoAttachInputSchema, mcpContinuumDaoCastVoteBravoInputSchema, mcpContinuumDaoCastVoteDeltaInputSchema, mcpContinuumDaoCreateLockInputSchema, mcpContinuumDaoDelegateInputSchema, mcpContinuumDaoExplainProposalInputSchema, mcpContinuumDaoExplainProposalOutputSchema, mcpContinuumDaoFetchDelegatesInputSchema, mcpContinuumDaoFetchDelegatesOutputSchema, mcpContinuumDaoFetchLiveProposalsInputSchema, mcpContinuumDaoFetchLiveProposalsOutputSchema, mcpContinuumDaoFetchProposalInputSchema, mcpContinuumDaoFetchProposalOutputSchema, mcpContinuumDaoFetchProposalStateInputSchema, mcpContinuumDaoFetchProposalStateOutputSchema, mcpContinuumDaoFetchProposalsInputSchema, mcpContinuumDaoFetchProposalsOutputSchema, mcpContinuumDaoFetchVotingPowerInputSchema, mcpContinuumDaoFetchVotingPowerOutputSchema, mcpContinuumDaoForumCreateIdeaInputSchema, mcpContinuumDaoForumCreateIdeaOutputSchema, mcpContinuumDaoForumCreateTopicInputSchema, mcpContinuumDaoForumCreateTopicOutputSchema, mcpContinuumDaoForumDeleteInputSchema, mcpContinuumDaoForumDeleteOutputSchema, mcpContinuumDaoForumFetchPostInputSchema, mcpContinuumDaoForumFetchPostOutputSchema, mcpContinuumDaoForumFetchThreadInputSchema, mcpContinuumDaoForumFetchThreadOutputSchema, mcpContinuumDaoForumMarkReadInputSchema, mcpContinuumDaoForumMarkReadOutputSchema, mcpContinuumDaoForumMarkUnreadInputSchema, mcpContinuumDaoForumMarkUnreadOutputSchema, mcpContinuumDaoForumMeInputSchema, mcpContinuumDaoForumMeOutputSchema, mcpContinuumDaoForumReactInputSchema, mcpContinuumDaoForumReactOutputSchema, mcpContinuumDaoForumRecentInputSchema, mcpContinuumDaoForumRecentOutputSchema, mcpContinuumDaoForumReplyCountInputSchema, mcpContinuumDaoForumReplyCountOutputSchema, mcpContinuumDaoForumReplyInputSchema, mcpContinuumDaoForumReplyOutputSchema, mcpContinuumDaoForumResolveInputSchema, mcpContinuumDaoForumResolveOutputSchema, mcpContinuumDaoForumSearchInputSchema, mcpContinuumDaoForumSearchOutputSchema, mcpContinuumDaoForumSectionsInputSchema, mcpContinuumDaoForumSectionsOutputSchema, mcpContinuumDaoForumSignInEligibleInputSchema, mcpContinuumDaoForumSignInEligibleOutputSchema, mcpContinuumDaoForumSignInInputSchema, mcpContinuumDaoForumSignOutInputSchema, mcpContinuumDaoForumSignOutOutputSchema, mcpContinuumDaoForumUnreadInputSchema, mcpContinuumDaoForumUnreadOutputSchema, mcpContinuumDaoForumUserPostIdsInputSchema, mcpContinuumDaoForumUserPostIdsOutputSchema, mcpContinuumDaoIncreaseAmountInputSchema, mcpContinuumDaoIncreaseUnlockTimeInputSchema, mcpContinuumDaoMergeInputSchema, mcpContinuumDaoMpaFlagInputSchema, mcpContinuumDaoMpaFlagOutputSchema, mcpContinuumDaoMpaListingInputSchema, mcpContinuumDaoMpaListingOutputSchema, mcpContinuumDaoMpaMailboxListInputSchema, mcpContinuumDaoMpaMailboxListOutputSchema, mcpContinuumDaoMpaMailboxOpenInputSchema, mcpContinuumDaoMpaMailboxOpenOutputSchema, mcpContinuumDaoMpaMailboxSendInputSchema, mcpContinuumDaoMpaMailboxSendOutputSchema, mcpContinuumDaoMpaRetractInputSchema, mcpContinuumDaoMpaRetractOutputSchema, mcpContinuumDaoProposalIdInputSchema, mcpContinuumDaoProposeBravoInputSchema, mcpContinuumDaoProposeDeltaInputSchema, mcpContinuumDaoRegisterProposalInputSchema, mcpContinuumDaoRegisterProposalOutputSchema, mcpContinuumDaoRequestDetachInputSchema, mcpContinuumDaoSplitInputSchema, mcpContinuumDaoTechnocoreBindInputSchema, mcpContinuumDaoTechnocoreBindOutputSchema, mcpContinuumDaoTokenIdInputSchema, mcpContinuumDaoTransferInputSchema, mcpContinuumDaoUndelegateInputSchema, mcpCurveDaoBuildAddLiquidityMultisignInputSchema, mcpCurveDaoBuildGaugeDepositMultisignInputSchema, mcpCurveDaoBuildRemoveLiquidityMultisignInputSchema, mcpCurveDaoBuildSwapMultisignInputSchema, mcpCurveDaoFetchImportantPoolsInputSchema, mcpCurveDaoFetchImportantPoolsOutputSchema, mcpCurveDaoFetchLpYieldsInputSchema, mcpCurveDaoFetchLpYieldsOutputSchema, mcpCurveDaoQuoteAddLiquidityInputSchema, mcpCurveDaoQuoteAddLiquidityOutputSchema, mcpCurveDaoQuoteInputSchema, mcpCurveDaoQuoteOutputSchema, mcpCurveDaoQuoteRemoveLiquidityInputSchema, mcpCurveDaoQuoteRemoveLiquidityOutputSchema, mcpEthenaClaimInputSchema, mcpEthenaCooldownInputSchema, mcpEthenaFetchSusdeApyInputSchema, mcpEthenaFetchSusdeApyOutputSchema, mcpEthenaRedeemInputSchema, mcpEthenaStakeInputSchema, mcpEulerV2BorrowRepayInputSchema, mcpEulerV2CollateralDepositInputSchema, mcpEulerV2CollateralWithdrawInputSchema, mcpEulerV2FetchEarnVaultsInputSchema, mcpEulerV2FetchEarnVaultsOutputSchema, mcpEulerV2FetchLendVaultsInputSchema, mcpEulerV2FetchLendVaultsOutputSchema, mcpEulerV2IsolatedBorrowInputSchema, mcpEulerV2IsolatedLendInputSchema, mcpEulerV2MerklClaimInputSchema, mcpEulerV2VaultWithdrawInputSchema, mcpGmxCancelInputSchema, mcpGmxDecreaseInputSchema, mcpGmxFetchGmApyInputSchema, mcpGmxFetchGmApyOutputSchema, mcpGmxFetchGmMarketsInputSchema, mcpGmxFetchGmMarketsOutputSchema, mcpGmxFetchMarketPricesInputSchema, mcpGmxFetchMarketPricesOutputSchema, mcpGmxFetchMarketsInputSchema, mcpGmxFetchMarketsOutputSchema, mcpGmxFetchOhlcvInputSchema, mcpGmxFetchOhlcvOutputSchema, mcpGmxFetchOrdersInputSchema, mcpGmxFetchOrdersOutputSchema, mcpGmxFetchPositionsInputSchema, mcpGmxFetchPositionsOutputSchema, mcpGmxFetchStakingPowerInputSchema, mcpGmxFetchStakingPowerOutputSchema, mcpGmxGmDepositInputSchema, mcpGmxGmWithdrawInputSchema, mcpGmxIncreaseInputSchema, mcpServerSubmitOutputSchema as mcpGmxMultisignOutputSchema, mcpGmxStakeGmxInputSchema, mcpGmxUnstakeGmxInputSchema, mcpHyperliquidBridgeDepositInputSchema, mcpHyperliquidBridgeWithdrawInputSchema, mcpHyperliquidCancelInputSchema, mcpHyperliquidCloseInputSchema, mcpHyperliquidDelegateInputSchema, mcpHyperliquidFetchDelegationsInputSchema, mcpHyperliquidFetchDelegationsOutputSchema, mcpHyperliquidFetchMarketSnapshotInputSchema, mcpHyperliquidFetchMarketSnapshotOutputSchema, mcpHyperliquidFetchMarketsInputSchema, mcpHyperliquidFetchMarketsOutputSchema, mcpHyperliquidFetchOhlcvInputSchema, mcpHyperliquidFetchOhlcvOutputSchema, mcpHyperliquidFetchOpenContextInputSchema, mcpHyperliquidFetchOpenContextOutputSchema, mcpHyperliquidFetchOpenOrdersInputSchema, mcpHyperliquidFetchOpenOrdersOutputSchema, mcpHyperliquidFetchPositionsInputSchema, mcpHyperliquidFetchPositionsOutputSchema, mcpHyperliquidFetchStakingSummaryInputSchema, mcpHyperliquidFetchStakingSummaryOutputSchema, mcpHyperliquidFetchStockMarketsInputSchema, mcpHyperliquidFetchStockMarketsOutputSchema, mcpHyperliquidFetchUsdClassBalancesInputSchema, mcpHyperliquidFetchUsdClassBalancesOutputSchema, mcpHyperliquidFetchUserVaultEquitiesInputSchema, mcpHyperliquidFetchUserVaultEquitiesOutputSchema, mcpHyperliquidFetchVaultApysInputSchema, mcpHyperliquidFetchVaultApysOutputSchema, mcpHyperliquidFetchVaultsInputSchema, mcpHyperliquidFetchVaultsOutputSchema, mcpHyperliquidLimitOrderInputSchema, mcpHyperliquidSearchMarketsInputSchema, mcpHyperliquidSearchMarketsOutputSchema, mcpHyperliquidStakeInputSchema, mcpHyperliquidUndelegateInputSchema, mcpHyperliquidUnstakeInputSchema, mcpHyperliquidUpdateLeverageInputSchema, mcpHyperliquidUsdTransferInputSchema, mcpHyperliquidVaultDepositInputSchema, mcpHyperliquidVaultWithdrawInputSchema, mcpLidoClaimWithdrawalInputSchema, mcpLidoFetchStethAprInputSchema, mcpLidoFetchStethAprOutputSchema, mcpLidoRequestWithdrawalsInputSchema, mcpLidoSubmitInputSchema, mcpLidoUnwrapWstEthInputSchema, mcpLidoWrapStEthInputSchema, mcpMapleDepositInputSchema, mcpMapleFetchMarketInputSchema, mcpMapleFetchMarketOutputSchema, mcpMapleFetchMarketsInputSchema, mcpMapleFetchMarketsOutputSchema, mcpMapleRequestRedeemInputSchema, mcpMerklRewardsFetchInputSchema, mcpMerklRewardsFetchOutputSchema, mcpMorphoBlueBorrowInputSchema, mcpMorphoBlueCollateralDepositInputSchema, mcpMorphoBlueCollateralWithdrawInputSchema, mcpMorphoBlueRepayInputSchema, mcpMorphoBlueSupplyInputSchema, mcpMorphoBlueWithdrawInputSchema, mcpMorphoFetchBlueMarketsInputSchema, mcpMorphoFetchBlueMarketsOutputSchema, mcpMorphoFetchEarnVaultsInputSchema, mcpMorphoFetchEarnVaultsOutputSchema, mcpMorphoFetchMidnightBooksInputSchema, mcpMorphoFetchMidnightBooksOutputSchema, mcpMorphoFetchMidnightOffersInputSchema, mcpMorphoFetchMidnightOffersOutputSchema, mcpMorphoFetchMidnightPositionsInputSchema, mcpMorphoFetchMidnightPositionsOutputSchema, mcpMorphoFetchMidnightQuoteInputSchema, mcpMorphoFetchMidnightQuoteOutputSchema, mcpMorphoFetchPositionsInputSchema, mcpMorphoFetchPositionsOutputSchema, mcpMorphoFetchStockMarketsInputSchema, mcpMorphoFetchStockMarketsOutputSchema, mcpMorphoMerklClaimInputSchema, mcpMorphoMidnightBorrowInputSchema, mcpMorphoMidnightCancelLendOfferInputSchema, mcpMorphoMidnightLendInputSchema, mcpMorphoMidnightLendOfferInputSchema, mcpMorphoMidnightRepayInputSchema, mcpMorphoVaultDepositInputSchema, mcpMorphoVaultWithdrawInputSchema, mcpMultisignInput, multisignOutputSchema as mcpMultisignOutputSchema, mcpServerSubmitOutputSchema as mcpMultisignSubmitOutputSchema, mcpPendleBuildAddLiquidityMultisignInputSchema, mcpPendleBuildMintPyMultisignInputSchema, mcpPendleBuildMintSyMultisignInputSchema, mcpPendleBuildRedeemPyMultisignInputSchema, mcpPendleBuildRedeemRewardsMultisignInputSchema, mcpPendleBuildRedeemSyMultisignInputSchema, mcpPendleBuildRemoveLiquidityMultisignInputSchema, mcpPendleBuildSwapMultisignInputSchema, mcpPendleFetchMarketsInputSchema, mcpPendleFetchMarketsOutputSchema, mcpPendleFetchMerkleRewardsInputSchema, mcpPendleFetchMerkleRewardsOutputSchema, mcpPendleFetchPositionsInputSchema, mcpPendleFetchPositionsOutputSchema, mcpPendleFetchPricesInputSchema, mcpPendleFetchPricesOutputSchema, mcpPendleQuoteAddLiquidityInputSchema, mcpPendleQuoteMintPyInputSchema, mcpPendleQuoteMintSyInputSchema, mcpPendleQuoteOutputSchema, mcpPendleQuoteRedeemPyInputSchema, mcpPendleQuoteRedeemSyInputSchema, mcpPendleQuoteRemoveLiquidityInputSchema, mcpPendleQuoteSwapInputSchema, mcpPendleSearchAssetsInputSchema, mcpPendleSearchAssetsOutputSchema, mcpServerCommonInputSchema, mcpServerMultisignInput, mcpServerSubmitOutputSchema, mcpSkyFetchSusdsRateInputSchema, mcpSkyFetchSusdsRateOutputSchema, mcpSkyLockstakeCloseInputSchema, mcpSkyLockstakeDrawInputSchema, mcpSkyLockstakeGetRewardInputSchema, mcpSkyLockstakeStakeInputSchema, mcpSkyLockstakeWipeInputSchema, mcpSkySusdsDepositInputSchema, mcpSkySusdsRedeemInputSchema, mcpUniswapV4BuildAllowlistFinalizeMultisignInputSchema, mcpUniswapV4BuildCollectFeesMultisignInputSchema, mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildLimitOrderMultisignInputSchema, mcpUniswapV4BuildMintLiquidityMultisignInputSchema, mcpUniswapV4BuildSwapMultisignInputSchema, mcpUniswapV4CheckPermissionsInputSchema, mcpUniswapV4CheckPermissionsOutputSchema, mcpUniswapV4CreateSwapInputSchema, mcpUniswapV4CreateSwapOutputSchema, mcpUniswapV4FetchLimitOrdersInputSchema, mcpUniswapV4FetchLimitOrdersOutputSchema, mcpUniswapV4FetchOhlcvInputSchema, mcpUniswapV4FetchOhlcvOutputSchema, mcpUniswapV4KycApplyLinkInputSchema, mcpUniswapV4KycApplyLinkOutputSchema, mcpUniswapV4LimitOrderQuoteInputSchema, mcpUniswapV4LimitOrderQuoteOutputSchema, mcpUniswapV4LpClaimInputSchema, mcpUniswapV4LpClaimOutputSchema, mcpUniswapV4LpCreatePositionInputSchema, mcpUniswapV4LpCreatePositionOutputSchema, mcpUniswapV4LpDecreaseInputSchema, mcpUniswapV4LpDecreaseOutputSchema, mcpUniswapV4LpIncreaseInputSchema, mcpUniswapV4LpIncreaseOutputSchema, mcpUniswapV4LpListPoolsInputSchema, mcpUniswapV4LpListPoolsOutputSchema, mcpUniswapV4LpListPositionsInputSchema, mcpUniswapV4LpListPositionsOutputSchema, mcpUniswapV4QuoteInputSchema, mcpUniswapV4QuoteOutputSchema, mcpUniswapV4RegisterPositionFromMintTxInputSchema, mcpUniswapV4RegisterPositionFromMintTxOutputSchema, mcpUniswapV4RegisterPositionNftInputSchema, mcpUniswapV4RegisterPositionNftOutputSchema, mcpVeniceBurnDiemInputSchema, mcpVeniceCompleteUnstakeDiemInputSchema, mcpVeniceCompleteUnstakeSvvvInputSchema, mcpVeniceInitiateUnstakeDiemInputSchema, mcpVeniceInitiateUnstakeSvvvInputSchema, mcpVeniceListModelsInputSchema, mcpVeniceListModelsOutputSchema, mcpVeniceMintDiemInputSchema, mcpVeniceReadMintDiemPreviewInputSchema, mcpVeniceReadMintDiemPreviewOutputSchema, mcpVeniceReadStakingStateInputSchema, mcpVeniceReadStakingStateOutputSchema, mcpVeniceStakeDiemInputSchema, mcpVeniceStakeVvvInputSchema, multisignOutputSchema, parseAgentBoolean, parseAgentEvmChainId, parseMcpToolInput, parseMcpToolOutput, parseMultisignBuilderOutput, uniswapQuoteTradeTypeSchema, zodSchemaToMcpJsonSchema };
|
|
19551
|
+
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 McpAaveV4FetchMarketInput, type McpAaveV4FetchMarketOutput, type McpAaveV4FetchMarketsInput, type McpAaveV4FetchMarketsOutput, type McpCurveDaoBuildSwapMultisignInput, type McpCurveDaoQuoteInput, type McpCurveDaoQuoteOutput, type McpEthenaFetchSusdeApyInput, type McpEthenaFetchSusdeApyOutput, type McpEthenaStakeInput, type McpEulerV2FetchEarnVaultsInput, type McpEulerV2FetchEarnVaultsOutput, type McpEulerV2FetchLendVaultsInput, type McpEulerV2FetchLendVaultsOutput, type McpEulerV2IsolatedLendInput, type McpJsonSchema, type McpLidoFetchStethAprInput, type McpLidoFetchStethAprOutput, type McpLidoSubmitInput, type McpMapleDepositInput, type McpMapleFetchMarketInput, type McpMapleFetchMarketOutput, type McpMapleFetchMarketsInput, type McpMapleFetchMarketsOutput, type McpMerklRewardsFetchInput, type McpMerklRewardsFetchOutput, type McpMorphoFetchBlueMarketsInput, type McpMorphoFetchBlueMarketsOutput, type McpMorphoFetchEarnVaultsInput, type McpMorphoFetchEarnVaultsOutput, type McpMorphoFetchMidnightBooksInput, type McpMorphoFetchMidnightBooksOutput, type McpMorphoFetchMidnightOffersInput, type McpMorphoFetchMidnightOffersOutput, type McpMorphoFetchMidnightPositionsInput, type McpMorphoFetchMidnightPositionsOutput, type McpMorphoFetchMidnightQuoteInput, type McpMorphoFetchMidnightQuoteOutput, type McpMorphoFetchPositionsInput, type McpMorphoFetchPositionsOutput, type McpMorphoFetchStockMarketsInput, type McpMorphoFetchStockMarketsOutput, type McpMorphoVaultDepositInput, type McpSchemaProperty, type McpSkyFetchSusdsRateInput, type McpSkyFetchSusdsRateOutput, type McpSkyLockstakeStakeInput, type McpToolDefinition, type McpToolHandler, type McpToolInputMap, type McpToolName, type McpToolOutputMap, type McpUniswapV4BuildAllowlistFinalizeMultisignInput, type McpUniswapV4BuildMintLiquidityMultisignInput, type McpUniswapV4BuildSwapMultisignInput, type McpUniswapV4CheckPermissionsInput, type McpUniswapV4CreateSwapInput, type McpUniswapV4CreateSwapOutput, type McpUniswapV4FetchOhlcvInput, type McpUniswapV4FetchOhlcvOutput, type McpUniswapV4KycApplyLinkInput, 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, mcpAaveV4FetchMarketInputSchema, mcpAaveV4FetchMarketOutputSchema, mcpAaveV4FetchMarketsInputSchema, mcpAaveV4FetchMarketsOutputSchema, mcpAaveV4MerklClaimInputSchema, mcpAaveV4RepayInputSchema, mcpAaveV4WithdrawInputSchema, mcpAerodromeBuildAddLiquidityMultisignInputSchema, mcpAerodromeBuildClBurnMultisignInputSchema, mcpAerodromeBuildClCollectFeesMultisignInputSchema, mcpAerodromeBuildClDecreaseMultisignInputSchema, mcpAerodromeBuildClIncreaseMultisignInputSchema, mcpAerodromeBuildClMintMultisignInputSchema, mcpAerodromeBuildClaimEmissionsMultisignInputSchema, mcpAerodromeBuildClaimFeesMultisignInputSchema, mcpAerodromeBuildGaugeStakeMultisignInputSchema, mcpAerodromeBuildGaugeUnstakeMultisignInputSchema, mcpAerodromeBuildRemoveLiquidityMultisignInputSchema, mcpAerodromeBuildSwapMultisignInputSchema, mcpAerodromeDiscoverPoolsInputSchema, mcpAerodromeDiscoverPoolsOutputSchema, mcpAerodromeFetchLpYieldsInputSchema, mcpAerodromeFetchLpYieldsOutputSchema, mcpAerodromeFetchPoolsInputSchema, mcpAerodromeFetchPoolsOutputSchema, mcpAerodromeFetchPositionsInputSchema, mcpAerodromeFetchPositionsOutputSchema, mcpAerodromeFetchStockLpYieldsInputSchema, mcpAerodromeFetchStockLpYieldsOutputSchema, mcpAerodromeQuoteAddLiquidityInputSchema, mcpAerodromeQuoteAddLiquidityOutputSchema, mcpAerodromeQuoteClDepositInputSchema, mcpAerodromeQuoteClDepositOutputSchema, mcpAerodromeQuoteInputSchema, mcpAerodromeQuoteOutputSchema, mcpArcusBuildCancelOrderMultisignInputSchema, mcpArcusBuildCloseMultisignInputSchema, mcpArcusBuildCreateApiKeyMultisignInputSchema, mcpArcusBuildDepositMultisignInputSchema, mcpArcusBuildPlaceOrderMultisignInputSchema, mcpArcusBuildSetLeverageMultisignInputSchema, mcpArcusBuildWithdrawMultisignInputSchema, mcpArcusFetchAccountInputSchema, mcpArcusFetchAccountOutputSchema, mcpArcusFetchMarketSnapshotInputSchema, mcpArcusFetchMarketSnapshotOutputSchema, mcpArcusFetchMarketsInputSchema, mcpArcusFetchMarketsOutputSchema, mcpArcusFetchOhlcvInputSchema, mcpArcusFetchOhlcvOutputSchema, mcpArcusFetchOpenContextInputSchema, mcpArcusFetchOpenContextOutputSchema, mcpArcusFetchOpenOrdersInputSchema, mcpArcusFetchOpenOrdersOutputSchema, mcpArcusFetchPositionsInputSchema, mcpArcusFetchPositionsOutputSchema, mcpArcusSearchMarketsInputSchema, mcpArcusSearchMarketsOutputSchema, mcpArcusSpotBuildRfqMultisignInputSchema, mcpArcusSpotFetchBalancesInputSchema, mcpArcusSpotFetchBalancesOutputSchema, mcpArcusSpotFetchMarketsInputSchema, mcpArcusSpotFetchMarketsOutputSchema, mcpArcusSpotFetchOhlcvInputSchema, mcpArcusSpotFetchOhlcvOutputSchema, mcpCompoundV3BulkerInputSchema, mcpCompoundV3ClaimRewardsInputSchema, mcpCompoundV3FetchAccountInputSchema, mcpCompoundV3FetchAccountOutputSchema, mcpCompoundV3FetchMarketInputSchema, mcpCompoundV3FetchMarketOutputSchema, mcpCompoundV3FetchMarketsInputSchema, mcpCompoundV3FetchMarketsOutputSchema, mcpCompoundV3RepayInputSchema, mcpCompoundV3SupplyInputSchema, mcpCompoundV3WithdrawInputSchema, mcpContinuumDaoAttachInputSchema, mcpContinuumDaoCastVoteBravoInputSchema, mcpContinuumDaoCastVoteDeltaInputSchema, mcpContinuumDaoCreateLockInputSchema, mcpContinuumDaoDelegateInputSchema, mcpContinuumDaoExplainProposalInputSchema, mcpContinuumDaoExplainProposalOutputSchema, mcpContinuumDaoFetchDelegatesInputSchema, mcpContinuumDaoFetchDelegatesOutputSchema, mcpContinuumDaoFetchLiveProposalsInputSchema, mcpContinuumDaoFetchLiveProposalsOutputSchema, mcpContinuumDaoFetchProposalInputSchema, mcpContinuumDaoFetchProposalOutputSchema, mcpContinuumDaoFetchProposalStateInputSchema, mcpContinuumDaoFetchProposalStateOutputSchema, mcpContinuumDaoFetchProposalsInputSchema, mcpContinuumDaoFetchProposalsOutputSchema, mcpContinuumDaoFetchVotingPowerInputSchema, mcpContinuumDaoFetchVotingPowerOutputSchema, mcpContinuumDaoForumCreateIdeaInputSchema, mcpContinuumDaoForumCreateIdeaOutputSchema, mcpContinuumDaoForumCreateTopicInputSchema, mcpContinuumDaoForumCreateTopicOutputSchema, mcpContinuumDaoForumDeleteInputSchema, mcpContinuumDaoForumDeleteOutputSchema, mcpContinuumDaoForumFetchPostInputSchema, mcpContinuumDaoForumFetchPostOutputSchema, mcpContinuumDaoForumFetchThreadInputSchema, mcpContinuumDaoForumFetchThreadOutputSchema, mcpContinuumDaoForumMarkReadInputSchema, mcpContinuumDaoForumMarkReadOutputSchema, mcpContinuumDaoForumMarkUnreadInputSchema, mcpContinuumDaoForumMarkUnreadOutputSchema, mcpContinuumDaoForumMeInputSchema, mcpContinuumDaoForumMeOutputSchema, mcpContinuumDaoForumReactInputSchema, mcpContinuumDaoForumReactOutputSchema, mcpContinuumDaoForumRecentInputSchema, mcpContinuumDaoForumRecentOutputSchema, mcpContinuumDaoForumReplyCountInputSchema, mcpContinuumDaoForumReplyCountOutputSchema, mcpContinuumDaoForumReplyInputSchema, mcpContinuumDaoForumReplyOutputSchema, mcpContinuumDaoForumResolveInputSchema, mcpContinuumDaoForumResolveOutputSchema, mcpContinuumDaoForumSearchInputSchema, mcpContinuumDaoForumSearchOutputSchema, mcpContinuumDaoForumSectionsInputSchema, mcpContinuumDaoForumSectionsOutputSchema, mcpContinuumDaoForumSignInEligibleInputSchema, mcpContinuumDaoForumSignInEligibleOutputSchema, mcpContinuumDaoForumSignInInputSchema, mcpContinuumDaoForumSignOutInputSchema, mcpContinuumDaoForumSignOutOutputSchema, mcpContinuumDaoForumUnreadInputSchema, mcpContinuumDaoForumUnreadOutputSchema, mcpContinuumDaoForumUserPostIdsInputSchema, mcpContinuumDaoForumUserPostIdsOutputSchema, mcpContinuumDaoIncreaseAmountInputSchema, mcpContinuumDaoIncreaseUnlockTimeInputSchema, mcpContinuumDaoMergeInputSchema, mcpContinuumDaoMpaFlagInputSchema, mcpContinuumDaoMpaFlagOutputSchema, mcpContinuumDaoMpaListingInputSchema, mcpContinuumDaoMpaListingOutputSchema, mcpContinuumDaoMpaMailboxListInputSchema, mcpContinuumDaoMpaMailboxListOutputSchema, mcpContinuumDaoMpaMailboxOpenInputSchema, mcpContinuumDaoMpaMailboxOpenOutputSchema, mcpContinuumDaoMpaMailboxSendInputSchema, mcpContinuumDaoMpaMailboxSendOutputSchema, mcpContinuumDaoMpaRetractInputSchema, mcpContinuumDaoMpaRetractOutputSchema, mcpContinuumDaoProposalIdInputSchema, mcpContinuumDaoProposeBravoInputSchema, mcpContinuumDaoProposeDeltaInputSchema, mcpContinuumDaoRegisterProposalInputSchema, mcpContinuumDaoRegisterProposalOutputSchema, mcpContinuumDaoRequestDetachInputSchema, mcpContinuumDaoSplitInputSchema, mcpContinuumDaoTechnocoreBindInputSchema, mcpContinuumDaoTechnocoreBindOutputSchema, mcpContinuumDaoTokenIdInputSchema, mcpContinuumDaoTransferInputSchema, mcpContinuumDaoUndelegateInputSchema, mcpCurveDaoBuildAddLiquidityMultisignInputSchema, mcpCurveDaoBuildGaugeDepositMultisignInputSchema, mcpCurveDaoBuildRemoveLiquidityMultisignInputSchema, mcpCurveDaoBuildSwapMultisignInputSchema, mcpCurveDaoFetchImportantPoolsInputSchema, mcpCurveDaoFetchImportantPoolsOutputSchema, mcpCurveDaoFetchLpYieldsInputSchema, mcpCurveDaoFetchLpYieldsOutputSchema, mcpCurveDaoQuoteAddLiquidityInputSchema, mcpCurveDaoQuoteAddLiquidityOutputSchema, mcpCurveDaoQuoteInputSchema, mcpCurveDaoQuoteOutputSchema, mcpCurveDaoQuoteRemoveLiquidityInputSchema, mcpCurveDaoQuoteRemoveLiquidityOutputSchema, mcpEthenaClaimInputSchema, mcpEthenaCooldownInputSchema, mcpEthenaFetchSusdeApyInputSchema, mcpEthenaFetchSusdeApyOutputSchema, mcpEthenaRedeemInputSchema, mcpEthenaStakeInputSchema, mcpEulerV2BorrowRepayInputSchema, mcpEulerV2CollateralDepositInputSchema, mcpEulerV2CollateralWithdrawInputSchema, mcpEulerV2FetchEarnVaultsInputSchema, mcpEulerV2FetchEarnVaultsOutputSchema, mcpEulerV2FetchLendVaultsInputSchema, mcpEulerV2FetchLendVaultsOutputSchema, mcpEulerV2IsolatedBorrowInputSchema, mcpEulerV2IsolatedLendInputSchema, mcpEulerV2MerklClaimInputSchema, mcpEulerV2VaultWithdrawInputSchema, mcpGmxCancelInputSchema, mcpGmxDecreaseInputSchema, mcpGmxFetchGmApyInputSchema, mcpGmxFetchGmApyOutputSchema, mcpGmxFetchGmMarketsInputSchema, mcpGmxFetchGmMarketsOutputSchema, mcpGmxFetchMarketPricesInputSchema, mcpGmxFetchMarketPricesOutputSchema, mcpGmxFetchMarketsInputSchema, mcpGmxFetchMarketsOutputSchema, mcpGmxFetchOhlcvInputSchema, mcpGmxFetchOhlcvOutputSchema, mcpGmxFetchOrdersInputSchema, mcpGmxFetchOrdersOutputSchema, mcpGmxFetchPositionsInputSchema, mcpGmxFetchPositionsOutputSchema, mcpGmxFetchStakingPowerInputSchema, mcpGmxFetchStakingPowerOutputSchema, mcpGmxGmDepositInputSchema, mcpGmxGmWithdrawInputSchema, mcpGmxIncreaseInputSchema, mcpServerSubmitOutputSchema as mcpGmxMultisignOutputSchema, mcpGmxStakeGmxInputSchema, mcpGmxUnstakeGmxInputSchema, mcpHyperliquidBridgeDepositInputSchema, mcpHyperliquidBridgeWithdrawInputSchema, mcpHyperliquidCancelInputSchema, mcpHyperliquidCloseInputSchema, mcpHyperliquidDelegateInputSchema, mcpHyperliquidFetchDelegationsInputSchema, mcpHyperliquidFetchDelegationsOutputSchema, mcpHyperliquidFetchLendMarketsInputSchema, mcpHyperliquidFetchLendMarketsOutputSchema, mcpHyperliquidFetchLendPositionsInputSchema, mcpHyperliquidFetchLendPositionsOutputSchema, mcpHyperliquidFetchMarketSnapshotInputSchema, mcpHyperliquidFetchMarketSnapshotOutputSchema, mcpHyperliquidFetchMarketsInputSchema, mcpHyperliquidFetchMarketsOutputSchema, mcpHyperliquidFetchOhlcvInputSchema, mcpHyperliquidFetchOhlcvOutputSchema, mcpHyperliquidFetchOpenContextInputSchema, mcpHyperliquidFetchOpenContextOutputSchema, mcpHyperliquidFetchOpenOrdersInputSchema, mcpHyperliquidFetchOpenOrdersOutputSchema, mcpHyperliquidFetchPositionsInputSchema, mcpHyperliquidFetchPositionsOutputSchema, mcpHyperliquidFetchStakingSummaryInputSchema, mcpHyperliquidFetchStakingSummaryOutputSchema, mcpHyperliquidFetchStockMarketsInputSchema, mcpHyperliquidFetchStockMarketsOutputSchema, mcpHyperliquidFetchUsdClassBalancesInputSchema, mcpHyperliquidFetchUsdClassBalancesOutputSchema, mcpHyperliquidFetchUserVaultEquitiesInputSchema, mcpHyperliquidFetchUserVaultEquitiesOutputSchema, mcpHyperliquidFetchVaultApysInputSchema, mcpHyperliquidFetchVaultApysOutputSchema, mcpHyperliquidFetchVaultsInputSchema, mcpHyperliquidFetchVaultsOutputSchema, mcpHyperliquidLendInputSchema, mcpHyperliquidLimitOrderInputSchema, mcpHyperliquidSearchMarketsInputSchema, mcpHyperliquidSearchMarketsOutputSchema, mcpHyperliquidStakeInputSchema, mcpHyperliquidUndelegateInputSchema, mcpHyperliquidUnstakeInputSchema, mcpHyperliquidUpdateLeverageInputSchema, mcpHyperliquidUsdTransferInputSchema, mcpHyperliquidVaultDepositInputSchema, mcpHyperliquidVaultWithdrawInputSchema, mcpLidoClaimWithdrawalInputSchema, mcpLidoFetchStethAprInputSchema, mcpLidoFetchStethAprOutputSchema, mcpLidoRequestWithdrawalsInputSchema, mcpLidoSubmitInputSchema, mcpLidoUnwrapWstEthInputSchema, mcpLidoWrapStEthInputSchema, mcpMapleDepositInputSchema, mcpMapleFetchMarketInputSchema, mcpMapleFetchMarketOutputSchema, mcpMapleFetchMarketsInputSchema, mcpMapleFetchMarketsOutputSchema, mcpMapleRequestRedeemInputSchema, mcpMerklRewardsFetchInputSchema, mcpMerklRewardsFetchOutputSchema, mcpMorphoBlueBorrowInputSchema, mcpMorphoBlueCollateralDepositInputSchema, mcpMorphoBlueCollateralWithdrawInputSchema, mcpMorphoBlueRepayInputSchema, mcpMorphoBlueSupplyInputSchema, mcpMorphoBlueWithdrawInputSchema, mcpMorphoFetchBlueMarketsInputSchema, mcpMorphoFetchBlueMarketsOutputSchema, mcpMorphoFetchEarnVaultsInputSchema, mcpMorphoFetchEarnVaultsOutputSchema, mcpMorphoFetchMidnightBooksInputSchema, mcpMorphoFetchMidnightBooksOutputSchema, mcpMorphoFetchMidnightOffersInputSchema, mcpMorphoFetchMidnightOffersOutputSchema, mcpMorphoFetchMidnightPositionsInputSchema, mcpMorphoFetchMidnightPositionsOutputSchema, mcpMorphoFetchMidnightQuoteInputSchema, mcpMorphoFetchMidnightQuoteOutputSchema, mcpMorphoFetchPositionsInputSchema, mcpMorphoFetchPositionsOutputSchema, mcpMorphoFetchStockMarketsInputSchema, mcpMorphoFetchStockMarketsOutputSchema, mcpMorphoMerklClaimInputSchema, mcpMorphoMidnightBorrowInputSchema, mcpMorphoMidnightCancelLendOfferInputSchema, mcpMorphoMidnightLendInputSchema, mcpMorphoMidnightLendOfferInputSchema, mcpMorphoMidnightRepayInputSchema, mcpMorphoVaultDepositInputSchema, mcpMorphoVaultWithdrawInputSchema, mcpMultisignInput, multisignOutputSchema as mcpMultisignOutputSchema, mcpServerSubmitOutputSchema as mcpMultisignSubmitOutputSchema, mcpPendleBuildAddLiquidityMultisignInputSchema, mcpPendleBuildMintPyMultisignInputSchema, mcpPendleBuildMintSyMultisignInputSchema, mcpPendleBuildRedeemPyMultisignInputSchema, mcpPendleBuildRedeemRewardsMultisignInputSchema, mcpPendleBuildRedeemSyMultisignInputSchema, mcpPendleBuildRemoveLiquidityMultisignInputSchema, mcpPendleBuildSwapMultisignInputSchema, mcpPendleFetchMarketsInputSchema, mcpPendleFetchMarketsOutputSchema, mcpPendleFetchMerkleRewardsInputSchema, mcpPendleFetchMerkleRewardsOutputSchema, mcpPendleFetchPositionsInputSchema, mcpPendleFetchPositionsOutputSchema, mcpPendleFetchPricesInputSchema, mcpPendleFetchPricesOutputSchema, mcpPendleQuoteAddLiquidityInputSchema, mcpPendleQuoteMintPyInputSchema, mcpPendleQuoteMintSyInputSchema, mcpPendleQuoteOutputSchema, mcpPendleQuoteRedeemPyInputSchema, mcpPendleQuoteRedeemSyInputSchema, mcpPendleQuoteRemoveLiquidityInputSchema, mcpPendleQuoteSwapInputSchema, mcpPendleSearchAssetsInputSchema, mcpPendleSearchAssetsOutputSchema, mcpServerCommonInputSchema, mcpServerMultisignInput, mcpServerSubmitOutputSchema, mcpSkyFetchSusdsRateInputSchema, mcpSkyFetchSusdsRateOutputSchema, mcpSkyLockstakeCloseInputSchema, mcpSkyLockstakeDrawInputSchema, mcpSkyLockstakeGetRewardInputSchema, mcpSkyLockstakeStakeInputSchema, mcpSkyLockstakeWipeInputSchema, mcpSkySusdsDepositInputSchema, mcpSkySusdsRedeemInputSchema, mcpUniswapV4BuildAllowlistFinalizeMultisignInputSchema, mcpUniswapV4BuildCollectFeesMultisignInputSchema, mcpUniswapV4BuildDecreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildIncreaseLiquidityMultisignInputSchema, mcpUniswapV4BuildLimitOrderMultisignInputSchema, mcpUniswapV4BuildMintLiquidityMultisignInputSchema, mcpUniswapV4BuildSwapMultisignInputSchema, mcpUniswapV4CheckPermissionsInputSchema, mcpUniswapV4CheckPermissionsOutputSchema, mcpUniswapV4CreateSwapInputSchema, mcpUniswapV4CreateSwapOutputSchema, mcpUniswapV4FetchLimitOrdersInputSchema, mcpUniswapV4FetchLimitOrdersOutputSchema, mcpUniswapV4FetchOhlcvInputSchema, mcpUniswapV4FetchOhlcvOutputSchema, mcpUniswapV4KycApplyLinkInputSchema, mcpUniswapV4KycApplyLinkOutputSchema, mcpUniswapV4LimitOrderQuoteInputSchema, mcpUniswapV4LimitOrderQuoteOutputSchema, mcpUniswapV4LpClaimInputSchema, mcpUniswapV4LpClaimOutputSchema, mcpUniswapV4LpCreatePositionInputSchema, mcpUniswapV4LpCreatePositionOutputSchema, mcpUniswapV4LpDecreaseInputSchema, mcpUniswapV4LpDecreaseOutputSchema, mcpUniswapV4LpIncreaseInputSchema, mcpUniswapV4LpIncreaseOutputSchema, mcpUniswapV4LpListPoolsInputSchema, mcpUniswapV4LpListPoolsOutputSchema, mcpUniswapV4LpListPositionsInputSchema, mcpUniswapV4LpListPositionsOutputSchema, mcpUniswapV4QuoteInputSchema, mcpUniswapV4QuoteOutputSchema, mcpUniswapV4RegisterPositionFromMintTxInputSchema, mcpUniswapV4RegisterPositionFromMintTxOutputSchema, mcpUniswapV4RegisterPositionNftInputSchema, mcpUniswapV4RegisterPositionNftOutputSchema, mcpVeniceBurnDiemInputSchema, mcpVeniceCompleteUnstakeDiemInputSchema, mcpVeniceCompleteUnstakeSvvvInputSchema, mcpVeniceInitiateUnstakeDiemInputSchema, mcpVeniceInitiateUnstakeSvvvInputSchema, mcpVeniceListModelsInputSchema, mcpVeniceListModelsOutputSchema, mcpVeniceMintDiemInputSchema, mcpVeniceReadMintDiemPreviewInputSchema, mcpVeniceReadMintDiemPreviewOutputSchema, mcpVeniceReadStakingStateInputSchema, mcpVeniceReadStakingStateOutputSchema, mcpVeniceStakeDiemInputSchema, mcpVeniceStakeVvvInputSchema, multisignOutputSchema, parseAgentBoolean, parseAgentEvmChainId, parseMcpToolInput, parseMcpToolOutput, parseMultisignBuilderOutput, uniswapQuoteTradeTypeSchema, zodSchemaToMcpJsonSchema };
|