morpho-cli
Original:🇺🇸 English
Translated
Interact with the Morpho lending protocol using the CLI. Use this skill when the user asks to: query vault APYs, TVL, or allocation strategies ("What's the best USDC vault on Base?"); query market rates, utilization, or LLTV ("Show me ETH/USDC markets on Ethereum"); check user positions, balances, or health ("What are my Morpho positions?"); deposit into or withdraw from a vault ("Deposit 1000 USDC into Steakhouse vault"); supply collateral, borrow, or repay on a market ("Borrow 5000 USDC against my WETH"); prepare or simulate any Morpho transaction.
13installs
Sourcemorpho-org/morpho-skills
Added on
NPX Install
npx skill4agent add morpho-org/morpho-skills morpho-cliTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →morpho-cli
Experimental (pre-v1.0) — Command syntax, response schemas, and available operations may change. Always verify critical outputs independently.
Query Morpho protocol data and build unsigned transactions. All commands output JSON to stdout. No private keys needed.
bash
morpho <command> [options]Supported chains: , . Every command requires .
baseethereum--chainResponse Schemas
- Read commands — exact JSON shapes for query-vaults, get-vault, query-markets, get-market, get-positions, get-position
- Write commands — exact JSON shapes for prepare-*, simulate-transactions
Quick Reference
bash
# Read — query protocol state
morpho query-vaults --chain base [--asset-symbol USDC] [--asset-address 0x...] [--sort apy_desc|apy_asc|tvl_desc|tvl_asc] [--limit 5] [--skip 0] [--fields address,name,symbol,apyPct,tvl,tvlUsd,feePct]
morpho get-vault --chain base --address 0x...
morpho query-markets --chain base --loan-asset 0x... --collateral-asset 0x... [--sort-by supplyApy|borrowApy|netSupplyApy|netBorrowApy|supplyAssetsUsd|borrowAssetsUsd|totalLiquidityUsd] [--sort-direction asc|desc] [--limit 10] [--skip 0] [--fields supplyApy,borrowApy,totalSupply,totalBorrow,totalCollateral,totalLiquidity,supplyAssetsUsd,borrowAssetsUsd,collateralAssetsUsd,liquidityAssetsUsd]
morpho get-market --chain base --id 0x...
morpho get-positions --chain base --user-address 0x... [--vault-address 0x...] [--market-id 0x...]
morpho get-position --chain base --user-address 0x... [--vault-address 0x...]
# Write — prepare unsigned transactions (simulation runs by default; add --no-simulate to skip)
morpho prepare-deposit --chain base --vault-address 0x... --user-address 0x... --amount 1000
morpho prepare-withdraw --chain base --vault-address 0x... --user-address 0x... --amount max
morpho prepare-supply --chain base --market-id 0x... --user-address 0x... --amount 5000
morpho prepare-borrow --chain base --market-id 0x... --user-address 0x... --borrow-amount 1
morpho prepare-repay --chain base --market-id 0x... --user-address 0x... --amount max
morpho prepare-supply-collateral --chain base --market-id 0x... --user-address 0x... --amount 5000
morpho prepare-withdraw-collateral --chain base --market-id 0x... --user-address 0x... --amount max
# Simulate — standalone re-simulation or arbitrary transaction simulation
morpho simulate-transactions --chain base --from 0x... --transactions '<JSON>' --analysis-context '<JSON>'
# Utility
morpho health-check
morpho get-supported-chainsWrite Workflow: Prepare → Present
Every write operation follows two steps. Simulation runs automatically inside .
prepare-*- Prepare — run a command. The CLI handles token decimals, allowances, approvals, and simulation automatically. Returns
prepare-*where{operation, simulation}has transactions/summary/warnings/preview andoperationhas execution results, gas, and post-state analysis. Usesimulationto skip simulation.--no-simulate - Present — show the summary, list of unsigned transactions, simulation results, and any warnings (low health factor, partial liquidity) in tabular format. If is false — diagnose before presenting.
simulation.allSucceeded
Use separately only for re-simulating with different parameters or simulating arbitrary transactions.
simulate-transactionsSimulation Failures
| Revert | Cause | What to do |
|---|---|---|
| Missing approval | Re-prepare — CLI should include approvals automatically |
| Vault liquidity insufficient | Reduce amount (see below) |
| User lacks tokens | Tell the user |
| Custom error hex | Protocol-specific | Query state with |
Partial Withdrawal
If returns a liquidity warning:
prepare-withdraw --amount max- Parse the safe amount from , apply ~1% buffer (
summary)parsedAmount * 0.99 - Re-call with the buffered amount, then simulate
prepare-withdraw - Tell the user: remaining locked assets free up as borrowers repay
Safety Rules
- Check simulation before presenting — simulation runs by default; check before presenting
simulation.allSucceeded - Never sign or broadcast — unsigned payloads only
- Watch health factor for borrows — warn if below 1.1
- Communicate liquidity constraints clearly for partial withdrawals
CLI Errors
When a morpho CLI command fails, stop and report the error to the user. Do not:
- Retry with different parameters you invented
- Fall back to alternative tools or APIs
- Attempt to work around missing required options
- Pipe output through or other filters — use the CLI's built-in flags (
jq,--fields,--sort-by, etc.) to shape the response--limit
Common Mistakes
- Forgetting — every command requires it, there is no default
--chain - Using chain IDs (,
1) instead of names (8453,ethereum)base - Displaying raw amounts without dividing by —
10^decimalsUSDC is"2000000000", not 2 billion2000 - Assuming 18 decimals — USDC/USDT have 6
- Passing raw units as — CLI expects human-readable (
--amountnot1000)1000000000 - Using without reason — simulation is on by default; only skip when debugging or for speed
--no-simulate - Ignoring — diagnose before presenting
simulation.allSucceeded === false