@t2000/mcp 0.20.17 → 0.20.18
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/bin.js +2 -2
- package/dist/bin.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/bin.js
CHANGED
|
@@ -224,7 +224,7 @@ function registerReadTools(server, agent) {
|
|
|
224
224
|
);
|
|
225
225
|
server.tool(
|
|
226
226
|
"t2000_all_rates",
|
|
227
|
-
'Compare interest rates across ALL protocols side-by-side for every asset. Shows NAVI vs Suilend rates per asset. Use when the user asks "am I getting the best rate?" or wants to compare protocols.',
|
|
227
|
+
'Compare interest rates across ALL protocols side-by-side for every asset. Shows NAVI vs Suilend rates per asset. Use when the user asks "am I getting the best rate?" or wants to compare protocols. NOTE: Do NOT use this to decide where to save \u2014 t2000_save always saves USDC at the best USDC rate. This tool is for informational comparisons and for deciding whether to t2000_rebalance into a different asset.',
|
|
228
228
|
{},
|
|
229
229
|
async () => {
|
|
230
230
|
try {
|
|
@@ -376,7 +376,7 @@ function registerWriteTools(server, agent) {
|
|
|
376
376
|
);
|
|
377
377
|
server.tool(
|
|
378
378
|
"t2000_save",
|
|
379
|
-
'Deposit USDC to savings (earns yield). Amount is in dollars. Use "all" to save entire available balance. Set dryRun: true to preview.',
|
|
379
|
+
'Deposit USDC to savings at the best USDC rate (earns yield). Amount is in dollars. Use "all" to save entire available balance. Set dryRun: true to preview. This saves USDC as USDC \u2014 do NOT suggest swapping to other assets first. If the user later wants to chase higher yields on other assets (e.g. USDe), use t2000_rebalance AFTER saving.',
|
|
380
380
|
{
|
|
381
381
|
amount: z.union([z.number(), z.literal("all")]).describe('Dollar amount to save, or "all"'),
|
|
382
382
|
dryRun: z.boolean().optional().describe("Preview without signing (default: false)")
|