botindex_polymarket_fomc
Track live Federal Reserve FOMC interest rate markets with probability and liquidity data from Polymarket to monitor monetary policy expectations.
Instructions
Polymarket FOMC tracker. Live Fed/FOMC/interest rate markets with probabilities and liquidity. FREE.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:213-229 (handler)The tool "botindex_polymarket_fomc" is dynamically registered here, as part of a set of tools fetched from the catalog endpoint. The handler implementation performs a fetch against the BotIndex API using the tool's configured path.
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) }] }; }, );