Skip to main content
Glama

Yappy documentation

Read a Yappy documentation page

get_documentation_page
Read-onlyIdempotent

Fetch one full Yappy documentation page as markdown, by slug. Use this after search_documentation when an excerpt is not enough and you need the whole page — for example the complete configuration reference or the full privacy model.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesWhich page to fetch.

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false, so the safety profile is covered. The description adds useful behavioral context by specifying the output format ('as markdown') and the scope ('one full ... page'). It does not mention error handling for invalid slugs, but with annotations present this is a minor gap.

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 tightly written sentences. The first states the core action, resource, and output format; the second gives routing guidance and concrete examples. No wasted words or repetition of the schema.

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

Completeness5/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 full enum documentation, strong annotations, clear sibling routing, and an explicit statement of the markdown return format, no meaningful context is missing. The description is sufficient for an agent to select and invoke the tool correctly.

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 description coverage is 100%: the schema describes 'slug' as 'Which page to fetch' and enumerates all valid values. The description mentions 'by slug' but adds no additional semantics beyond what the schema already provides. Baseline 3 is appropriate.

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 names a specific verb ('Fetch'), a specific resource ('one full Yappy documentation page as markdown'), and the key mechanism ('by slug'). It also implicitly differentiates itself from search_documentation by emphasizing 'full page' and 'markdown' versus an excerpt.

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

Usage Guidelines5/5

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

The description explicitly states when to use this tool: 'after search_documentation when an excerpt is not enough and you need the whole page.' It even gives concrete examples, making the decision boundary clear relative to its siblings.

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

The three tools map cleanly to distinct actions: search finds relevant content, list gives an overview of all pages, and get fetches a specific page by slug. There is no meaningful overlap, and the descriptions even prescribe how the tools chain together.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern: search_documentation, list_documentation_pages, get_documentation_page. The slight variation between 'documentation' and 'documentation_pages' is natural since search also covers the FAQ.

Tool Count5/5

Three tools is an appropriate size for a documentation server focused on reading and searching. Each tool earns its place, and none is redundant.

Completeness5/5

For a documentation MCP server, this surface is complete: search handles how-to and troubleshooting, list supports discovery when no slug is known, and get provides the full page when excerpts are insufficient. There are no dead ends or obvious missing operations.

Resources