Skip to main content
Glama
LamboPoewert

MadeOnSol — Solana memecoin intelligence

madeonsol_alpha_leaderboard

Read-onlyIdempotent

Score and rank top profitable early-buyer wallets on Solana from 47,000+ records, with filters for time period, minimum tokens, and bot exclusion.

Instructions

Top statistically profitable early-buyer wallets, scored from 47,000+ early-buyer records. BASIC=25 (truncated), PRO=100, ULTRA=500 + bot signals.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
periodNoTime window30d
min_tokensNoMinimum tokens traded by wallet (1-20)
sortNoSort axiswin_rate
exclude_botsNoExclude wallets flagged as bots

Implementation Reference

  • src/index.ts:582-600 (registration)
    Tool registered with server.tool() under the name 'madeonsol_alpha_leaderboard', within the auth-restricted block (requires MADEONSOL_API_KEY).
    server.tool(
      "madeonsol_alpha_leaderboard",
      "Top statistically profitable early-buyer wallets, scored from 47,000+ early-buyer records. BASIC=25 (truncated), PRO=100, ULTRA=500 + bot signals.",
      {
        period: z.enum(["7d", "30d", "all"]).default("30d").describe("Time window"),
        min_tokens: z.number().min(1).max(20).default(5).describe("Minimum tokens traded by wallet (1-20)"),
        sort: z.enum(["win_rate", "pnl", "roi"]).default("win_rate").describe("Sort axis"),
        exclude_bots: z.boolean().default(true).describe("Exclude wallets flagged as bots"),
      },
      { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true },
      async ({ period, min_tokens, sort, exclude_bots }) => {
        const params: Record<string, string | number> = { period, min_tokens, sort, exclude_bots: exclude_bots ? "true" : "false" };
        const url = new URL(`${BASE_URL}/api/v1/alpha/leaderboard`);
        for (const [k, v] of Object.entries(params)) url.searchParams.set(k, String(v));
        const res = await fetch(url.toString(), { headers: { "Content-Type": "application/json", ...apiKeyHeaders() } });
        const text = res.ok ? JSON.stringify(await res.json(), null, 2) : `Error ${res.status}: ${await res.text().catch(() => "")}`;
        return { content: [{ type: "text" as const, text }] };
      }
    );
  • Input schema: period (7d/30d/all, default 30d), min_tokens (1-20, default 5), sort (win_rate/pnl/roi, default win_rate), exclude_bots (boolean, default true).
    {
      period: z.enum(["7d", "30d", "all"]).default("30d").describe("Time window"),
      min_tokens: z.number().min(1).max(20).default(5).describe("Minimum tokens traded by wallet (1-20)"),
      sort: z.enum(["win_rate", "pnl", "roi"]).default("win_rate").describe("Sort axis"),
      exclude_bots: z.boolean().default(true).describe("Exclude wallets flagged as bots"),
    },
    { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true },
  • Handler function: builds query params, fetches GET /api/v1/alpha/leaderboard with API key auth, returns JSON response.
    async ({ period, min_tokens, sort, exclude_bots }) => {
      const params: Record<string, string | number> = { period, min_tokens, sort, exclude_bots: exclude_bots ? "true" : "false" };
      const url = new URL(`${BASE_URL}/api/v1/alpha/leaderboard`);
      for (const [k, v] of Object.entries(params)) url.searchParams.set(k, String(v));
      const res = await fetch(url.toString(), { headers: { "Content-Type": "application/json", ...apiKeyHeaders() } });
      const text = res.ok ? JSON.stringify(await res.json(), null, 2) : `Error ${res.status}: ${await res.text().catch(() => "")}`;
      return { content: [{ type: "text" as const, text }] };
    }
  • dist/index.js:427-440 (registration)
    Compiled JS registration of the tool with identical schema and handler logic.
    server.tool("madeonsol_alpha_leaderboard", "Top statistically profitable early-buyer wallets, scored from 47,000+ early-buyer records. BASIC=25 (truncated), PRO=100, ULTRA=500 + bot signals.", {
        period: z.enum(["7d", "30d", "all"]).default("30d").describe("Time window"),
        min_tokens: z.number().min(1).max(20).default(5).describe("Minimum tokens traded by wallet (1-20)"),
        sort: z.enum(["win_rate", "pnl", "roi"]).default("win_rate").describe("Sort axis"),
        exclude_bots: z.boolean().default(true).describe("Exclude wallets flagged as bots"),
    }, { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true }, async ({ period, min_tokens, sort, exclude_bots }) => {
        const params = { period, min_tokens, sort, exclude_bots: exclude_bots ? "true" : "false" };
        const url = new URL(`${BASE_URL}/api/v1/alpha/leaderboard`);
        for (const [k, v] of Object.entries(params))
            url.searchParams.set(k, String(v));
        const res = await fetch(url.toString(), { headers: { "Content-Type": "application/json", ...apiKeyHeaders() } });
        const text = res.ok ? JSON.stringify(await res.json(), null, 2) : `Error ${res.status}: ${await res.text().catch(() => "")}`;
        return { content: [{ type: "text", text }] };
    });
  • dist/index.js:712-712 (registration)
    Tool listed in the Smithery server card (tools array) for HTTP discovery.
    { name: "madeonsol_alpha_leaderboard", description: "Top profitable early-buyer wallets — 47,000+ scored. BASIC=25, PRO=100, ULTRA=500." },
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already denote a safe read-only operation (readOnlyHint=true, destructiveHint=false). The description adds behavioral context about data size (47,000+ records) and tier-based truncation, which helps set expectations beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the core purpose, and every word adds value. No unnecessary filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

While the description provides data source and tier limits, there is no output schema and the description omits what fields each wallet entry includes. Given the tool has 4 parameters, the description could be more complete about return structure.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 100% schema description coverage, the input schema fully documents all four parameters. The description does not add any additional parameter semantics, so baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it returns 'Top statistically profitable early-buyer wallets' and mentions scoring from a large dataset, effectively conveying the tool's purpose as a leaderboard. It distinguishes itself from sibling tools like madeonsol_kol_leaderboard by specifying 'early-buyer' focus.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description mentions tiers (BASIC, PRO, ULTRA) and truncation, implying usage limits but does not explicitly provide when-to-use or when-not-to-use guidance. No alternatives are mentioned, leaving the agent to infer context from the tool name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/LamboPoewert/mcp-server-madeonsol'

If you have feedback or need assistance with the MCP directory API, please join our Discord server