Skip to main content
Glama

CountLink

Create a countdown badge for a README, forum post or similar

create_badge
Read-only

Create a countdown badge — a small image, not an — for places embed_on_website's iframe cannot go: a GitHub README, a forum signature, a Notion page, anywhere only plain Markdown or a bare is allowed. Shows coarse time remaining (e.g. "3d 04h left", not a live ticking clock — most places that embed images fetch and cache them server-side, so a promise of live ticking would be false) and links through to the real, precise, live countdown. Returns both a Markdown snippet and an HTML snippet; use whichever the destination accepts. Always returns the image wrapped in a link to the live countdown — never ask for or produce just the bare image, since the link is what makes this a genuine attribution rather than an untethered picture.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
labelNoOptional short name shown on the badge, e.g. "Launch" or "CFP closes".
durationYesHow long the timer runs. Accepts "25m", "1h30m", "90s", "5:00", "1:30:00", or a plain number read as minutes ("45"). Maximum 99h59m59s.
badge_styleNoVisual style: "board" (default, dark), "minimal" (no background — blends into any page) or "light".

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.6/5.0
Behavior5/5

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

Beyond the annotations (readOnlyHint=true, destructiveHint=false), the description reveals important behavior: the badge shows coarse time rather than a live clock, the reason is server-side caching, the returned value is both a Markdown and HTML snippet, and the image is always wrapped in a link. This transparently sets expectations and prevents misuse. There is no contradiction with the annotations: returning generated snippets is consistent with a read-only hint.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is longer than average, but it is dense and every sentence earns its place: it explains the core distinction from an iframe, the coarse-time behavior, the caching rationale, the return format, and the mandatory link. It could be trimmed slightly, but the extra length is justified by the behavioral nuance and the prevention of incorrect use.

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 there is no output schema, the description does a good job of explaining what the agent will get (Markdown and HTML snippets), how to choose between them, what the badge will and will not do (coarse, not ticking), and the non-negotiable link wrapping. The only minor gap is not explaining whether the countdown starts at call time, but the schema's duration semantics make that reasonably inferrable. The description is complete enough for correct selection and invocation.

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?

Input schema coverage is 100%, and each parameter already has a clear description. The tool description does not add any new per-parameter syntax or constraints, so the baseline of 3 is appropriate. It does reinforce the output semantics ('coarse time remaining') but not anything about the duration format, label, or badge_style beyond the schema.

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 uses a specific verb-object pair ('create a countdown badge') and immediately clarifies what it is not ('a small image, not an <iframe>'). It names the resource, the output form (Markdown/HTML snippets), and the intended use context (GitHub README, forum signature, Notion page), making it easy to distinguish from sibling and neighboring tools.

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

Usage Guidelines5/5

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

It explicitly says when to use this tool ('for places embed_on_website's iframe cannot go') and even names that alternative. It also gives firm behavioral instructions: 'Always returns the image wrapped in a link to the live countdown — never ask for or produce just the bare image.' It warns against a false expectation (live ticking) and tells the agent to choose whichever snippet the destination accepts. This is strong routing guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.6/5.0
Disambiguation5/5

Each tool targets a distinct artifact: agendas, timer links, badge images, and link inspection. The descriptions include explicit cross-references (e.g. "For a single countdown use create_timer instead"), so an agent can reliably pick the right tool.

Naming Consistency5/5

All tool names follow the same snake_case verb_noun pattern: create_agenda, create_badge, create_timer, and describe_timer_link. There are no mixed casing styles or inconsistent verb conventions.

Tool Count5/5

Four tools is a well-scoped set for this server: one creation tool per core artifact type plus a link inspector. Each tool has a clear purpose and none feel redundant.

Completeness4/5

The core workflows—creating shared countdowns, agendas, and badges, and inspecting CountLink URLs—are covered. Minor gaps exist: there is no explicit iframe-embed tool even though create_badge references embed_on_website's iframe, and describe_timer_link doesn't mention agenda links, but agents can often work around these with the returned links and snippets.