Skip to main content
Glama
LamboPoewert

MadeOnSol — Solana memecoin intelligence

madeonsol_kol_token_entry_order

Read-onlyIdempotent

Rank the first buyers of a token from tracked KOL wallets by entry time. Optionally include 7-day PnL percentiles per entry.

Instructions

Ranked KOL first-buyers for a specific token, ordered by entry timestamp. PRO+ adds percentile_pnl_7d per entry.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
mintYesToken mint address (base58)
limitNoMax ranked entries to return

Implementation Reference

  • src/index.ts:255-266 (registration)
    Registration of the madeonsol_kol_token_entry_order tool with the MCP server via server.tool()
    server.tool(
      "madeonsol_kol_token_entry_order",
      "Ranked KOL first-buyers for a specific token, ordered by entry timestamp. PRO+ adds percentile_pnl_7d per entry.",
      {
        mint: z.string().describe("Token mint address (base58)"),
        limit: z.number().min(1).max(200).default(50).describe("Max ranked entries to return"),
      },
      readOnlyAnnotations,
      async ({ mint, limit }) => ({
        content: [{ type: "text" as const, text: await query(`/api/x402/kol/tokens/${encodeURIComponent(mint)}/entry-order`, { limit }) }],
      })
    );
  • Input schema for the tool: mint (base58 token address) and limit (1-200, default 50)
    {
      mint: z.string().describe("Token mint address (base58)"),
      limit: z.number().min(1).max(200).default(50).describe("Max ranked entries to return"),
    },
  • Handler function that calls the API endpoint /api/x402/kol/tokens/{mint}/entry-order with a limit parameter and returns the ranked KOL first-buyer data
    async ({ mint, limit }) => ({
      content: [{ type: "text" as const, text: await query(`/api/x402/kol/tokens/${encodeURIComponent(mint)}/entry-order`, { limit }) }],
    })
Behavior4/5

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

Annotations already indicate safety and idempotency. The description adds value by disclosing ranking order (by entry timestamp) and the PRO+ addition of percentile_pnl_7d, which are beyond annotation coverage.

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-loading the core purpose and adding an optional feature. No extraneous content, very efficient.

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

Completeness4/5

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

Given the absence of an output schema, the description clarifies the return structure (ranked entries with entry timestamp, and optionally PnL). It is sufficiently complete for a list-based tool, though it omits details like pagination or error handling.

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?

Schema coverage is 100%, so baseline is 3. The description does not add new semantic information beyond what the schema already provides (mint and limit descriptions).

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 ranked KOL first-buyers for a specific token, ordered by entry timestamp. It distinguishes from sibling tools like kol_leaderboard or kol_feed by focusing on first-buyer ranking and entry order.

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 implies usage for retrieving KOL entry order data but does not explicitly state when to use this tool over alternatives, nor does it provide exclusions or context about PRO+ feature availability.

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