morpho_get_market_suppliers
Identify top suppliers and supply concentration in any Morpho market. Distinguishes vaults, EOAs, and loopers to assess liquidity depth and rate stability.
Instructions
Show who supplies lending liquidity to a specific Morpho market. Returns top suppliers ranked by supply size, identifies Morpho vaults vs EOAs vs loopers, and provides concentration analysis.
A market's supply side determines looping viability. A high-APY market with $10K supply from a single vault has different risk/capacity than $10M from diverse sources.
Protocol context:
Suppliers are identified via Morpho's marketPositions query, then cross-referenced against the vault registry. Addresses that aren't vaults could be EOAs or contracts.
A supplier with both collateral and borrows is likely a looper, not a lender. The tool tags these as [Looper] — but this is inference from position shape, not confirmed. The address could be a contract doing something more complex.
Supply concentration affects rate stability: one vault withdrawing could spike borrow rates. High concentration is a signal, not necessarily a problem.
Reward incentives (supply APR) can make supply competitive — or mask thin organic yield.
Use morpho_list_markets to find market keys first. Use morpho_list_vaults to discover all vaults on a chain and their allocations. Use morpho_get_rate for borrow-side rate and PT spread analysis.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| chain | Yes | The blockchain network | |
| market_key | Yes | The Morpho market unique key (0x + 64 hex chars). Use morpho_list_markets to find it. | |
| top_n | No | Number of top suppliers to return (default 10, max 50) |