TRDEFI Liquidity
Live non-custodial stablecoin liquidity: open positions, volume, and an on-chain swap quote.
Should I use this
Quality & Safety
Findings (1)
- LOWin trdefi_position_detail
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"liquidity": {
"url": "https://yield.trdefi.com/mcp"
}
}
}Remote endpoints
https://yield.trdefi.com/mcpstreamable-httpWhat it can do
Tool inventory
Tools (6)
⚪trdefi_stats
Aggregate statistics for the live TRDEFI non-custodial stablecoin liquidity catalogue: how many open maker positions exist, how many distinct makers, how many pairs, across how many networks, plus settled volume over 1, 7 and 30 days, and the deepest pairs by volume and by position count. Free, no key.
Input Schema
{
"type": "object",
"properties": {},
"additionalProperties": false
}⚪trdefi_chains
The networks where liquidity is live right now, with each network's settlement engine address and the tokens a position can be built from. Use this instead of hardcoding chain or token identifiers.
Input Schema
{
"type": "object",
"properties": {},
"additionalProperties": false
}🟢trdefi_positions(chain, pair, limit)
Live non-custodial stablecoin liquidity, as positions an agent can actually trade against. Earn-worthy USDC/USDT maker positions: each row carries the strategy hash, network, pair, tokens and settled volume. Use this before a stablecoin swap to find a real on-chain counterparty, or to survey where stablecoin liquidity sits. Filter by network and by pair. Free, no key, no custody.
Input Schema
{
"type": "object",
"properties": {
"chain": {
"type": "string",
"description": "Network key, e.g. \"base\" or \"ethereum\". Defaults to every network."
},
"pair": {
"type": "string",
"enum": [
"usdc-usdt"
],
"description": "Pair filter. Currently only the USDC/USDT stable pair is selectable."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 500,
"default": 50,
"description": "Rows to return."
}
},
"additionalProperties": false
}⚪trdefi_position_detail(hash)
One position in full, by its 32-byte strategy hash.
Input Schema
{
"type": "object",
"properties": {
"hash": {
"type": "string",
"pattern": "^0x[a-fA-F0-9]{64}$",
"description": "Strategy hash, 64 hex characters."
}
},
"required": [
"hash"
],
"additionalProperties": false
}🔴trdefi_quote(hash, amount, chain, direction)
Price a stablecoin swap against one position, on-chain, at the current block — no custody, nothing signed, nothing moved. Use this to check USDC/USDT liquidity and get the output amount before preparing a swap. Note that a maker may gate a position on the caller holding an access licence token, and roughly four in five do — those answer with a clear reason instead of a price, which is a property of the maker's strategy rather than an error.
Input Schema
{
"type": "object",
"properties": {
"hash": {
"type": "string",
"pattern": "^0x[a-fA-F0-9]{64}$",
"description": "Strategy hash to quote against."
},
"amount": {
"type": "string",
"description": "Input amount in token base units, as an integer string. e.g. \"1000000\" for 1 USDC."
},
"chain": {
"type": "string",
"description": "Network key. Defaults to \"ethereum\"."
},
"direction": {
"type": "string",
"enum": [
"aToB",
"bToA"
],
"default": "aToB"
}
},
"required": [
"hash",
"amount"
],
"additionalProperties": false
}🟢trdefi_badge(metric)
A shields.io endpoint payload for the catalogue metrics, so a README can show live figures. Metrics: volume30, volume7, volume1, strategies, makers, pairs, chains.
Input Schema
{
"type": "object",
"properties": {
"metric": {
"type": "string",
"enum": [
"volume30",
"volume7",
"volume1",
"strategies",
"makers",
"pairs",
"chains"
],
"default": "volume30"
}
},
"additionalProperties": false
}Community
Evidence