botindex_zora_attention_momentum
Track accelerating Zora trends to identify emerging attention markets and early signals for blockchain opportunities.
Instructions
Attention momentum — which Zora trends are accelerating. Early signal for emerging attention markets. $0.03
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (default 20) |
Implementation Reference
- src/index.ts:213-229 (handler)Tools are dynamically registered at runtime by fetching a catalog from the backend. The handler uses the path provided by the catalog to fetch data from the BotIndex API. The tool 'botindex_zora_attention_momentum' is registered here if it exists in the catalog.
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) }] }; }, );