yuque_list_docs
Retrieve documents from a Yuque knowledge base repository using repository ID or namespace, with pagination controls for managing content access.
Instructions
Alias of yuque_get_docs for compatibility with official naming.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| repoId | No | Yuque repository ID. | |
| repoNamespace | No | Yuque repository namespace. | |
| limit | No | Optional page size. | |
| offset | No | Optional offset. |
Implementation Reference
- src/tools.js:440-440 (handler)Handler for yuque_get_docs, which yuque_list_docs aliases.
yuque_get_docs: async (args, client) => jsonText(await client.getDocs(args, args)), - src/tools.js:484-488 (registration)Registration of yuque_list_docs as an alias for yuque_get_docs.
{ name: "yuque_list_docs", description: "Alias of yuque_get_docs for compatibility with official naming.", inputSchema: TOOL_DEFINITIONS.find((tool) => tool.name === "yuque_get_docs").inputSchema },