yuque_get_docs
Retrieve document lists from Yuque knowledge base repositories using repository ID, with options for pagination and result limits to organize content access.
Instructions
获取文档列表 (List documents in a repository)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| repoId | Yes | 知识库ID (Repository ID) | |
| limit | No | 返回数量限制,默认20 (Result limit, default 20) | |
| offset | No | 偏移量,默认0 (Offset for pagination, default 0) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "返回数量限制,默认20 (Result limit, default 20)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"offset": {
"description": "偏移量,默认0 (Offset for pagination, default 0)",
"minimum": 0,
"type": "number"
},
"repoId": {
"description": "知识库ID (Repository ID)",
"type": "number"
}
},
"required": [
"repoId"
],
"type": "object"
}