CountLink
Server Details
Shared countdown timers that stay in sync on every screen — no account, any number of viewers.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mrbrunocode/countlink
- GitHub Stars
- 0
Available Tools
4 toolscreate_agendaCreate a chained agenda of timed segmentsARead-onlyInspect
Create a CountLink agenda: an ordered sequence of named, timed segments (intro, talk, break, Q&A) that starts now and advances from one to the next on its own, on every screen that opens the link, with no server involved. Use this when someone describes a meeting, workshop, lesson or event as a sequence of parts with lengths — including when they give you a total and a list of topics and expect you to split it ("an hour, four topics"): do the split yourself, then pass the resulting segments here. By default it starts immediately; pass start_at for something scheduled ahead ("our workshop starts at 9:15 tomorrow") — the link works right away, showing a live countdown to the start rather than the first segment, and switches over on its own at the scheduled instant, in sync on every screen that opened it. Returns the shared link plus a run sheet with the wall-clock start and end of each segment, and an .ics calendar file (one event per segment) in structuredContent.ics — offer it if the person might want the agenda on their calendar. For a single countdown use create_timer instead.
| Name | Required | Description | Default |
|---|---|---|---|
| segments | Yes | The segments in running order. Each has a duration (same grammar as create_timer: "10m", "1h", "90s", "5:00", or a plain number of minutes) and an optional short label. 1–24 segments; the whole agenda must fit in 99h59m59s. | |
| start_at | No | Optional ISO-8601 instant for a scheduled start, e.g. "2026-09-08T09:15:00Z" or with a local offset like "2026-09-08T09:15:00+01:00". Omit to start immediately. A start_at already in the past is just treated as already running from that instant. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Even with readOnlyHint and destructiveHint annotations already present, the description adds meaningful behavioral detail: it starts immediately by default, advances automatically and in sync on every screen, involves no server, and shows a live countdown before a scheduled start. It also discloses the return payload including the .ics calendar file, with no contradiction to the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Although the description is a single long paragraph, every sentence carries information: core behavior, when-to-use, splitting instruction, start_at semantics, return artifacts, calendar offer, and sibling alternative. It is front-loaded with the primary purpose and contains no filler or tautology.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is sufficient on its own despite the lack of an output schema: it states what is returned (shared link, run sheet, .ics in structuredContent.ics), how to offer the calendar artifact, what happens for scheduled starts, and which sibling is appropriate for a single countdown. Nothing needed to invoke it correctly is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3; the description goes beyond the schema by explaining how to obtain the segments from a user's total-and-topics phrasing and by giving a concrete scheduled-start trigger ('our workshop starts at 9:15 tomorrow'). The actual duration grammar is already documented in the schema, so the description adds usage context rather than duplicating syntax.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description leads with a specific verb-resource pair ('Create a CountLink agenda') and defines exactly what the resource is: an ordered sequence of named, timed segments that auto-advances. It also distinguishes itself from the sibling by explicitly saying 'For a single countdown use create_timer instead.'
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It gives explicit when-to-use guidance: a meeting, workshop, lesson, or event described as parts with lengths, including the case where the user provides a total and topics and the agent must split it. It also names the alternative (create_timer) and covers the scheduled-start case with 'pass start_at for something scheduled ahead.'
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_badgeCreate a countdown badge for a README, forum post or similarARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| label | No | Optional short name shown on the badge, e.g. "Launch" or "CFP closes". | |
| duration | Yes | How long the timer runs. Accepts "25m", "1h30m", "90s", "5:00", "1:30:00", or a plain number read as minutes ("45"). Maximum 99h59m59s. | |
| badge_style | No | Visual style: "board" (default, dark), "minimal" (no background — blends into any page) or "light". |
TDQS
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.
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.
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.
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.
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.
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.
create_timerCreate a shared countdown timerARead-onlyInspect
Create a CountLink shared countdown timer and return its link. Everyone who opens the link sees the identical countdown, to the same second — no account, no sign-up, any number of viewers. Use this whenever someone wants a timer several people or several screens need to share: a classroom, an exam, a standup, a workshop, a webinar countdown, a stream overlay, or a countdown embedded on someone's own website or landing page (e.g. "10 days until launch"). By default it returns a setup link, which opens the board preloaded at the requested duration for the user to start themselves; pass start_now: true only if they want the countdown running from this moment. Whenever the result has a fixed end instant (start_now or embed_on_website), structuredContent.ics is an .ics calendar file for it — offer it if the person might want the deadline on their calendar.
| Name | Required | Description | Default |
|---|---|---|---|
| label | No | Optional name shown on the board, e.g. "Exam" or "Break". Keep it short. | |
| duration | Yes | How long the timer runs. Accepts "25m", "1h30m", "90s", "5:00", "1:30:00", or a plain number read as minutes ("45"). Maximum 99h59m59s. | |
| start_now | No | False (default) returns a setup link the user starts themselves — correct for a timer that should begin later, and for anything being written down in advance. True returns a link for a countdown already running from now, fixed to one instant so every viewer is in sync; only use it when the timer should start immediately. | |
| embed_style | No | Board style for embed_on_website: "board" (default, dark split-flap), "minimal" (plain digits) or "light". Ignored otherwise. | |
| embed_width | No | Pixel width of the embedded iframe when embed_on_website is true. 160–1600, default 400. Ignored otherwise. | |
| embed_height | No | Pixel height of the embedded iframe when embed_on_website is true. 80–900, default 160. Ignored otherwise. | |
| for_obs_overlay | No | True returns a URL to paste into OBS (or any streaming tool) as a Browser Source: a transparent background with just the digits, which starts counting as soon as the scene loads. Use it when someone wants a countdown on their stream. Do not give an overlay URL to several people to open — it starts fresh for whoever loads it; for that, call this again without the flag and share that link instead. Mutually exclusive with embed_on_website. | |
| embed_on_website | No | True returns ready-to-paste <iframe> HTML for embedding a countdown on someone's OWN website or landing page — e.g. a launch-day countdown on a marketing page. Unlike for_obs_overlay, this is a fixed instant every visitor to that page sees identically (not a per-visitor restart), and free with no watermark option — the only requirement is a small attribution line under the widget linking back to CountLink, which the returned HTML already includes. Use this whenever someone asks for a countdown to put ON their own site/page, as opposed to a link to share with other people directly. Mutually exclusive with for_obs_overlay. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations provide only a minimal safety profile (readOnlyHint=true, destructiveHint=false), so the description carries the behavioral burden and exceeds it: no acccount/no sign-up, every viewer sees the identical countdown to the same second, setup-link-vs-running-link semantics, and the conditional .ics disclosure with an offer hint. It also surfaces two non-obvious gotchas — the OBS overlay starts fresh for whoever loads it, and embeds require an attribution line — which no annotation or schema could convey. The readOnlyHint sits awkwardly beside 'Create,' but the description never misrepresents side effects: this is non-destructive link generation, not mutation of existing data, so no contridiction is flagged.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The core sentence is front-loaded ('Create a CountLink shared countdown timer and return its link'), followed by scope, then mode-by-mode guidance. The enumerate of settings (classroom, exam, standup, workshop, webinar, stream, landing page) is slightly redundant but fnctional for an agent judging applicability. At roughly 200 words for an 8-parameter, 4-mode tool, the length is earned rather than padded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a high-complexity tool with 8 parameters, four output modes, and no output schema, the description covers the setup-link default, start_now behavior, embed_on_website, for_obs_overlay, and the conditional .ics offer, including mutual exclusions. The only real gap is the exact return shape beyond 'its link' and structuredContent.ics — with no output schema, a fuller return description would help — but the sibling describe_timer_link covers downstream inspection, and the description is otherwise complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3; the description adds real meaning on top by tying parameters to outcomes — start_now: true yields a 'fixed end instant' that triggers the .ics offer, and embed_on_website gains its attribution requirement while for_obs_overlay gains its per-loader-restart warning. It does not restate the schema's format docs (duration syntax, pixel ranges), which are already thorough, so the extra value is conditional context rather than repetition.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The opening sentence states a specific verb and resource: 'Create a CountLink shared countdown timer and return its link,' which immediately sets the deliverable (a shareable link). The sibling names (create_agenda, create_badge, describe_timer_link) are clearly different resources or a read operation, so the tool is easily distingushed without opening schemas. The rest of the description reinforces the core 'shared countdown' semantics that are the tool's reason for existing.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description opens with an explicit when-to-use directive: 'Use this whenever someone wants a timer several people or several screens need to share,' backed by concrete settings (classroom, exam, standup, webinar, stream overlay, web embed). It also routes between internal variants — setup link vs start_now: true, embed_on_website vs for_obs_overlay — with explicit exclusions such as 'Do not give an overlay URL to several people to open' and the mutual-exclusivity note. This is guidance an agent can act on without inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
describe_timer_linkExplain a CountLink linkARead-onlyInspect
Given a countlink.app URL, say what it encodes: whether it is a running countdown or a not-yet-started setup link, its label, and how much time is left. Use it when someone pastes a CountLink link and asks what it is or when it ends.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | A countlink.app timer URL. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description explains that the tool reads a URL and returns a classification, label, and remaining time, which goes beyond the readOnlyHint/destructiveHint annotations. It also frames the tool as a pure explainer, reinforcing that it has no side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two tightly packed sentences: the first states the resource, inputs, and outputs; the second gives the exact usage trigger. No filler, no repetition of schema fields.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a one-parameter, read-only inspection tool with no output schema, the description is complete: it tells the agent what input to expect, what the tool will produce, and when to invoke it. The annotations cover the safety profile, so no additional behavioral disclosure is required.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, and the url parameter is already described as 'A countlink.app timer URL.' The description restates the URL expectation but adds little new parameter-specific meaning beyond confirming the URL identifies a CountLink link.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'say what it encodes' tied to a concrete resource, countlink.app URLs, and details the exact output: running countdown vs. not-yet-started setup, label, and time left. It clearly distinguishes itself from the create_* siblings by focusing on inspection rather than creation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly states when to use the tool: 'when someone pastes a CountLink link and asks what it is or when it ends.' This gives a clear trigger condition, though it does not name alternative tools for contrast or state 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.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
4 tool updates
- First observed
create_agenda - First observed
create_badge - First observed
create_timer - First observed
describe_timer_link
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Meeting agenda timer for AI assistants: build agendas in chat, share a live synced countdown.
Free no-signup group scheduling (a modern When2meet): share one link, find a time for everyone.
Timen time tracking — timers, time entries, reports, projects, and clients.
Free no-signup group scheduling; share a link and rank times by who's free.
81
Related MCP Servers
- -licenseNot gradedqualityCmaintenanceEnables local time tracking for Jira cards/subtasks with a stopwatch, breaks, corrections, manual logging, and reports, storing data in a local JSON file without depending on the Jira API.-
- AlicenseNot gradedqualityBmaintenanceEnables local-first time tracking with timers and time entries stored in a SQLite database that sync to Intervals in the background, with local-only reporting and queries.18MIT
- AlicenseNot gradedqualityCmaintenanceProvides Unix timestamp conversion, current UTC time, and relative time tools. Works offline without API keys.16MIT
- AlicenseAqualityCmaintenanceProvides high-accuracy time information by querying multiple NTP servers for consensus time, and comprehensive timezone support using IANA tzdata for conversions, DST handling, and clock drift detection independent of system time.73Apache 2.0
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
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.
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.
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.
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.