Skip to main content
Glama
tdnupe3

Coin Railz MCP Server

by tdnupe3

get_trading_signal

Generate buy/sell signals for cryptocurrency pairs with indicators, confidence levels, and target prices based on specified timeframes.

Instructions

Get trading signal for a specific symbol and timeframe.

Args: symbol: Trading pair symbol (e.g., ETH/USDC, BTC/USDT) timeframe: Chart timeframe. Options: 1m, 5m, 15m, 1h, 4h, 1d

Returns: Buy/sell signal with indicators, confidence, and target prices.

Price: $0.50

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
symbolYes
timeframeNo1h

Implementation Reference

  • The get_trading_signal function acts as the handler for the MCP tool, taking a symbol and timeframe as input and calling the coinrailz service.
    @mcp.tool()
    async def get_trading_signal(symbol: str, timeframe: str = "1h") -> str:
        """
        Get trading signal for a specific symbol and timeframe.
        
        Args:
            symbol: Trading pair symbol (e.g., ETH/USDC, BTC/USDT)
            timeframe: Chart timeframe. Options: 1m, 5m, 15m, 1h, 4h, 1d
        
        Returns:
            Buy/sell signal with indicators, confidence, and target prices.
        
        Price: $0.50
        """
        payload = {"symbol": symbol, "timeframe": timeframe}
        result = await call_coinrailz_service("trading-signal", 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