games
Browse available prediction games for cryptocurrencies and stocks with current market information to analyze and trade short-term price movements.
Instructions
List all available prediction games (BTC, ETH, SOL, SPY, etc.) with current market info.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:150-151 (handler)Handler logic for the 'games' tool, which fetches data from '/api/games'.
case "games": return { content: [{ type: "text", text: JSON.stringify(await apiGet("/api/games"), null, 2) }] }; - src/index.ts:53-57 (registration)Registration definition for the 'games' tool.
{ name: "games", description: "List all available prediction games (BTC, ETH, SOL, SPY, etc.) with current market info.", inputSchema: { type: "object" as const, properties: {} }, },