Skip to main content
Glama
tdnupe3

Coin Railz MCP Server

by tdnupe3

get_polymarket_odds

Retrieve current odds, trading volume, and price history for specific Polymarket prediction market events to analyze market sentiment and inform trading decisions.

Instructions

Get current odds for a specific Polymarket event.

Args: event_id: The Polymarket event ID

Returns: Current odds, volume, and price history.

Price: $0.15

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
event_idYes

Implementation Reference

  • The implementation of the get_polymarket_odds tool. Note: It lacks the @mcp.tool() decorator, which may mean it is not registered as an MCP tool despite the goal mentioning it. Checking other tools in the file shows they have the decorator.
    async def get_polymarket_odds(event_id: str) -> str:
        """
        Get current odds for a specific Polymarket event.
        
        Args:
            event_id: The Polymarket event ID
        
        Returns:
            Current odds, volume, and price history.
        
        Price: $0.15
        """
        payload = {"eventId": event_id}
        result = await call_coinrailz_service("polymarket-odds", 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