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
| Name | Required | Description | Default |
|---|---|---|---|
| event_id | Yes |
Implementation Reference
- coinrailz_mcp/__init__.py:826-840 (handler)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)