Skip to main content
Glama

Get a timeline by ID

get_timeline_by_id
Read-onlyIdempotent

Returns one published timeline. Administrators get the complete bilingual record with every event, source, and related link, plus access to draft content. Other accounts get a single locale (pass the caller's language in locale): each event's title, summary, media, sources, and related links, plus a canonical URL to the full timeline - never event bodies or the timeline introduction/conclusion.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
localeNoThe calling user's language. Ignored for administrator tokens, which always receive both languages.en
timeline_idYesThe exact NewTqnia timeline ID.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
urlNo
slugYes
uuidNo
titleNo
eventsYes
statusNo
url_arNo
url_enNo
summaryNo
end_dateYes
featuredNo
title_arNo
title_enNo
created_atYes
is_ongoingYes
start_dateYes
summary_arNo
summary_enNo
updated_atYes
cover_mediaNo
event_countYes
conclusion_arNo
conclusion_enNo
timeline_typeYes
introduction_arNo
introduction_enNo

TDQS

A4.7/5.0
Behavior5/5

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

The description goes well beyond the readOnlyHint and idempotentHint annotations. It discloses role-based access differences, locale handling, and what content is excluded (event bodies, timeline introduction/conclusion) for non-admins. This provides rich behavioral context that annotations alone do not convey.

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, dense paragraph that front-loads the core purpose and then efficiently covers role-based differences and data exclusions. Every sentence carries meaningful information without redundancy or filler.

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?

The tool has role-based complexity, locale sensitivity, and specific field exclusions. The description thoroughly covers these aspects. An output schema exists, so return values are not needed in the description. The description is complete for the tool's complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. The description adds extra nuance for the locale parameter, explaining that it should be the caller's language and that it's ignored for admin tokens. This adds meaning beyond the schema's enum description, justifying a score above baseline.

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 opens with a specific verb and resource: 'Returns one published timeline.' It clearly states the resource type and the action, and then provides details on role-based behavior (administrators vs. other accounts) that distinguish the response. This is specific and unambiguous.

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 clear context on when to use the tool: to retrieve a single timeline by ID. It doesn't explicitly mention alternative tools or when not to use it, but the purpose is so focused that context is sufficient. It also explains role-specific behavior that guides correct usage (e.g., admins get bilingual, others need locale).

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.4/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: news by ID, recent news, timeline by ID, explainer search, terminology search, and server status. There is no overlap in their purposes, and the descriptions make the boundaries clear.

Naming Consistency4/5

Five of six tools follow a clear verb_noun pattern (get_*, search_*), with consistent snake_case formatting. The only deviation is 'server_status', which uses noun_noun style, but this is minor and the name is still intuitive.

Tool Count5/5

With six tools, the set is well-scoped for a content retrieval/search server covering news, timelines, explainers, terminology, and health status. Each tool serves a distinct purpose, and the count feels neither sparse nor bloated.

Completeness3/5

The core retrieval operations exist for news and timelines, but there are notable gaps: no get-by-id for explainers or terminology, no search for news or timelines, and no write operations (create/update/delete) despite admin hints in descriptions. These gaps force agents to rely on search results and limit full lifecycle coverage.

Resources