Skip to main content
Glama
LamboPoewert

MadeOnSol — Solana memecoin intelligence

madeonsol_deployer_trajectory

Read-onlyIdempotent

Analyze a Pump.fun deployer's performance history including streaks, rolling bond rate, improvement trend, and deployment cadence. Input a wallet address to view analytics.

Instructions

Deployer skill curve — streaks, rolling bond rate, improvement trend, and deployment cadence for a Pump.fun deployer.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
walletYesDeployer wallet address (base58)

Implementation Reference

  • The handler function for madeonsol_deployer_trajectory. It takes a wallet parameter, checks auth mode (requires MADEONSOL_API_KEY), and calls the API endpoint /api/v1/deployer-hunter/{wallet}/trajectory. Returns deployer skill curve data including streaks, rolling bond rate, improvement trend, and deployment cadence.
      async ({ wallet }) => {
        if (authMode === "madeonsol") {
          const headers: Record<string, string> = { ...apiKeyHeaders() };
          const res = await fetch(`${BASE_URL}/api/v1/deployer-hunter/${wallet}/trajectory`, { 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: "Deployer trajectory requires MADEONSOL_API_KEY (msk_, Pro/Ultra) — get one at madeonsol.com/pricing." }] };
      }
    );
  • Input schema for madeonsol_deployer_trajectory: requires a single 'wallet' parameter of type string (base58 deployer wallet address).
    {
      wallet: z.string().describe("Deployer wallet address (base58)"),
    },
  • src/index.ts:218-234 (registration)
    Registration of the madeonsol_deployer_trajectory tool via server.tool() within the registerTools function. The tool description is 'Deployer skill curve — streaks, rolling bond rate, improvement trend, and deployment cadence for a Pump.fun deployer.'
    server.tool(
      "madeonsol_deployer_trajectory",
      "Deployer skill curve — streaks, rolling bond rate, improvement trend, and deployment cadence for a Pump.fun deployer.",
      {
        wallet: z.string().describe("Deployer wallet address (base58)"),
      },
      readOnlyAnnotations,
      async ({ wallet }) => {
        if (authMode === "madeonsol") {
          const headers: Record<string, string> = { ...apiKeyHeaders() };
          const res = await fetch(`${BASE_URL}/api/v1/deployer-hunter/${wallet}/trajectory`, { 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: "Deployer trajectory requires MADEONSOL_API_KEY (msk_, Pro/Ultra) — get one at madeonsol.com/pricing." }] };
      }
    );
  • src/index.ts:1033-1033 (registration)
    Secondary registration/listing in the server card metadata for Smithery discovery. Lists the tool description as 'Deployer skill curve — streaks, trend. Pro/Ultra.'
    { name: "madeonsol_deployer_trajectory", description: "Deployer skill curve — streaks, trend. Pro/Ultra." },
Behavior4/5

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

Annotations already indicate read-only, idempotent, non-destructive behavior. Description adds specifics about the returned metrics (streaks, bond rate, trend, cadence) and platform (Pump.fun), providing behavioral context beyond 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?

Single, clear sentence of 20 words. No fluff, front-loaded with the purpose. Very 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 1-param tool with no output schema, the description lists key returned metrics adequately. Missing details like whether data is historical or current, but overall sufficient.

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% with parameter description. The tool description does not add extra information about the wallet parameter, so 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?

The description clearly states the tool retrieves a deployer's skill curve including specific metrics (streaks, rolling bond rate, improvement trend, deployment cadence) for a Pump.fun deployer. It distinguishes it from siblings like madeonsol_deployer_alerts which handles alerts.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this vs. other deployer or analytics tools. Does not mention prerequisites or context for use.

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