Skip to main content
Glama

article

The full text of an article, for when lookup()'s summary is not enough — sections as a JSON array, infobox as key/value facts, no HTML or wikitext to parse. Pass sections to pull only the parts you need (e.g. ["Early life"]) and max_chars to cap the payload; both exist because a long article will otherwise flood your context.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYesArticle title, alias, or Q-id.
corpusNoWhich corpus to read from. Defaults to wikipedia.
sectionsNoOptional section names to include (substring match, case-insensitive). Omit for the whole article.
max_charsNoOptional cap on total section text returned.

TDQS

A4.6/5.0
Behavior4/5

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

With no annotations, the description carries the burden of behavioral disclosure. It explains output format (sections array, infobox facts), states there's no HTML/wikitext to parse, and warns that long articles can flood context. It doesn't cover error cases or permissions, but for a read tool the key behaviors are disclosed.

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 concise, front-loaded with the core purpose, and every clause adds meaningful detail. It avoids redundancy with the schema and is well-structured with clear separation between purpose and usage tips.

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?

No output schema exists, so the description compensates by specifying return structure (sections array, infobox facts, no markup). It also covers the main usage concern (context size) and references the sibling lookup. It omits minor details like error behavior, but overall it's sufficient for a straightforward article-fetching tool.

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?

Since schema coverage is 100%, the baseline is 3. The description adds value by explaining why `sections` and `max_chars` exist (to limit context flooding) and how to use them ("pull only the parts you need"), which is beyond what the schema states about their types and defaults.

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 "The full text of an article" and distinguishes it from lookup()'s summary by emphasizing sections as a JSON array and infobox as key/value facts. It also explicitly contrasts with the sibling lookup tool, making its unique role evident.

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

Usage Guidelines5/5

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

It explicitly says to use this tool "when lookup()'s summary is not enough," giving a direct when-to-use vs alternative. It also provides guidance on using `sections` and `max_chars` to avoid flooding context, which is actionable usage direction.

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 has a clearly distinct purpose: search finds titles, lookup returns structured entity facts, article returns full text, define handles dictionary entries, papers covers academic metadata, and recent tracks updates. Potential overlaps are explicitly disambiguated, such as define for words versus lookup for things, and lookup for summaries versus article for full text.

Naming Consistency4/5

All tool names are lowercase single words, which creates a clean and predictable style. The set mixes resource-like names (article, papers, recent) with action-oriented names (define, lookup, search), but the minimalist convention remains consistent and easy to remember.

Tool Count5/5

Six tools is well-scoped for a knowledge retrieval server: discovery, entity facts, full text, definitions, academic papers, and recent changes each earn their place. There is no redundancy and no sense that tools were added without a clear purpose.

Completeness5/5

The surface covers the full retrieval workflow: find the right entity with search, get a concise fact summary with lookup, retrieve full article text, define words, access scholarly sources, and check for recent updates. For a read-only knowledge server, this covers the user journey without dead ends.

Resources