fetch_qencode_doc
Retrieve the full content of any Qencode documentation resource by URI, including recipes, best practices, storage guides, error codes, and schema digest. Use this to get complete details after searching for docs.
Instructions
Read the full content of a Qencode knowledge-base resource by URI.
Works for every URI returned by `search_qencode_docs` — recipes, best
practices, storage, gotchas, error codes, and the schema digest. This
is the tool-based counterpart to the MCP `resources/read` operation,
provided because some MCP clients (notably Claude Desktop) don't expose
`resources/read` to the model directly.
Args:
uri: a `qencode://...` URI from a `search_qencode_docs` hit.
Examples:
- qencode://recipe/hls_abr
- qencode://docs/best-practices
- qencode://docs/storage
- qencode://docs/error-codes
- qencode://schema/digest
Returns:
A dict with `uri`, `mime_type`, and `content` (the full markdown or
JSON, depending on the doc). On unknown URI, returns
`{"error": "...", "available_uris": [...]}` listing the URIs you can
try instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uri | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uri | No | ||
| error | No | ||
| title | No | ||
| content | No | ||
| mime_type | No | ||
| available_uris | No |