Skip to main content
Glama

get-doc

Fetch a full official FeathersJS documentation page by ID, path, or title, returning complete text and all code examples for accurate source-based answers.

Instructions

Fetch a full official FeathersJS doc page: returns complete page text plus all code examples. Look up by id, path, or title. Use after get-menu (paths/ids), after search-doc, or when the user gave an exact id/path/title. Prefer id or path over title.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoThe numeric document ID (from get-menu or search results). RECOMMENDED: Use this as the primary way to fetch documents after search-doc, as it uniquely identifies a document.
pathNoThe source_file path of the document (e.g. "api/hooks", "guides/basics/setup"). RECOMMENDED: Use this as an alternative to id; uniquely identifies a document.
titleNoThe exact title of the document to retrieve (e.g. "Hooks" or "Authentication"). WARNING: Multiple documents may share the same title. Avoid this when possible; prefer id or path instead.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.16

TDQS

A4.2/5.0
Behavior3/5

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

With no annotations and no output schema, the description carries the full burden, and it does disclose the return shape (full page text plus all code examples). However, it says nothing about failure modes (unknown id/path), rate limits, or auth requirements, so key behavioral context is missing for a no-annotation tool.

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?

Three compact sentences, each doing distinct work: what it returns, how to look it up, and when to call it. Front-loaded with the purpose and no filler.

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?

Because there is no output schema, the description must describe returns – and it does (complete page text plus code examples). Sibling and sequencing relationships are covered. The only real gap is error/edge behavior when a lookup key does not resolve.

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%, so the schema already documents id, path, and title, including the warning that titles are non-unique. The description's lookup guidance (id/path/title, prefer id or path) largely restates that, adding little beyond the schema – baseline 3.

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 and resource ("Fetch a full official FeathersJS doc page") plus the scope of what it returns ("complete page text plus all code examples"). The role is clearly differentiated from siblings like search-doc and get-menu, which are named as upstream steps rather than substitutes.

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?

Explicitly enumerates the triggering conditions: after get-menu (paths/ids), after search-doc, or when the user supplied an exact id/path/title. It also gives a selection rule among the tool's own inputs ("Prefer id or path over title"), leaving little to inference.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.