Skip to main content
Glama
LamboPoewert

MadeOnSol — Solana memecoin intelligence

madeonsol_kol_timing

Read-onlyIdempotent

Analyzes a KOL's entry and exit timing, showing hold duration, exit speed, and activity patterns over 7 or 30 days.

Instructions

KOL entry/exit timing profile — hold duration, exit speed, and activity patterns for a specific KOL.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
walletYesKOL wallet address (base58)
periodNoTime period: 7d or 30d30d

Implementation Reference

  • The handler function for madeonsol_kol_timing. It accepts 'wallet' (base58 address) and 'period' (7d or 30d) parameters. When using a MadeOnSol API key, it fetches from /api/v1/kol/{wallet}/timing?period={period}. Otherwise returns an error message instructing the user to get an API key.
    async ({ wallet, period }) => {
      if (authMode === "madeonsol") {
        const headers: Record<string, string> = { ...apiKeyHeaders() };
        const res = await fetch(`${BASE_URL}/api/v1/kol/${wallet}/timing?period=${period}`, { headers });
        if (!res.ok) { const body = await res.text().catch(() => ""); return { content: [{ type: "text" as const, text: `Error ${res.status}: ${body}` }] }; }
        return { content: [{ type: "text" as const, text: JSON.stringify(await res.json(), null, 2) }] };
      }
      return { content: [{ type: "text" as const, text: "KOL timing requires MADEONSOL_API_KEY (msk_) — get one free at madeonsol.com/pricing." }] };
    }
  • Zod schema for madeonsol_kol_timing input: wallet (base58 string, required) and period (enum '7d' or '30d', defaults to '30d').
    {
      wallet: z.string().describe("KOL wallet address (base58)"),
      period: z.enum(["7d", "30d"]).default("30d").describe("Time period: 7d or 30d"),
    },
  • src/index.ts:199-216 (registration)
    Registration of the 'madeonsol_kol_timing' tool on the McpServer via server.tool(), within the registerTools() function.
    server.tool(
      "madeonsol_kol_timing",
      "KOL entry/exit timing profile — hold duration, exit speed, and activity patterns for a specific KOL.",
      {
        wallet: z.string().describe("KOL wallet address (base58)"),
        period: z.enum(["7d", "30d"]).default("30d").describe("Time period: 7d or 30d"),
      },
      readOnlyAnnotations,
      async ({ wallet, period }) => {
        if (authMode === "madeonsol") {
          const headers: Record<string, string> = { ...apiKeyHeaders() };
          const res = await fetch(`${BASE_URL}/api/v1/kol/${wallet}/timing?period=${period}`, { headers });
          if (!res.ok) { const body = await res.text().catch(() => ""); return { content: [{ type: "text" as const, text: `Error ${res.status}: ${body}` }] }; }
          return { content: [{ type: "text" as const, text: JSON.stringify(await res.json(), null, 2) }] };
        }
        return { content: [{ type: "text" as const, text: "KOL timing requires MADEONSOL_API_KEY (msk_) — get one free at madeonsol.com/pricing." }] };
      }
    );
Behavior4/5

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

Annotations already declare readOnlyHint, destructiveHint, idempotentHint, openWorldHint. The description adds detail on the returned data (hold duration, exit speed, activity patterns), enriching beyond annotations. No contradictions or extra behavioral notes on edge cases.

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 clear sentence that front-loads the purpose with no extraneous words. Every part adds value.

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

Completeness5/5

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

Given the tool's simplicity (2 params, no output schema) and rich annotations, the description adequately covers what the tool returns and its scope. It is complete for an agent to understand the tool's function without needing further details.

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 (wallet, period) are well-documented in the schema with enums and descriptions. The description adds no new parameter-level meaning beyond the schema, meeting the baseline for high coverage.

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 the tool retrieves entry/exit timing profile including hold duration, exit speed, and activity patterns for a specific KOL. It uses specific verbs and resources, and distinguishes from sibling tools by focusing on timing rather than other aspects.

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 a specific KOL (requires wallet address) but provides no guidance on when to choose this tool over alternatives like madeonsol_kol_pnl or madeonsol_kol_feed. Given many siblings, explicit when-to-use advice would improve clarity.

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