Skip to main content
Glama
tdnupe3

Coin Railz MCP Server

by tdnupe3

get_trade_signals

Generate AI-powered trading signals with entry/exit recommendations and confidence scores for cryptocurrency tokens on supported blockchain networks.

Instructions

Get AI-powered trading signals and market recommendations.

Args: token: Optional token address or symbol to focus on chain: Blockchain network. Options: ethereum, base, polygon

Returns: Trading signals with entry/exit recommendations and confidence scores.

Price: $0.75

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tokenNo
chainNoethereum

Implementation Reference

  • Handler for "get_trade_signals" that prepares a payload and calls the "trade-signals" CoinRailz service. Note: It is missing the @mcp.tool() decorator which might imply it is a legacy helper or mis-registered, though the prompt asked to find the implementation.
    async def get_trade_signals(token: str = None, chain: str = "ethereum") -> str:
        """
        Get AI-powered trading signals and market recommendations.
        
        Args:
            token: Optional token address or symbol to focus on
            chain: Blockchain network. Options: ethereum, base, polygon
        
        Returns:
            Trading signals with entry/exit recommendations and confidence scores.
        
        Price: $0.75
        """
        payload = {"token": token, "chain": chain} if token else {"chain": chain}
        result = await call_coinrailz_service("trade-signals", 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