秘塔搜索

v1.0.0

Search the web using Metaso AI Search API. Use for live information, documentation, or research topics.

0· 176·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for square123/metaso-search-skill.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "秘塔搜索" (square123/metaso-search-skill) from ClawHub.
Skill page: https://clawhub.ai/square123/metaso-search-skill
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required env vars: METASO_API_KEY
Required binaries: python
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install metaso-search-skill

ClawHub CLI

Package manager switcher

npx clawhub@latest install metaso-search-skill
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
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.
Assessment
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.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🔍 Clawdis
Binspython
EnvMETASO_API_KEY
Primary envMETASO_API_KEY
latestvk978vqm1b7y12eeptmzv2wde1x83dgh9
176downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

Metaso Search

Search the web via Metaso AI Search API.

Usage

python skills/metaso-search/scripts/search.py '<JSON>'

Request Parameters

ParamTypeRequiredDefaultDescription
qstryes-Search query
scopestrnowebpageSearch scope: webpage, news, paper, etc.
sizeintno10Number of results (1-50)
pageintno1Page number
conciseSnippetboolnofalseReturn concise snippet
includeSummaryboolnofalseInclude AI summary
includeRawContentboolnofalseFetch 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

Comments

Loading comments...