get_historical_chain_tvl_by_chain
Retrieve historical total value locked (TVL) data for a specific blockchain, excluding liquid staking and double-counted TVL, using a chain slug as input. Available via the REI Crypto MCP Server.
Instructions
GET /api/v2/historicalChainTvl/{chain}
Get historical TVL (excludes liquid staking and double counted tvl) of a chain.
Parameters:
chain: chain slug (e.g., 'Ethereum')
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chain | Yes |
Input Schema (JSON Schema)
{
"properties": {
"chain": {
"title": "Chain",
"type": "string"
}
},
"required": [
"chain"
],
"title": "get_historical_chain_tvl_by_chainArguments",
"type": "object"
}