ai_search_docs
Search official documentation for popular frameworks and tools like React, Vue, and Node.js to find technical answers and implementation guidance.
Instructions
📚 技术文档搜索 - 搜索常见框架和工具的官方文档(React、Vue、Node.js等)
【重要】此工具会返回文档搜索URL,Claude Code应该使用WebFetch工具访问该URL以获取真实搜索结果。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
framework | No | 指定框架,默认general | general |
query | Yes | 搜索关键词 |
Input Schema (JSON Schema)
{
"properties": {
"framework": {
"default": "general",
"description": "指定框架,默认general",
"enum": [
"react",
"vue",
"angular",
"nodejs",
"python",
"java",
"general"
],
"type": "string"
},
"query": {
"description": "搜索关键词",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}