Skip to main content
Glama

Get article

get_article
Read-only

Fetch a single article from Anxiety in Teens by slug. Returns title, body content, author, clinical reviewer, citations, and metadata.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesArticle slug.

TDQS

A4.1/5.0
Behavior4/5

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

The readOnlyHint annotation already establishes this as a safe read operation. The description adds value by enumerating the return contents (title, body, author, clinical reviewer, citations, metadata), informing the agent what to expect. It does not mention error cases or rate limits, but for a simple fetch tool this is acceptable.

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, front-loaded sentence that communicates the core function and return fields with no filler. Every piece of information is necessary and directly useful.

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?

Given the simplicity (one parameter, no output schema) and the presence of a readOnlyHint, the description fully covers what the tool does and what it returns. An agent has sufficient information to select and invoke this tool without additional documentation.

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?

The schema covers the single parameter 'slug' with a brief description. The tool description reinforces that the slug identifies an article but adds no additional semantic detail such as format, length, or source. Since schema coverage is 100%, the baseline of 3 applies.

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 action ('Fetch'), the resource ('a single article'), and the identifier ('by slug'). This distinguishes it from sibling tools like list_articles and search_articles, which retrieve multiple articles, and cite_article, which focuses on citations.

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 when to use this tool (when you have a specific slug and want one article) but does not explicitly contrast it with alternatives such as list_articles or search_articles. No 'when not to use' guidance is provided, but the 'single... by slug' phrasing provides a clear enough context.

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: getting an article, searching/listings, citing, crisis resources, and site info. No overlap or confusion between them.

Naming Consistency5/5

All tool names follow the same verb_noun snake_case pattern (cite_, get_, list_, search_), making the API predictable and easy to understand.

Tool Count5/5

Six tools is well-scoped for a content library server, covering the essential operations without bloat or missing core functionality.

Completeness5/5

The tool set covers the major article workflows: discovery (list/search), retrieval (get), citation, and additional context resources. No critical gaps for a read-only library.

Resources