botindex_sports_lines
Track sports betting line movements and identify sharp money action to analyze professional bettor market impact.
Instructions
Line movements with sharp money action flags. Identifies professional bettor market impact. $0.02
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:213-229 (handler)The tool "botindex_sports_lines" is dynamically registered here along with other tools fetched from the catalog URL. The handler uses `fetchBotindex` to execute the tool logic based on the tool's defined path and parameters.
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) }] }; }, );