Skip to main content
Glama

Get article

get_article
Read-only

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

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesArticle slug.

TDQS

A4.2/5.0
Behavior4/5

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

The readOnlyHint annotation already covers the safety profile. The description adds return-value context (title, body, author, etc.) that is not in the annotations or schema, providing useful behavioral information beyond what is structured.

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, front-loaded with the main purpose and followed by a concise list of return fields. Every word earns its place with no redundancy.

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 read-only tool with one parameter and no output schema, the description captures the essential invocation details and return values. It lacks error handling or slug format specifics, but these are not critical given the low complexity.

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 already documents the slug parameter with a description ('Article slug'), and the description's 'by slug' adds domain context but no format or syntax details. With 100% schema description coverage, 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 verb 'Fetch' and the resource 'a single article from Psychiatry for Teens' with the method 'by slug'. This distinguishes it from sibling tools like list_articles and search_articles, which operate over multiple articles.

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 usage is clear: it fetches a specific article by slug, implying it's for retrieving a known article. It does not explicitly name alternatives or exclusions, but the context is sufficient for an agent to know when to use it.

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: article discovery (list, search), retrieval (get), citation (cite), site identity (microsite info), and crisis support. No two tools overlap, and the descriptions reinforce their uniqueness.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case (e.g., cite_article, list_articles, get_crisis_resources). The naming is uniform and predictable.

Tool Count5/5

Six tools is well-scoped for a read-only article library. It covers discovery, retrieval, citation, site context, and crisis support without unnecessary bloat.

Completeness5/5

The domain is fully covered: users can search, list, retrieve full articles, generate citations, access site information, and get crisis resources. No critical operations are missing, and the set forms a complete workflow.

Resources