Skip to main content
Glama

List articles

list_articles
Read-only

Paginated list of articles from Psychiatry for Children. Returns title, slug, summary, and URL.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage number (1-indexed).
limitNoMax results per page (default 30, max 100).

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed1 schema field changed
    • changedInput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
  2. Changed9 schema fields changed
    • addedInput schema / $schema
      Added value: +"http://json-schema.org/draft-07/schema#"
    • changedInput schema / properties / limit / description
      Previous value: -"Page size (default 30, max 100)."New value: +"Max results per page (default 30, max 100)."
    • addedInput schema / properties / limit / maximum
      Added value: +100
    • addedInput schema / properties / limit / minimum
      Added value: +1
    • changedInput schema / properties / limit / type
      Previous value: -"number"New value: +"integer"
    • changedInput schema / properties / page / description
      Previous value: -"Page number (default 1)."New value: +"Page number (1-indexed)."
    • addedInput schema / properties / page / maximum
      Added value: +9007199254740991
    • addedInput schema / properties / page / minimum
      Added value: +1
    • changedInput schema / properties / page / type
      Previous value: -"number"New value: +"integer"
  3. First observed

TDQS

A3.8/5.0
Behavior3/5

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

Annotations declare readOnlyHint=true, and the description adds useful behavioral context: results are paginated and include title, slug, summary, and URL. However, it doesn't disclose additional traits such as default pagination limits, ordering, or potential performance considerations, though the schema does document limits.

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 efficiently states the purpose, source, and return fields. Every word earns its place, with no redundant or filler content.

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 list operation with two fully documented optional parameters and no output schema, the description adequately covers source, pagination, and return fields. It could mention ordering or default limit behavior, but the schema already supplies defaults, so the description is reasonably complete.

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 input schema already has 100% coverage with clear descriptions for both page (1-indexed) and limit (default 30, max 100). The description only adds the word 'paginated', which is already evident from the parameters, providing no additional semantic value beyond the schema.

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 'list', the resource 'articles from Psychiatry for Children', and scope as a paginated list with specific return fields. This distinguishes it from sibling tools like get_article (single item) and search_articles (search).

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 use for browsing or retrieving all articles in a paginated manner, but it does not explicitly mention when to use this tool over alternatives like search_articles or get_article. No exclusions or alternative tool names are given.

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.2/5.0
Disambiguation5/5

Each tool has a unique purpose: citations, single article retrieval, crisis resources, site info, listing, and searching. No overlap.

Naming Consistency5/5

All tools use consistent verb_noun snake_case pattern (e.g., cite_article, list_articles, search_articles).

Tool Count5/5

Six tools is well-scoped for a library server covering retrieval, search, citation, and crisis resources.

Completeness4/5

Covers core read operations (get, list, search, cite) plus crisis info, but may lack auxiliary operations like topic listing or author lookups.

Resources