Skip to main content
Glama

developer-toolkit-mcp

Fetch a documentation article

fetch
Read-only

Retrieve the complete markdown of one documentation article by the id returned from search (for example en/claude-code/advanced-techniques/hooks-automation).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesArticle id from a `search` result.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
urlYes
textYes
titleYes
metadataYes

Schema Changelog

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

  1. First observed

TDQS

A4.1/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and openWorldHint=false, covering the safety profile. The description adds that the output is markdown and the id source, but doesn't disclose additional behavioral traits such as pagination or error handling. Since annotations carry the main transparency load, the added value is modest.

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 directly states the action and the parameter source. Every word earns its place with no redundancy or filler.

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?

The tool is simple with one parameter, read-only annotations, and an output schema. The description covers the essential workflow (use id from search), and the output schema handles return values, so no additional information is needed for completeness.

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%, and the schema already describes `id` as 'Article id from a `search` result.' The description repeats the same information without adding new meaning, so it doesn't compensate beyond the baseline for high schema coverage.

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 specifies the verb 'Retrieve' and the resource 'complete markdown of one documentation article', and it explicitly mentions the id comes from `search`, distinguishing it from the sibling tool. The purpose is unmistakable.

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?

The description states that the id must come from a `search` result, which implies usage after search. It provides clear context on how to retrieve the id, but it doesn't explicitly mention when not to use this tool or name alternatives beyond the implied `search` workflow.

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

The two tools have completely distinct purposes: search queries the documentation index, while fetch retrieves a specific article by ID. There is no overlap or ambiguity between them.

Naming Consistency4/5

Both tool names are single lowercase verbs ('search', 'fetch'), which is consistent in style. However, they lack a noun prefix (e.g., 'search_docs', 'fetch_article'), but the pattern is uniform and predictable.

Tool Count3/5

With only 2 tools, the set feels minimal but is perfectly scoped for a documentation search-and-retrieve utility. It's on the low end of acceptable, but the narrow purpose justifies the small count.

Completeness4/5

The search-fetch pair covers the core workflow for documentation lookup. A 'list' or 'browse' tool could be useful, but for a search-driven retrieval server, these two tools satisfy the primary use case without major gaps.