botindex_solana_active
Retrieve currently active Metaplex Genesis launches on Solana, filtered by status, to discover and validate on-chain protocol data.
Instructions
Currently active Metaplex Genesis launches on Solana (filtered by status). $0.02
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:213-229 (handler)The 'botindex_solana_active' tool (along with others) is dynamically registered and handled here. It fetches the tool definition from a remote catalog and registers a generic handler that executes the API request via '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) }] }; }, );