modelscope.cn

minimax-web-search

通过 MiniMax MCP 进行网络搜索,适用于 OpenClaw 平台。如果你是 Claude Code 用户,请忽略此技能。

Installation

$ npx skills add https://modelscope.cn

Also in this package

Other skills from modelscope.cn · top by installs.

npx skills add https://modelscope.cn

Browse all from modelscope.cn

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version0.1.1
LicenseMIT
Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,576 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

MiniMax 网络搜索

重要提示:本技能适用于 OpenClaw 平台。如果你使用的是 Claude Code,请忽略此技能。

通过 MiniMax MCP 进行网络搜索。

触发条件

需要搜索实时信息、网络最新动态时使用。

依赖

系统依赖

依赖 安装方式
Python 3.10+ macOS: brew install python3<br>Linux: sudo apt-get install python3

Python 包

包名 用途 安装命令
mcp MCP 客户端库 pip install mcp

前置要求

  1. 安装依赖:pip install mcp
  2. 配置环境变量:复制 scripts/.env.examplescripts/.env 并填入 API Key
  3. 安装并确保 uvx minimax-coding-plan-mcp 可用

使用方法

cd ~/.openclaw/skills/minimax-web-search/scripts
source .env
python3 web_search.py "搜索关键词"

代码中调用

import sys
import os
sys.path.insert(0, "~/.openclaw/skills/minimax-web-search/scripts")
os.environ["MINIMAX_API_KEY"] = "your-key"  # 或从 .env 加载
from web_search import web_search
result = await web_search("法律AI最新动态")

配置文件

.env 文件建议放在 scripts/ 目录下,格式:

MINIMAX_API_KEY=your-api-key