Skip to main content
Glama

NewTqnia MCP – Technology News & Research

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.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, and the description adds valuable context: it discloses the time window, role-based output, and the locale parameter's effect. It does not contradict annotations. Minor gap: it doesn't mention ordering or pagination, but the output schema covers the return value.

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: the first states the core functionality, and the second adds critical role-based details. Every sentence is necessary and informative, with no redundant or filler content.

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?

Given the existence of an output schema, the description focuses on behavior rather than return values. It covers the time window, role-based differences, and locale usage. It is fairly complete for this simple tool, though it could mention that results are sorted by publish date.

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 description coverage is 33% (only locale has a description). The description explains that days refers to 'past X days' and locale should be the caller's language (ignored for admins). However, it does not add meaning to the limit parameter beyond what the schema provides, and the days parameter's description is minimal.

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 it returns published news from the past X days, with a default of 90. It specifies the distinction between administrator and non-administrator outputs (bilingual vs. single locale), making the purpose specific and differentiating it from sibling tools like get_news_by_id.

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 indicates the tool is for retrieving recent news and explains the different behavior for admins versus other accounts. However, it does not explicitly state when to use this tool over alternatives like get_news_by_id or search_explainers, though the context implies listing instead of searching or getting by ID.

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

Each tool targets a distinct resource and action: news by ID, recent news list, timeline by ID, explainer search, terminology search, and server status. There is no overlap in purpose, and descriptions clearly differentiate the retrieval patterns.

Naming Consistency4/5

Most tools follow a consistent verb_noun pattern (get_*, search_*), which is predictable. The exception is server_status, which uses a noun phrase rather than a verb-led name, but this is a minor deviation and still readable.

Tool Count5/5

With 6 tools, the set is well-scoped for a retrieval and search server. Each tool earns its place, and the count is neither too thin nor too heavy for the stated purpose.

Completeness3/5

The set covers core retrieval for news and timelines, and search for explainers and terminology. However, there is no way to discover timelines without knowing an ID, and no search for news articles beyond the recent list. This creates a notable gap in content discovery.

Resources