botindex_doppler_intel
Analyze Doppler token launches with AI-powered quality scores, rug probability assessments, and creator analysis to evaluate blockchain project risks.
Instructions
AI-powered Doppler launch intelligence. Quality scores, rug probability, creator analysis. $0.05
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:210-230 (registration)The tool "botindex_doppler_intel" is not explicitly defined in the code. It is dynamically registered at runtime by fetching a catalog from the server and iterating through the returned tool definitions. The handler logic for all such dynamic tools is defined within this loop.
// Dynamically register all tools for (const tool of tools) { const zodSchema = buildZodSchema(tool.params); 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) }] }; }, ); }