Give an AI agent real-time DeFi lending data and execution capability: rates, risk assessment, position monitoring, and unsigned transaction construction for supply and borrow. No API key required.
Follow Quick start to add the Syenite MCP endpoint to Cursor or Claude Desktop and verify with syenite.help. This tutorial assumes the server is already connected.
lending.rates.query returns borrow and supply rates across Aave v3, Morpho Blue, and Spark on Ethereum. Pass a collateral asset and borrow asset to compare protocols side-by-side. See Lending rates and risk for the full parameter reference.
Example prompt: "What are the current USDC borrow rates for wBTC on Aave, Morpho, and Spark?"
lending.risk.assess evaluates a proposed position before you open it: risk score, liquidation price, health factor, and protocol-specific risks. Give it collateral type, amount, borrow asset, target LTV, and protocol. Full parameters in Lending rates and risk.
Example: "Assess risk for borrowing 50,000 USDC against 1 wBTC at 75% LTV on Morpho."
lending.position.monitor reads health factor, current LTV, liquidation distance, and annual cost for any Ethereum address with a lending position. Pass the address and optionally a protocol filter ("aave-v3", "morpho", "spark", or "all").
Example: "Check the health of my lending position at 0x…"
Chain the workflow in a single prompt: "I want to borrow USDC against wBTC. Show me current rates on Aave, Morpho, and Spark. Then assess risk for 1 wBTC at 70% LTV and recommend a protocol." The agent calls lending.rates.query, then lending.risk.assess, and summarizes with a recommendation.
lending.supply, lending.borrow) return unsigned transactions for you to sign. Rate limit: 30 requests per minute per IP.
Ready to execute? Lending execution covers lending.supply, lending.borrow, lending.withdraw, and lending.repay — the agent constructs unsigned calldata and you sign from your wallet. Use the transaction trust layer to verify before signing and tx.receipt to confirm after.
Lending rates and risk has the full parameter reference for rate queries and risk assessment. Position alerts for automated health factor monitoring. Set up webhook delivery for position alerts to route notifications to any endpoint. Prediction and strategy for finding the best opportunities across all data sources.
To compare Aave, Morpho, and Compound side-by-side before choosing a protocol, see the protocol comparison guide. For a framework-agnostic agent setup, see Build a DeFi AI Agent.