get_liquidity_pools
Fetch and display detailed liquidity pool data for a specific token and blockchain using DexScreener API. Returns a markdown table with pool metrics like price, volume, liquidity, and market cap for informed DeFi analysis.
Instructions
Fetch all liquidity pools for a given chain ID and token address from DexScreener API.
Args:
chain_id (str): The blockchain identifier (e.g., 'bsc' for Binance Smart Chain, 'eth' for Ethereum)
token_address (str): The contract address of the token (e.g., '0xe6DF05CE8C8301223373CF5B969AFCb1498c5528')
ctx (Context): MCP context for logging and request handling
Returns:
str: A markdown table containing liquidity pool details including dexId, pairAddress,
base/quote token symbols, price USD, 24h buy/sell transactions, 24h volume,
liquidity USD, and market cap, followed by total liquidity USD
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chain_id | Yes | ||
token_address | Yes |
Input Schema (JSON Schema)
{
"properties": {
"chain_id": {
"title": "Chain Id",
"type": "string"
},
"token_address": {
"title": "Token Address",
"type": "string"
}
},
"required": [
"chain_id",
"token_address"
],
"title": "get_liquidity_poolsArguments",
"type": "object"
}