Skip to main content
Glama

Read a page

get_page

Fetch a published post by slug. Public — no edit_key required.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesThe slug from the page URL.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A3.7/5.0
Behavior4/5

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

With no annotations, the description carries the full burden, and it discloses key behavioral traits: only published posts are fetchable, and no edit_key is required (public). It does not reveal error behavior, rate limits, or response shape, but for a simple public read by slug, these are sufficient. No contradiction with annotations since none are provided.

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 terse sentences front-load the action and scope. Each sentence adds distinct information (what it fetches; auth/visibility). No filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a one-parameter, no-output-schema tool, the description covers purpose and access, but it leaves out behavior for not-found slugs and the return payload. More importantly, the 'post' vs 'page' terminology mismatch with the tool name and sibling set undermines confidence in the resource being handled. So completeness is adequate but with clear gaps.

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?

Schema coverage is 100%, so baseline is 3. The description merely repeats 'by slug' without adding format, source, or validation details beyond the schema's 'The slug from the page URL.' Thus it meets baseline but adds no extra semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('Fetch') and resource ('published post by slug'), which clearly positions it as a read operation relative to sibling create_page/delete_page/update_page. However, it uses 'post' instead of 'page', conflicting with the tool name, title, and sibling naming, creating ambiguity about the exact resource.

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 phrase 'Public — no edit_key required' gives useful context for when this tool is appropriate (public read access). It does not explicitly mention when to use this versus the create/delete/update siblings, nor does it state exclusions such as unpublished pages requiring another tool. The usage guidance is implied by the get verb and sibling names, not explicit.

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.

Resources