Skip to main content
Glama
tdnupe3

Coin Railz MCP Server

by tdnupe3

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
NameRequiredDescriptionDefault
chainNoethereum
limitNo

Implementation Reference

  • 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)

Latest Blog Posts

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/tdnupe3/mcp-server-coinrailz'

If you have feedback or need assistance with the MCP directory API, please join our Discord server