botindex_zora_creator_scores
Retrieve creator performance scores on Zora to identify top-performing creators based on attention metrics. Access verified on-chain data to analyze creator activity.
Instructions
Creator performance scores on Zora. Top-performing creators by attention metrics. $0.03
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (default 20) |
Implementation Reference
- src/index.ts:213-229 (handler)The tool 'botindex_zora_creator_scores' is dynamically registered at runtime by fetching a tool catalog and registering each entry with this handler. The handler constructs API parameters and executes the call using fetchBotindex.
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) }] }; }, );