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

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

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)
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions 'real-time' and 'alerts,' implying timely notifications, but lacks details on rate limits, authentication needs, data freshness, or whether this is a read-only operation. The 'Price: $0.35' hints at a paid service but doesn't clarify billing conditions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured and front-loaded with the core purpose, followed by parameter explanations and return details. Every sentence earns its place, with no redundant information. The 'Price' line is concise and relevant for cost-aware usage.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity (2 parameters, no annotations, but with an output schema), the description is partially complete. It covers parameters and return value basics, but lacks behavioral context like rate limits or real-time constraints. The output schema existence reduces the need to detail return values, but more operational guidance would help.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It effectively explains both parameters: 'chains' as 'List of chains to monitor' with a default, and 'min_value_usd' as 'Minimum transaction value in USD to alert on' with an implied threshold. This adds crucial meaning beyond the bare schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Get real-time whale transaction alerts across chains.' It specifies the verb ('Get'), resource ('whale transaction alerts'), and scope ('across chains'). However, it doesn't explicitly differentiate from sibling tools like 'detect_fraud' or 'get_trade_signals' that might also involve transaction monitoring.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'detect_fraud' for suspicious activity or 'get_trade_signals' for trading insights, nor does it specify prerequisites or exclusions for usage.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

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