← 返回 Skills 市场
173
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install metaso-search-skill
功能描述
Search the web using Metaso AI Search API. Use for live information, documentation, or research topics.
使用说明 (SKILL.md)
Metaso Search
Search the web via Metaso AI Search API.
Usage
python skills/metaso-search/scripts/search.py '\x3CJSON>'
Request Parameters
| 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 |
Examples
# Basic search
python scripts/search.py '{"q":"OpenClaw AI"}'
# With options
python scripts/search.py '{
"q": "人工智能最新进展",
"size": 5,
"includeSummary": true
}'
API Reference
- 官方文档: https://metaso.cn/search-api/playground
- Endpoint:
https://metaso.cn/api/v1/search - Method: POST
- Auth: Bearer token in
Authorizationheader - Content-Type:
application/json
Request Example
curl --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
}'
Response Example
{
"credits": 3,
"searchParameters": {
"q": "搜索关键词",
"scope": "webpage",
"size": 10
},
"webpages": [
{
"title": "标题",
"link": "https://example.com",
"snippet": "摘要内容",
"score": "high",
"date": "2026-03-22"
}
],
"total": 25
}
Current Status
✅ Ready to use
安全使用建议
This skill is a straightforward wrapper around Metaso's search API. Before installing: (1) Confirm you trust the Metaso provider (https://metaso.cn) because all queries and returned content go to that external service; (2) Store METASO_API_KEY securely (avoid exposing it to shared environments); (3) Ensure the agent runtime has Python and the 'requests' library installed; (4) Be aware that enabling includeRawContent may return large or sensitive text from remote sites; and (5) review provider limits, billing, and privacy policy so you know how query data is handled.
功能分析
Type: OpenClaw Skill
Name: metaso-search-skill
Version: 1.0.0
The skill is a standard API wrapper for the Metaso AI Search service. The Python script (scripts/search.py) correctly handles environment variables for authentication and makes legitimate POST requests to the official endpoint (metaso.cn) without any signs of data exfiltration, obfuscation, or malicious execution.
能力评估
Purpose & Capability
Name/description match the behavior. The script POSTs to https://metaso.cn/api/v1/search and returns results. Requested binary (python) and primary env var (METASO_API_KEY) are appropriate for a search API wrapper.
Instruction Scope
SKILL.md instructs running the included Python script with a JSON argument. The runtime instructions only require the API key and do not attempt to read other files, system state, or unrelated environment variables. The 'includeRawContent' option may return full source content from the provider (expected for a search API).
Install Mechanism
This is an instruction-only skill with no install spec, which is low risk. Minor note: the script imports the Python 'requests' library but the SKILL metadata does not declare or install that dependency; the runtime environment must have requests available or the script will fail.
Credentials
Only METASO_API_KEY is required and is justified by the claimed purpose. No other secrets, unrelated credentials, or config paths are requested.
Persistence & Privilege
The skill is not always-enabled and does not request elevated persistence or modify other skills or system configs. It runs only when invoked.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install metaso-search-skill - 安装完成后,直接呼叫该 Skill 的名称或使用
/metaso-search-skill触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of the Metaso Search skill.
- Enables web search via the Metaso AI Search API for live info, documentation, and research.
- Supports customizable parameters: query, scope, result size, pagination, summaries, and raw content.
- Provides examples for both script and API usage.
- Requires a Metaso API key for authentication.
元数据
常见问题
秘塔搜索 是什么?
Search the web using Metaso AI Search API. Use for live information, documentation, or research topics. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 173 次。
如何安装 秘塔搜索?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install metaso-search-skill」即可一键安装,无需额外配置。
秘塔搜索 是免费的吗?
是的,秘塔搜索 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
秘塔搜索 支持哪些平台?
秘塔搜索 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 秘塔搜索?
由 square123(@square123)开发并维护,当前版本 v1.0.0。
推荐 Skills