botindex_solana_launches
Track Metaplex Genesis token launches on Solana mainnet to discover and validate new token data with reduced hallucination risk.
Instructions
All tracked Metaplex Genesis token launches on Solana mainnet. $0.02
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:213-229 (handler)The tool 'botindex_solana_launches' is dynamically registered at runtime by fetching a catalog from a remote server. The handler iterates through the remote tools and registers them using server.tool. The implementation of all dynamic tools, including 'botindex_solana_launches', is defined within this dynamic block.
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) }] }; }, );