Skip to main content
Glama
LamboPoewert

MadeOnSol — Solana memecoin intelligence

madeonsol_tokens_list

Read-onlyIdempotent

Browse filtered, sortable Solana token directory by market-cap, liquidity, activity, DEX, and authority flags. Includes computed 1h volume, MEV-share, and MC-change deltas.

Instructions

Filtered, sortable token directory. Browse all tracked Solana tokens by market-cap band, liquidity floor, recent-activity window, primary DEX, authority/safety flags, and computed 1h volume / MEV-share / MC-change deltas. Default min_liq=2000 skips phantom-MC dust (low-liquidity pools producing absurd VWAP×supply products) — pass min_liq=0 to opt out. Computed filters (min_volume_1h_usd, max_mev_share_pct, mc_change_1h_min_pct, mc_change_1h_max_pct) over-fetch and post-filter — pagination.post_filtered=true on the response means page size may be < limit. PRO+ only.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
min_mcNoMinimum market cap in USD
max_mcNoMaximum market cap in USD
min_liqNoMinimum quote-side liquidity in USD (default 2000 — pass 0 to opt out of phantom-MC filter)
active_hNoOnly tokens with a trade in the last N hours
primary_dexNoFilter by primary DEX
authority_revokedNoOnly tokens whose mint+freeze authority is revoked
exclude_token2022NoExclude Token-2022 mints (transfer-fee / hook risk)
min_lp_burnt_pctNoMinimum % of LP supply burned (0-100)
min_volume_1h_usdNoMinimum trailing 1h volume in USD (post-filter — may shrink page size)
max_mev_share_pctNoMaximum MEV-share % of 1h volume (post-filter)
mc_change_1h_min_pctNoMinimum 1h MC change % (post-filter; negative allowed)
mc_change_1h_max_pctNoMaximum 1h MC change % (post-filter)
sortNoSort axis (default mc_desc)
limitNoPage size (max 100)
offsetNoPagination offset

Implementation Reference

  • Tool handler: fetches the filtered token directory from /api/v1/tokens, passing all query parameters (min_mc, max_mc, min_liq, active_h, primary_dex, authority_revoked, etc.) as URL search params.
    async (args) => {
      const url = new URL(`${BASE_URL}/api/v1/tokens`);
      for (const [k, v] of Object.entries(args)) {
        if (v !== undefined) url.searchParams.set(k, typeof v === "boolean" ? (v ? "true" : "false") : 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 }] };
    }
  • Zod schema defining all input parameters for the madeonsol_tokens_list tool: market cap range, liquidity floor, activity window, DEX filter, authority/safety flags, computed filters, sort, and pagination.
    {
      min_mc: z.number().optional().describe("Minimum market cap in USD"),
      max_mc: z.number().optional().describe("Maximum market cap in USD"),
      min_liq: z.number().optional().describe("Minimum quote-side liquidity in USD (default 2000 — pass 0 to opt out of phantom-MC filter)"),
      active_h: z.number().optional().describe("Only tokens with a trade in the last N hours"),
      primary_dex: z.enum(["pumpfun", "pumpswap", "raydium", "meteora", "orca", "raydium_clmm"]).optional().describe("Filter by primary DEX"),
      authority_revoked: z.boolean().optional().describe("Only tokens whose mint+freeze authority is revoked"),
      exclude_token2022: z.boolean().optional().describe("Exclude Token-2022 mints (transfer-fee / hook risk)"),
      min_lp_burnt_pct: z.number().optional().describe("Minimum % of LP supply burned (0-100)"),
      min_volume_1h_usd: z.number().optional().describe("Minimum trailing 1h volume in USD (post-filter — may shrink page size)"),
      max_mev_share_pct: z.number().optional().describe("Maximum MEV-share % of 1h volume (post-filter)"),
      mc_change_1h_min_pct: z.number().optional().describe("Minimum 1h MC change % (post-filter; negative allowed)"),
      mc_change_1h_max_pct: z.number().optional().describe("Maximum 1h MC change % (post-filter)"),
      sort: z.enum(["mc_desc", "mc_asc", "last_trade_desc", "liquidity_desc", "cumulative_volume_desc"]).optional().describe("Sort axis (default mc_desc)"),
      limit: z.number().min(1).max(100).optional().describe("Page size (max 100)"),
      offset: z.number().min(0).optional().describe("Pagination offset"),
    },
  • src/index.ts:548-578 (registration)
    Registration of the madeonsol_tokens_list tool via server.tool() with its name, description, Zod schema, read-only annotations, and handler function.
    server.tool(
      "madeonsol_tokens_list",
      "Filtered, sortable token directory. Browse all tracked Solana tokens by market-cap band, liquidity floor, recent-activity window, primary DEX, authority/safety flags, and computed 1h volume / MEV-share / MC-change deltas. Default min_liq=2000 skips phantom-MC dust (low-liquidity pools producing absurd VWAP×supply products) — pass min_liq=0 to opt out. Computed filters (min_volume_1h_usd, max_mev_share_pct, mc_change_1h_min_pct, mc_change_1h_max_pct) over-fetch and post-filter — pagination.post_filtered=true on the response means page size may be < limit. PRO+ only.",
      {
        min_mc: z.number().optional().describe("Minimum market cap in USD"),
        max_mc: z.number().optional().describe("Maximum market cap in USD"),
        min_liq: z.number().optional().describe("Minimum quote-side liquidity in USD (default 2000 — pass 0 to opt out of phantom-MC filter)"),
        active_h: z.number().optional().describe("Only tokens with a trade in the last N hours"),
        primary_dex: z.enum(["pumpfun", "pumpswap", "raydium", "meteora", "orca", "raydium_clmm"]).optional().describe("Filter by primary DEX"),
        authority_revoked: z.boolean().optional().describe("Only tokens whose mint+freeze authority is revoked"),
        exclude_token2022: z.boolean().optional().describe("Exclude Token-2022 mints (transfer-fee / hook risk)"),
        min_lp_burnt_pct: z.number().optional().describe("Minimum % of LP supply burned (0-100)"),
        min_volume_1h_usd: z.number().optional().describe("Minimum trailing 1h volume in USD (post-filter — may shrink page size)"),
        max_mev_share_pct: z.number().optional().describe("Maximum MEV-share % of 1h volume (post-filter)"),
        mc_change_1h_min_pct: z.number().optional().describe("Minimum 1h MC change % (post-filter; negative allowed)"),
        mc_change_1h_max_pct: z.number().optional().describe("Maximum 1h MC change % (post-filter)"),
        sort: z.enum(["mc_desc", "mc_asc", "last_trade_desc", "liquidity_desc", "cumulative_volume_desc"]).optional().describe("Sort axis (default mc_desc)"),
        limit: z.number().min(1).max(100).optional().describe("Page size (max 100)"),
        offset: z.number().min(0).optional().describe("Pagination offset"),
      },
      { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true },
      async (args) => {
        const url = new URL(`${BASE_URL}/api/v1/tokens`);
        for (const [k, v] of Object.entries(args)) {
          if (v !== undefined) url.searchParams.set(k, typeof v === "boolean" ? (v ? "true" : "false") : 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 }] };
      }
    );
Behavior5/5

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

Annotations declare it read-only, idempotent, non-destructive, and open world. The description goes beyond by detailing the over-fetching mechanism for computed filters, that pagination.post_filtered=true indicates page size may be smaller than limit, and explains the rationale behind the min_liq default. No contradictions with annotations.

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

Conciseness4/5

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

The description is concise, starting with a clear one-line summary. It efficiently lists all filter types and behaviors in two sentences. While comprehensive, it could be slightly more structured (e.g., bullet points) but is not wasteful.

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?

With no output schema, the description could explain the full response structure. It mentions pagination behavior and computed deltas but does not specify what fields each token object contains. An agent might need to infer the common token schema from other tools. This is a moderate gap.

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

Parameters5/5

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

All 15 parameters have descriptions in the schema (100% coverage). The description adds value by explaining the default min_liq, the over-fetching behavior for computed filters, and the default sort axis. It clarifies the meaning of 'phantom-MC dust' and provides context for using filters together.

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 identifies it as a filtered, sortable token directory for Solana tokens, listing specific filters and defaults. It distinguishes from siblings like madeonsol_token_get (single token) and madeonsol_discovery (likely different criteria) by focusing on broad directory browsing with advanced filtering.

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

Usage Guidelines4/5

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

The description provides usage guidance on the default min_liq=2000 (to avoid phantom-MC dust) and explains the over-fetching and post-filtering behavior. It tells users to pass min_liq=0 to opt out. However, it does not explicitly contrast this tool with other token listing siblings like madeonsol_discovery or madeonsol_kol_hot_tokens.

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