Skip to main content
Glama
tdnupe3

Coin Railz MCP Server

by tdnupe3

get_whale_alerts

Monitor real-time large cryptocurrency transactions across blockchain networks to track whale activity and identify significant market movements based on customizable value thresholds.

Instructions

Get real-time whale transaction alerts across chains.

Args: chains: List of chains to monitor. Defaults to all major chains. min_value_usd: Minimum transaction value in USD to alert on

Returns: Recent large transactions with sender, receiver, and token details.

Price: $0.35

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
chainsNo
min_value_usdNo

Implementation Reference

  • The tool 'get_whale_alerts' is implemented as an async function decorated with @mcp.tool() and uses 'call_coinrailz_service' to fetch the data from the API.
    async def get_whale_alerts(chains: List[str] = None, min_value_usd: int = 100000) -> str:
        """
        Get real-time whale transaction alerts across chains.
        
        Args:
            chains: List of chains to monitor. Defaults to all major chains.
            min_value_usd: Minimum transaction value in USD to alert on
        
        Returns:
            Recent large transactions with sender, receiver, and token details.
        
        Price: $0.35
        """
        payload = {
            "chains": chains or ["ethereum", "base", "polygon"],
            "minValueUsd": min_value_usd
        }
        result = await call_coinrailz_service("whale-alerts", 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