Skip to main content
Glama

Get recent published news

get_recent_news
Read-onlyIdempotent

Returns published news from the past X days (90 by default). Administrators get bilingual titles, summaries, and URLs; other accounts get a single locale (pass the caller's language in locale) with a title, summary, and canonical URL to read the full article.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
daysNo
limitNo
localeNoThe calling user's language. Ignored for administrator tokens, which always receive both languages.en

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
daysYes
newsYes
countYes

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is clear. The description adds valuable behavioral context beyond annotations, such as the role-based response differences (bilingual vs. single locale) and the default time window.

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 two sentences long, front-loaded with the core purpose, and includes only essential information. There is no redundant repetition of schema fields or annotations.

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?

The description covers the main usage, role-based behavior, and key parameter semantics. It does not mention the limit parameter, but the schema provides that. Given the output schema exists and annotations cover safety, the description is sufficiently complete for an agent to select and invoke the tool correctly.

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 only 33% (only locale has a description), but the description compensates by explaining days ('past X days') and locale usage ('pass the caller's language'). It does not explain the limit parameter, which is mentioned in the schema but not described in text, so it earns a 4 rather than 5.

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 returns published news from a specified time window, using a specific verb ('Returns') and resource ('published news'). It also distinguishes itself from siblings like get_news_by_id by focusing on recent news lists rather than individual items.

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 provides clear context for when to use the tool (to fetch recent published news) and includes role-based usage details (admins vs. other accounts). However, it does not explicitly mention alternatives or when not to use this tool, so it stops short of a 5.

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