search-yuque-docs
Search for documents within Yuque knowledge bases by matching keywords in titles and descriptions to quickly find relevant documentation.
Instructions
在指定的知识库中搜索文档。
会在文档标题和描述中进行关键词匹配。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | 搜索关键词 | |
| namespace | No | 知识库命名空间 (例如: username/repo),如果未提供则使用默认命名空间 |
Input Schema (JSON Schema)
{
"properties": {
"namespace": {
"description": "知识库命名空间 (例如: username/repo),如果未提供则使用默认命名空间",
"type": "string"
},
"query": {
"description": "搜索关键词",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}