Skip to main content
Glama
LamboPoewert

MadeOnSol — Solana memecoin intelligence

madeonsol_first_touch_subscriptions_get

Read-onlyIdempotent

Fetch a specific first-touch subscription using its UUID, available for ULTRA tier.

Instructions

Get one first-touch subscription by id. ULTRA only.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesSubscription UUID

Implementation Reference

  • src/index.ts:915-923 (registration)
    Registration of the tool 'madeonsol_first_touch_subscriptions_get' via server.tool(). Defines schema (id: UUID string), annotations (readOnlyHint), and handler that calls restQuery('GET', '/kol/first-touches/subscriptions/${id}').
    server.tool(
      "madeonsol_first_touch_subscriptions_get",
      "Get one first-touch subscription by id. ULTRA only.",
      { id: z.string().describe("Subscription UUID") },
      { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true },
      async ({ id }) => ({
        content: [{ type: "text" as const, text: await restQuery("GET", `/kol/first-touches/subscriptions/${encodeURIComponent(id)}`) }],
      })
    );
  • Handler function (async arrow) that takes { id } and calls restQuery('GET', ...) to fetch one first-touch subscription by UUID. Returns the JSON text response wrapped in content array.
      async ({ id }) => ({
        content: [{ type: "text" as const, text: await restQuery("GET", `/kol/first-touches/subscriptions/${encodeURIComponent(id)}`) }],
      })
    );
  • Input schema: single required parameter 'id' of type string (Subscription UUID). Described as 'Subscription UUID'.
    "Get one first-touch subscription by id. ULTRA only.",
    { id: z.string().describe("Subscription UUID") },
    { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true },
  • The restQuery helper function used by the handler. Sends authenticated HTTP requests (GET/POST/PATCH/DELETE) to the MadeOnSol API and returns JSON string or error message. Requires MADEONSOL_API_KEY.
    async function restQuery(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 already declare readOnlyHint=true, destructiveHint=false, idempotentHint=true, openWorldHint=true. The description adds the plan restriction 'ULTRA only', which is a behavioral trait not covered by annotations. However, it doesn't disclose other behaviors like error handling or response format.

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 extremely concise (6 words), front-loaded with the action, and contains no unnecessary information. Every word serves a purpose.

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

Completeness3/5

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

For a simple get operation with one parameter, the description covers the core purpose and plan restriction. However, there is no output schema or mention of what the response contains, leaving some completeness gap. The context is adequate but not fully rich.

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 the id parameter described as 'Subscription UUID'. The description does not add further meaning beyond the schema. Baseline 3 is appropriate.

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 'Get one first-touch subscription by id', specifying the action, resource, and identifier. It also includes 'ULTRA only', which hints at a limitation and distinguishes it from sibling tools like list, create, delete, etc.

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 gives a clear usage context ('ULTRA only') indicating when it applies, but does not explicitly state when not to use it nor provide alternatives (e.g., list vs get). The context is helpful but lacks 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