ai_search_wechat_docs
Search WeChat developer documentation for mini-programs, official accounts, and open platform resources. Get targeted search URLs to access comprehensive technical documentation and API references.
Instructions
📱 微信开发者文档搜索 - 搜索微信小程序、公众号、开放平台文档
【重要】此工具会返回微信文档搜索URL,Claude Code应该使用WebFetch工具访问该URL以获取真实搜索结果。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
platform | No | 平台类型 | all |
query | Yes | 搜索关键词 |
Input Schema (JSON Schema)
{
"properties": {
"platform": {
"default": "all",
"description": "平台类型",
"enum": [
"miniprogram",
"officialaccount",
"open",
"payment",
"all"
],
"type": "string"
},
"query": {
"description": "搜索关键词",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}