botindex_zora_intel
Analyze Zora NFT market intelligence with AI-powered risk scores, fair value estimates, creator grades, and trading signals to inform investment decisions.
Instructions
AI-powered Zora market intelligence. Risk scores, fair value estimates, creator grades, BUY/WATCH/FADE signals. $0.05
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:213-228 (handler)The tool "botindex_zora_intel" is dynamically registered at runtime by fetching a catalog from a backend API. The handler for these tools is defined within the loop that iterates over the fetched tools.
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) }] }; },