Install
openclaw skills install metaso-search-skillSearch the web using Metaso AI Search API. Use for live information, documentation, or research topics.
openclaw skills install metaso-search-skillSearch the web via Metaso AI Search API.
python skills/metaso-search/scripts/search.py '<JSON>'
| Param | Type | Required | Default | Description |
|---|---|---|---|---|
| q | str | yes | - | Search query |
| scope | str | no | webpage | Search scope: webpage, news, paper, etc. |
| size | int | no | 10 | Number of results (1-50) |
| page | int | no | 1 | Page number |
| conciseSnippet | bool | no | false | Return concise snippet |
| includeSummary | bool | no | false | Include AI summary |
| includeRawContent | bool | no | false | Fetch raw content from sources |
# Basic search
python scripts/search.py '{"q":"OpenClaw AI"}'
# With options
python scripts/search.py '{
"q": "人工智能最新进展",
"size": 5,
"includeSummary": true
}'
https://metaso.cn/api/v1/searchAuthorization headerapplication/jsoncurl --location 'https://metaso.cn/api/v1/search' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"q": "搜索关键词",
"scope": "webpage",
"size": 10,
"includeSummary": false,
"includeRawContent": false,
"conciseSnippet": false
}'
{
"credits": 3,
"searchParameters": {
"q": "搜索关键词",
"scope": "webpage",
"size": 10
},
"webpages": [
{
"title": "标题",
"link": "https://example.com",
"snippet": "摘要内容",
"score": "high",
"date": "2026-03-22"
}
],
"total": 25
}
✅ Ready to use