Skip to main content
Glama
LamboPoewert

MadeOnSol — Solana memecoin intelligence

madeonsol_wallet_tracker_add

Add a Solana wallet to your watchlist for monitoring. Returns a 409 error if already tracked or limit reached.

Instructions

Add a Solana wallet to your watchlist. Returns 409 if already tracked or limit reached.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
wallet_addressYesSolana wallet address (base58) to track
labelNoOptional human-readable label for this wallet

Implementation Reference

  • src/index.ts:371-384 (registration)
    Registration of the 'madeonsol_wallet_tracker_add' tool via server.tool() with input schema for wallet_address (required) and label (optional). The handler calls walletTrackerRequest with POST to /wallet-tracker/watchlist.
    server.tool(
      "madeonsol_wallet_tracker_add",
      "Add a Solana wallet to your watchlist. Returns 409 if already tracked or limit reached.",
      {
        wallet_address: z.string().describe("Solana wallet address (base58) to track"),
        label: z.string().optional().describe("Optional human-readable label for this wallet"),
      },
      { readOnlyHint: false, destructiveHint: false, idempotentHint: false, openWorldHint: true },
      async ({ wallet_address, label }) => {
        const body: Record<string, unknown> = { wallet_address };
        if (label) body.label = label;
        return { content: [{ type: "text" as const, text: await walletTrackerRequest("POST", "/wallet-tracker/watchlist", body) }] };
      }
    );
  • Input schema definition for the tool using Zod: wallet_address (required string) and label (optional string).
    {
      wallet_address: z.string().describe("Solana wallet address (base58) to track"),
      label: z.string().optional().describe("Optional human-readable label for this wallet"),
    },
  • Handler function that constructs the POST request body with wallet_address and optional label, then delegates to walletTrackerRequest helper to make the API call.
    async ({ wallet_address, label }) => {
      const body: Record<string, unknown> = { wallet_address };
      if (label) body.label = label;
      return { content: [{ type: "text" as const, text: await walletTrackerRequest("POST", "/wallet-tracker/watchlist", body) }] };
    }
  • Helper function that performs the actual HTTP request to the MadeOnSol API with JSON content-type and Bearer auth headers. Used by all wallet tracker tools including 'madeonsol_wallet_tracker_add'.
    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);
    }
Behavior4/5

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

Annotations show it's not read-only and not destructive; description adds value by mentioning that a 409 error occurs if already tracked or limit reached, which is useful for the agent.

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?

Two sentences, no wasted words, front-loaded with the core action. Highly concise and 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?

For a simple add operation, the description covers the action and a key error condition. Could potentially mention return value, but lacking output schema makes this acceptable.

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 any extra meaning beyond what the schema already provides for the two 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 states 'Add a Solana wallet to your watchlist' with a specific verb and resource, differentiating it from sibling tools like remove, summary, and trades.

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 (add wallets), but does not explicitly discuss when to use this tool versus alternatives like watchlist, remove, etc., or when not to use it.

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