botindex_sports_props
Track player prop bet movements and market value signals with confidence scores for sports betting analysis.
Instructions
Top prop bet movements with confidence scores. Player prop market value signals. $0.02
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:213-229 (handler)The tool 'botindex_sports_props' (among others) is dynamically registered and handled by this block. The handler invokes fetchBotindex with the parameters provided.
server.tool( tool.name, tool.description, zodSchema, async (args: Record<string, any>) => { const params: Record<string, string> = {}; if (tool.params) { for (const p of tool.params) { if (args[p.name] !== undefined) { params[p.name] = String(args[p.name]); } } } const data = await fetchBotindex(tool.path, params); return { content: [{ type: 'text', text: toToolText(data) }] }; }, );