Skip to main content
Glama
LamboPoewert

MadeOnSol — Solana memecoin intelligence

madeonsol_wallet_tracker_summary

Read-onlyIdempotent

Summarize wallet activity with swap counts and SOL volumes. Filter by time period or specific wallet address.

Instructions

Per-wallet stats: swap counts, SOL bought/sold, and last activity time across your watchlist.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
periodNoTime window for stats7d
walletNoFilter to a specific wallet address

Implementation Reference

  • The main handler for madeonsol_wallet_tracker_summary — makes a GET request to /api/v1/wallet-tracker/summary with period and optional wallet filter, returns per-wallet stats (swap counts, SOL bought/sold, last activity time). Only enabled when MADEONSOL_API_KEY auth mode is active.
    server.tool(
      "madeonsol_wallet_tracker_summary",
      "Per-wallet stats: swap counts, SOL bought/sold, and last activity time across your watchlist.",
      {
        period: z.enum(["24h", "7d", "30d"]).default("7d").describe("Time window for stats"),
        wallet: z.string().optional().describe("Filter to a specific wallet address"),
      },
      { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true },
      async ({ period, wallet }) => {
        const url = new URL(`${BASE_URL}/api/v1/wallet-tracker/summary`);
        url.searchParams.set("period", period);
        if (wallet) url.searchParams.set("wallet", wallet);
        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 for madeonsol_wallet_tracker_summary using Zod: accepts period (24h/7d/30d, default 7d) and optional wallet filter.
    {
      period: z.enum(["24h", "7d", "30d"]).default("7d").describe("Time window for stats"),
      wallet: z.string().optional().describe("Filter to a specific wallet address"),
    },
  • src/index.ts:423-439 (registration)
    Registration of the tool via server.tool() inside registerTools(). Guarded by hasRestAuth (authMode === 'madeonsol'), so only available when MADEONSOL_API_KEY is set.
    server.tool(
      "madeonsol_wallet_tracker_summary",
      "Per-wallet stats: swap counts, SOL bought/sold, and last activity time across your watchlist.",
      {
        period: z.enum(["24h", "7d", "30d"]).default("7d").describe("Time window for stats"),
        wallet: z.string().optional().describe("Filter to a specific wallet address"),
      },
      { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true },
      async ({ period, wallet }) => {
        const url = new URL(`${BASE_URL}/api/v1/wallet-tracker/summary`);
        url.searchParams.set("period", period);
        if (wallet) url.searchParams.set("wallet", wallet);
        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 }] };
      }
    );
Behavior3/5

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

Annotations already declare readOnlyHint=true, destructiveHint=false, idempotentHint=true. Description adds that it works across the user's watchlist, but doesn't disclose behavior like empty watchlist handling or rate limits. Adequate given 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?

Single sentence, front-loaded with key information, no wasted words. Perfectly concise.

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?

For a simple tool with two optional params and no output schema, the description lists the output metrics (swap counts, SOL amounts, last activity). Could mention default period or that wallet filters to one wallet, but overall adequate.

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% and both parameters are described in the schema (period and wallet). Description does not add significant new meaning beyond the schema, but the phrase 'across your watchlist' clarifies scope. Baseline 3 applies.

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?

Clearly states verb 'provides per-wallet stats' and lists specific metrics (swap counts, SOL bought/sold, last activity time). Distinguishes from siblings like madeonsol_wallet_tracker_trades which gives detailed trade logs.

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?

No explicit when-to-use or alternatives mentioned. But the name and description imply it's for aggregated stats over a period, while siblings like 'trades' are for detailed transactions. Lacks clear exclusion guidance.

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