← Back to Skills Marketplace
square123

秘塔搜索

by square123 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
173
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install metaso-search-skill
Description
Search the web using Metaso AI Search API. Use for live information, documentation, or research topics.
README (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

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

Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install metaso-search-skill
  3. After installation, invoke the skill by name or use /metaso-search-skill
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Slug metaso-search-skill
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is 秘塔搜索?

Search the web using Metaso AI Search API. Use for live information, documentation, or research topics. It is an AI Agent Skill for Claude Code / OpenClaw, with 173 downloads so far.

How do I install 秘塔搜索?

Run "/install metaso-search-skill" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is 秘塔搜索 free?

Yes, 秘塔搜索 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does 秘塔搜索 support?

秘塔搜索 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created 秘塔搜索?

It is built and maintained by square123 (@square123); the current version is v1.0.0.

💬 Comments