Skip to main content
Glama

read_post

Read one journal post in full (markdown body).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A3.5/5.0
Behavior3/5

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

The description indicates a read operation ('Read') and specifies the output format ('markdown body'). No annotations are provided, so the description carries the burden; it adequately discloses the read-only nature but omits details like authentication or rate 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, concise sentence that efficiently communicates the tool's core function without unnecessary words.

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 tool with an output schema (not shown), the description is largely complete. It covers the essential purpose and output format. However, the lack of parameter explanation slightly reduces completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has 0% description coverage for the single required parameter 'slug'. The description does not explain what 'slug' represents, leaving the agent to infer it as the post identifier. Given the lack of schema documentation, the description adds minimal value.

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 it reads one journal post and returns the full markdown body. It distinguishes itself from sibling tools like list_journal (listing) and product_detail/service_detail (different resources).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives, such as using list_journal first to obtain a slug. The description lacks explicit context or exclusions.

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

Each tool has a distinct purpose: about_virohana provides background, list_journal and read_post handle journal content, list_products and product_detail handle products, list_services and service_detail handle services, search_site provides cross-domain search, and start_here offers a guided tour. No two tools overlap significantly.

Naming Consistency4/5

Tool names use snake_case consistently, with a pattern of 'verb_noun' for lists (list_journal, list_products, list_services) and 'noun_detail' for details (product_detail, service_detail). However, about_virohana and start_here break the pattern slightly, and read_post and search_site are descriptive but not exactly verb-noun. Overall, naming is clear and predictable.

Tool Count5/5

With 9 tools, the set is well-scoped for a company information site. It covers core functions: about, journal, products, services, search, and a guided start. No tool is redundant, and the count is appropriate for the domain.

Completeness5/5

The tool surface provides comprehensive coverage of the Virohana site: background (about_virohana), journal listing and reading (list_journal, read_post), product listing and details (list_products, product_detail), service listing and details (list_services, service_detail), full-site search (search_site), and an entry point (start_here). There are no obvious gaps for a read-only informational website.

Resources