get_trending_tokens
Identify trending DeFi tokens across blockchain networks by analyzing volume, price changes, and social metrics to inform investment decisions.
Instructions
Get trending tokens across DeFi platforms.
Args: chain: Blockchain network. Options: ethereum, base, polygon, bsc limit: Number of tokens to return (max 50)
Returns: List of trending tokens with volume, price change, and social metrics.
Price: $0.50
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| chain | No | ethereum | |
| limit | No |
Implementation Reference
- coinrailz_mcp/__init__.py:292-308 (handler)The handler for get_trending_tokens tool, which calls the 'trending-tokens' Coin Railz service.
@mcp.tool() async def get_trending_tokens(chain: str = "ethereum", limit: int = 10) -> str: """ Get trending tokens across DeFi platforms. Args: chain: Blockchain network. Options: ethereum, base, polygon, bsc limit: Number of tokens to return (max 50) Returns: List of trending tokens with volume, price change, and social metrics. Price: $0.50 """ payload = {"chain": chain, "limit": min(limit, 50)} result = await call_coinrailz_service("trending-tokens", payload) return json.dumps(result, indent=2)