Syenite
OfficialSupports wallet balance checks, gas estimation, and swap/bridge routing on BNB Chain.
Integrates Coinbase's liquid staking (cbETH) as a yield source for yield opportunities and strategy assessment.
Supports lending rates, execution calldata, position monitoring, yield discovery, swap/bridge routing, and trust layer simulations on Ethereum.
Supported as a chain for swap and bridge routing via LI.FI aggregation.
Supported as a chain for swap and bridge routing via LI.FI aggregation.
Supported as a chain for swap and bridge routing via LI.FI aggregation.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Syenitewhat are the current lending rates for USDC across protocols?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Syenite — DeFi MCP Server for AI Agents
Retired. The hosted endpoint at
syenite.ai/mcphas been shut down, and the package is deprecated on npm. The source remains here, unmaintained, under MIT.Syenite ran from March to August 2026. It can still be run locally — see Running It Yourself — but nothing is hosted and no support is offered.
A DeFi interface for AI agents via the Model Context Protocol (MCP). One endpoint covered lending rates across Aave, Morpho, Compound, and Spark; yield discovery; swap and bridge routing across 30+ chains; Polymarket and Kalshi prediction markets; position alerts; and a trust layer that verified and simulated calldata before signing.
What It Does
Syenite is an MCP server that gives AI agents composable access to DeFi. Agents can query borrow and supply rates across every major lending protocol, find yield opportunities from lending and staking to Pendle fixed-rate markets, route swaps and bridges via LI.FI aggregation, read Polymarket prediction markets and signals, and set webhook alerts for health factor changes. All execution tools return unsigned calldata — the agent passes it to a connected wallet; Syenite never holds keys.
Related MCP server: ProfitSpot MCP
Running It Yourself
The hosted endpoint is gone, but stdio mode is self-contained — it talks directly to Aave, Morpho, LI.FI, Polymarket, and Kalshi, with no dependency on syenite.ai. Build from source:
git clone https://github.com/syenite-ai/syenite.git
cd syenite/mcp && npm install && npm run buildThen point an MCP client at it:
{
"mcpServers": {
"syenite": {
"command": "node",
"args": ["/absolute/path/to/syenite/mcp/dist/stdio.js"]
}
}
}The last version published to npm was 0.5.0; this repo is at 0.6.3, so building
from source is the only way to get the Kalshi and cross-exchange prediction tools.
Two caveats: the four alerts.* tools need a Postgres instance (DATABASE_URL) and
will fail without one, and some upstream APIs may have changed since this stopped
being maintained. Call syenite.help for the tool catalogue.
Tools
Lending Rates
Tool | What it does | Protocols / chains |
| Borrow and supply rates for any asset | Aave v3, Morpho Blue, Spark, Compound v3, Fluid — Ethereum, Arbitrum, Base |
| Aggregate TVL, utilisation, rate ranges per protocol | Same protocols |
| Health factor, liquidation distance, and cost for any address | Aave v3, Morpho Blue, Spark |
| Risk assessment for a proposed lending position | Same protocols |
| Screen all markets for positive carry (supply APY > borrow APY) | All lending protocols |
Lending Execution
Tool | What it does | Protocols / chains |
| Unsigned calldata to supply collateral | Aave v3, Morpho Blue, Spark, Compound v3 |
| Unsigned calldata to borrow an asset | Same protocols |
| Unsigned calldata to withdraw supplied collateral | Same protocols |
| Unsigned calldata to repay a borrow | Same protocols |
Yield
Tool | What it does | Protocols / chains |
| Best yield across lending, staking, vaults, Pendle, and savings rate | Aave, Morpho, Spark, Lido, Rocket Pool, Pendle, Yearn, Ethena, Maker DSR |
| Deep risk assessment for a specific yield strategy | All sources |
| Composable scan: yield, carry, gas, optional prediction signals | Cross-protocol |
Carry Trade
Tool | What it does | Protocols / chains |
| Find assets where supply APY exceeds borrow APY across all markets | Aave v3, Morpho, Compound, Spark |
Swap & Bridge
Tool | What it does | Protocols / chains |
| Optimal swap or bridge quote with unsigned tx calldata | LI.FI aggregation — 30+ chains |
| Batch up to 10 swap/bridge quotes in parallel | Same |
| Track cross-chain bridge delivery | Same |
Prediction Markets
Tool | What it does | Protocols / chains |
| Top Polymarket events by volume — probabilities, liquidity, spread | Polymarket |
| Search prediction markets by topic | Polymarket |
| Order book depth and spread for an outcome token | Polymarket |
| Actionable signals: extreme probabilities, volume, mispricing-style flags | Polymarket |
Position Alerts
Tool | What it does | Protocols / chains |
| Register an address for health factor monitoring; optional | Aave v3, Morpho Blue, Spark |
| Poll for active alerts on watched addresses | Same |
| List all active watches | — |
| Remove a watch | — |
Wallet & Gas
Tool | What it does | Protocols / chains |
| Native and stablecoin balances | Ethereum, Arbitrum, Base, BNB Chain |
| Live gas prices and per-operation cost estimates; finds the cheapest chain | Same |
Trust Layer
Tool | What it does | Protocols / chains |
| Verify a contract via Etherscan, Sourcify, and Syenite protocol registry; surfaces risk flags | Any EVM chain |
|
| Ethereum, Arbitrum, Base |
| Apply your own rules: value caps, allowlists, blocklists, registry requirement | — |
| Post-signing confirmation: status, gas cost, decoded events, token transfers | Any EVM chain |
Supported Protocols
Protocol | Category | What Syenite provides |
Aave v3 | Lending | Supply/borrow rates, position monitoring, execution calldata |
Morpho Blue | Lending | Supply/borrow rates, market overview, execution calldata |
Compound v3 | Lending | Supply/borrow rates, execution calldata |
Spark | Lending | Supply/borrow rates, position monitoring, execution calldata |
Pendle | Yield | Fixed-rate and yield-tokenisation opportunities via |
LI.FI | Swap/bridge | Aggregated routing across DEXs and bridges on 30+ chains |
Polymarket | Prediction markets | Market data, order books, trending events, actionable signals |
Supported Chains
Swap and bridge (via LI.FI): Ethereum, Arbitrum, Base, Optimism, Polygon, BNB Chain, Avalanche, zkSync, Linea, Scroll, Gnosis, Fantom, and 20+ more.
Lending rates, execution, and position monitoring: Ethereum, Arbitrum, Base (per protocol availability).
Wallet, gas, and trust simulation: Ethereum, Arbitrum, Base, BNB Chain.
How Execution Works
All execution tools (lending.supply, lending.borrow, lending.withdraw, lending.repay, swap.quote) return unsigned transactionRequest objects — calldata ready to sign. The recommended flow:
Get the calldata from the relevant tool.
Run
tx.verifyandtx.simulateto check the contract and preview effects.Optionally run
tx.guardto enforce value caps or allowlists.Sign and submit from your own wallet.
Confirm with
tx.receipt.
Syenite never holds private keys or custody of funds.
Agent Integration
Syenite is designed for agent-native DeFi workflows. Every tool is an atomic primitive: agents compose them to achieve outcomes like "find the best lending rate for wBTC, supply collateral, and set a health factor alert."
The server included scaffolding for ERC-8004
on-chain agent registration (Ethereum, Arbitrum, Base, BNB Chain) via
src/scripts/register-agent.ts, and served an
x402-flagged .well-known/agent-registration.json. No agent IDs were ever
configured in production, so the served registration list was always empty.
The server.json manifest includes a systemPrompt field that MCP clients can inject to orient the agent on Syenite's capabilities automatically.
Call syenite.help for the full capability overview including all tool parameters.
Yield Sources
Source | Type |
Aave v3, Morpho Blue, Spark, Compound v3 | Lending supply APY |
Lido (stETH/wstETH), Rocket Pool (rETH), Coinbase (cbETH) | Liquid staking |
Maker DSR (sDAI) | Savings rate |
MetaMorpho (Steakhouse, Gauntlet), Yearn v3 | Vaults |
Pendle | Fixed-rate / yield tokenisation |
Ethena (sUSDe) | Basis capture |
Project Structure
syenite/
├── mcp/ # MCP DeFi server (live at syenite.ai/mcp)
├── docs/ # Architecture, planning, research, commercial
├── contracts/ # Solidity vault contracts (parallel build)
├── keeper/ # Keeper agent infrastructure
└── frontend/ # Minimal UIStatus
Retired as of August 2026. The hosted endpoint, the docs site, and the usage
dashboard are all offline. @syenite/mcp is deprecated on npm and the MCP Registry
listing has been removed.
Final tally: 46 tools across 8 protocol families, ~20k lines of TypeScript, and 574 logged calls over five months — most of them from an automated registry health-check rather than real users.
Source: github.com/syenite-ai/syenite · MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
AlicenseAqualityFmaintenanceMCP server for DeFi execution — lets AI agents swap, provide liquidity, lend, bridge, and run yield strategies across 22 chains in a single transaction. 7 tools for token discovery, portfolio analysis, quoting, and execution via the Haiku API.7682MIT- AlicenseAqualityCmaintenanceCross-chain DeFi intelligence MCP server for AI agents. 7 tools for yield discovery, pool analysis, profit simulation, risk scoring, whale tracking, impermanent loss calculation, and DeFi overview across 86 chains and 6,500+ liquidity pools.71AGPL 3.0
- AlicenseBqualityDmaintenanceA production-ready MCP server that enables AI agents to interact with the Fluid DeFi Protocol for lending, borrowing, and DEX trading across multiple chains.2413MIT
- AlicenseCqualityAmaintenanceWeb3 MCP proxy server for AI agents: EVM execution, DeFi swaps, bridges, advanced orders, market data, wallet management, and confirmation-gated writes.10073MIT
Related MCP Connectors
MCP server connecting AI agents to non-custodial staking data across 130+ networks.
HiveCapital MCP Server — autonomous investment layer for AI agents
Non-custodial DeFi for AI agents: swaps, concentrated liquidity (V3/V4) zaps + ranges, 5 EVM chains
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/syenite-ai/syenite'
If you have feedback or need assistance with the MCP directory API, please join our Discord server