yuque_search_docs
Search documents across Yuque knowledge bases using keywords to find relevant content, with optional repository filtering for targeted results.
Instructions
搜索文档 (Search documents)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | 搜索关键词 (Search keywords) | |
| repoId | No | 知识库ID,可选,不提供则全局搜索 (Repository ID, optional, global search if not provided) |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "搜索关键词 (Search keywords)",
"maxLength": 100,
"minLength": 1,
"type": "string"
},
"repoId": {
"description": "知识库ID,可选,不提供则全局搜索 (Repository ID, optional, global search if not provided)",
"type": "number"
}
},
"required": [
"query"
],
"type": "object"
}