Skip to main content
Glama

Search articles

search_articles
Read-onlyIdempotent

Search this publication's articles by keyword. Returns the best-matching titles, dates, canonical URLs, and short summaries.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax results (default 5, max 20)
queryYesSearch keywords

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
totalNo
articlesYes

TDQS

A4/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 covered. The description adds useful behavioral context by noting that results are 'best-matching' and describing the return fields, which helps the agent understand result ranking and content without contradicting 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence that front-loads the core action and resource, then lists the return fields efficiently. Every clause adds useful information with no redundancy or filler.

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?

For a simple two-parameter read-only tool with a present output schema and strong annotations, the description is largely complete. The only missing context is explicit sibling differentiation guidance for cases where the agent might consider 'search' or 'fetch', but this is minor given the clear scoping to publication articles.

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%, with both query and limit already well documented in the schema. The description's 'by keyword' phrase adds little beyond the schema's 'Search keywords', so no significant new parameter meaning is provided.

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 names a specific verb ('Search'), a specific resource ('this publication's articles'), and the input type ('by keyword'). It also states what is returned (titles, dates, canonical URLs, short summaries), which clearly distinguishes it from siblings like list_recent_articles and popular_content.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool is for keyword-based article search, but it does not explicitly state when to use this tool over the sibling 'search' or other alternatives like list_recent_articles. The context is clear enough for basic routing but lacks explicit exclusions or alternative guidance.

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