Skip to main content
Glama

get_article

Fetch one ChangeGamer guide (editorial article) by slug as full Markdown with its metadata header. Always free — never part of the paid corpus. Use list_articles to discover slugs.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesArticle slug (e.g. "rag-in-production")

TDQS

A4/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It does add meaningful behavioral context: the result is always free, not drawn from the paid corpus, and the response form is full Markdown with a metadata header. It leaves out failure behavior for unknown slugs, any auth/access requirements, and additional disclosure around content and formatting limits, which keeps it from a 4.

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?

Two crisp sentences, front-loaded: the core fetch behavior first, then the free-access clarification, then the slug-discovery routing. No filler, no redundancy, and every clause carries an actual detail needed for correct invocation.

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 one-parameter tool with no nested objects and no output schema, the definition fully covers the core contract: which slug to pass, what you receive back, and the free/paid access area. The only notable gap is unspecified behavior for a non-existent slug, which would likely be a 404, but the simplicity of the call keeps this from being a serious deficiency.

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 gives 100% parameter coverage, including a concrete example (rag-in-production), so the baseline is 3. The description adds one genuinely useful layer by telling the agent how to obtain a valid slug (via list_articles and the same discovery path). That is helpful direction, but it does not add syntax, format, or constraint details beyond the existing 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?

States a specific verb (fetch), a precise resource (one ChangeGamer guide / editorial article), the selection key (slug), and the return format (full Markdown plus metadata header). The restrictor one plus the qualifier editorial article cleanly distinguishes it from list_articles and get_resource without requiring any schema inspection.

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?

Explicitly says to use list_articles to discover slugs, which gives the agent a concrete workflow and an explicit alternative. The statement always free, never part of the paid corpus tells the agent this call is the right one for free editorial content, not a paid paywall request. It does not exclude other siblings (e.g., get_resource, get_corpus), so routing is strong for one alternative but not exhaustive.

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

A3.9/5.0
Disambiguation4/5

Most tools are clearly separated by resource type: articles, resources, corpus, stats, and articles. The main ambiguity is the access/pricing/payment cluster (`check_access`, `get_access_info`, `get_pricing`, `get_payment_info`), which agents could confuse despite distinct descriptions.

Naming Consistency5/5

All tool names follow a consistent `verb_noun` pattern, using `get_*`, `list_*`, and `search_*` prefixes. The naming stays readable and predictable even with broader tools like `search` and `search_resources`.

Tool Count4/5

14 tools is within the typical well-scoped range, and each major retrieval goal has a dedicated tool. It is slightly heavy because the access/pricing/payment information could arguably be consolidated, but it is not bloated.

Completeness4/5

The server covers discovery, listing, searching, fetching, corpus ingestion, editorial articles, stats, and access/pricing verification. As a read-only content/access server, full CRUD is not expected, though there is no direct category-based batch filter beyond a general search.

Resources