botindex_zora_trending_coins
Identify trending Zora attention market coins by analyzing volume velocity data to discover active market movements.
Instructions
Trending Zora attention market coins by volume velocity. $0.03
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (default 20) |
Implementation Reference
- src/index.ts:213-228 (handler)The tool 'botindex_zora_trending_coins' is dynamically registered at runtime by fetching a tool catalog from the remote API. This handler is the generic implementation that processes all dynamically registered tools, including 'botindex_zora_trending_coins', by passing the tool-specific path and parameters to the 'fetchBotindex' helper.
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) }] }; },