ai_search_oschina
Search for technical news, blogs, questions, and projects on OSChina to find comprehensive Chinese open-source development resources and information.
Instructions
🌐 开源中国搜索 - 搜索开源中国技术资讯和项目
【重要】此工具会返回开源中国搜索URL,Claude Code应该使用WebFetch工具访问该URL以获取真实搜索结果。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | 搜索关键词 | |
type | No | 搜索类型 | all |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "搜索关键词",
"type": "string"
},
"type": {
"default": "all",
"description": "搜索类型",
"enum": [
"news",
"blog",
"ask",
"project",
"all"
],
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}