botindex_doppler_launches
Retrieve recent token launches on Base using the Doppler liquidity protocol, including new creator coins at $0.01 pricing.
Instructions
Recent Doppler token launches on Base. New creator coins via Doppler liquidity protocol. $0.01
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (default 10) |
Implementation Reference
- src/index.ts:213-229 (handler)The tool 'botindex_doppler_launches' is registered dynamically at runtime by fetching a catalog from an external URL and iterating through the returned tool definitions. The handler logic for all such dynamic tools, including 'botindex_doppler_launches', is defined here, which calls the fetchBotindex function to query the API.
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) }] }; }, );