Skip to main content
Glama

Popular articles

popular_content
Read-onlyIdempotent

The most-read / most-requested articles, ranked by how often AI assistants have actually fetched them. Use for "what is your most popular article", "top reads", or to recommend what to read.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
daysNoLook-back window in days (default 30, max 365)
limitNoHow many to return (default 10, max 25)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
articlesYes

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds meaningful behavioral context by explaining the ranking is based on actual AI assistant fetches, which is non-obvious and useful. No contradictions with annotations.

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?

Two sentences, no wasted words. The core meaning is front-loaded in the first sentence, and the second gives direct usage examples. Efficient and readable.

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?

For a simple read-only tool with only two optional parameters, an output schema, and rich annotations, the description fully covers what the tool does, why it exists, and when to invoke it. Nothing critical is missing.

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 100%, and both parameters (days, limit) have clear schema descriptions. The tool description doesn't add extra parameter meaning, but it doesn't need to; the schema carries the burden.

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 defines the resource (popular articles) and the distinguishing criterion (ranked by how often AI assistants have fetched them). This differentiates it from siblings like list_recent_articles or search, even without naming them, because the popularity angle is explicit.

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?

It provides concrete example queries ('what is your most popular article', 'top reads') and the recommend-what-to-read use case. It doesn't explicitly mention when not to use it or name alternatives, but the context is unambiguous for an agent.

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/5.0
Disambiguation3/5

There is one clear pair of overlapping tools: `search` and `search_articles` both find content, and `fetch`/`get_article` both retrieve full text, though by different identifiers. The descriptions help, but an agent could easily choose the wrong workflow when asked to retrieve an article.

Naming Consistency3/5

Most names are lowercase snake_case verbs or verb phrases (`get_article`, `list_recent_articles`, `search_articles`), but `popular_content` is a noun phrase and `fetch`/`search` are bare verbs. This is readable but not a tight, predictable convention.

Tool Count5/5

Six tools is a good size for a read-only publication API. Each tool has a reasonable role, and the set avoids bloat while still offering discovery, search, recency, popularity, and full-text retrieval.

Completeness5/5

The domain is content access for a publication, and the surface covers discovery (list, popular, search), article metadata, and full-text retrieval by both id and slug. There are no dead ends: any search result can lead to full text, and recent/popular lists support browsing.

Resources