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
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | The 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. | |
| path | No | The 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. | |
| title | No | The 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. |