Skip to main content
Glama
LamboPoewert

MadeOnSol — Solana memecoin intelligence

madeonsol_wallet_tracker_watchlist

Read-onlyIdempotent

List your tracked wallets with labels and display remaining watchlist capacity for BASIC, PRO, and ULTRA tiers.

Instructions

List your tracked wallets with labels and remaining watchlist capacity. BASIC=10, PRO=50, ULTRA=100.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • src/index.ts:361-369 (registration)
    Tool registration via server.tool() call — defines the tool name 'madeonsol_wallet_tracker_watchlist', description, empty schema (no params), read-only annotations, and the handler that calls walletTrackerRequest with GET /wallet-tracker/watchlist.
    server.tool(
      "madeonsol_wallet_tracker_watchlist",
      "List your tracked wallets with labels and remaining watchlist capacity. BASIC=10, PRO=50, ULTRA=100.",
      {},
      { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true },
      async () => ({
        content: [{ type: "text" as const, text: await walletTrackerRequest("GET", "/wallet-tracker/watchlist") }],
      })
    );
  • Handler function — async arrow that makes a GET request to /wallet-tracker/watchlist via the walletTrackerRequest helper, returning the watchlist data as text content.
      async () => ({
        content: [{ type: "text" as const, text: await walletTrackerRequest("GET", "/wallet-tracker/watchlist") }],
      })
    );
  • Schema — empty object literal for no input parameters (the watchlist tool takes no arguments).
    "madeonsol_wallet_tracker_watchlist",
    "List your tracked wallets with labels and remaining watchlist capacity. BASIC=10, PRO=50, ULTRA=100.",
    {},
  • Helper function walletTrackerRequest — a generic REST request helper scoped to wallet tracker tools. Makes authenticated fetch requests to the MadeOnSol API /api/v1 endpoints with method, path, and optional body.
    async function walletTrackerRequest(method: string, path: string, body?: unknown): Promise<string> {
      const headers: Record<string, string> = { "Content-Type": "application/json", ...apiKeyHeaders() };
      const res = await fetch(`${BASE_URL}/api/v1${path}`, {
        method,
        headers,
        ...(body ? { body: JSON.stringify(body) } : {}),
      });
      if (!res.ok) {
        const text = await res.text().catch(() => "");
        return `Error ${res.status}: ${text}`;
      }
      return JSON.stringify(await res.json(), null, 2);
    }
Behavior3/5

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

Annotations already declare the tool as read-only, non-destructive, idempotent, and open-world. The description adds no behavioral information beyond what annotations provide (e.g., no details on pagination or response format). It does not contradict 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 a single sentence with 13 words, no fluff. It efficiently conveys the purpose and key information (labels, capacity). Front-loaded with the action and resource.

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 zero parameters, no output schema, and simple purpose, the description sufficiently covers what the tool returns (list of wallets with labels and capacity). It could detail the response format more, but for a simple list tool, it is adequate.

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

Parameters4/5

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

There are zero parameters, so schema coverage is 100%. The description does not need to add parameter info. Per guidelines, baseline is 4 for no parameters.

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 the tool as listing tracked wallets with labels and remaining capacity. It uses a specific verb ('List') and resource ('tracked wallets'), and the mention of capacity limits differentiates it from other wallet tracker tools like add, remove, or trades.

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 implies the tool is for viewing the watchlist and provides capacity limits, which gives context for when to use it. However, it does not explicitly state when not to use it or mention alternatives, leaving some gap for agents to infer usage.

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