{
  "schemaVersion": "1.0",
  "item": {
    "slug": "minimax-web-search",
    "name": "minimax-web-search",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Thincher/minimax-web-search",
    "canonicalUrl": "https://clawhub.ai/Thincher/minimax-web-search",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/minimax-web-search",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=minimax-web-search",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "_meta.json",
      "SKILL.md",
      "scripts/web_search.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "minimax-web-search",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-12T08:38:58.650Z",
      "expiresAt": "2026-05-19T08:38:58.650Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=minimax-web-search",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=minimax-web-search",
        "contentDisposition": "attachment; filename=\"minimax-web-search-1.0.7.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "minimax-web-search"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/minimax-web-search"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/minimax-web-search",
    "agentPageUrl": "https://openagent3.xyz/skills/minimax-web-search/agent",
    "manifestUrl": "https://openagent3.xyz/skills/minimax-web-search/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/minimax-web-search/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "minimax-web-search",
        "body": "使用 MiniMax MCP 服务器进行网络搜索。"
      },
      {
        "title": "步骤 1: 检查并安装依赖",
        "body": "1.1 检查 uvx 是否可用\n\nwhich uvx\n\n如果不存在，安装 uv：\n\n方法 1: 使用官方安装脚本（推荐）\n\ncurl -LsSf https://astral.sh/uv/install.sh | sh\n\n方法 2: 使用国内镜像加速（如果官方脚本下载失败）\n\n临时使用清华镜像源安装：\n\nexport UV_INDEX_URL=\"https://pypi.tuna.tsinghua.edu.cn/simple\"\ncurl -LsSf https://astral.sh/uv/install.sh | sh\n\n或者临时使用阿里云镜像源：\n\nexport UV_INDEX_URL=\"https://mirrors.aliyun.com/pypi/simple/\"\ncurl -LsSf https://astral.sh/uv/install.sh | sh\n\n1.2 检查 MCP 服务器是否已安装\n\nuvx minimax-coding-plan-mcp --help\n\n执行命令判断是否MCP服务器已安装， 如果安装了跳到步骤 2。\n\n1.3 安装 MCP 服务器（如果未安装）\n\n方法 1: 使用默认源安装\n\nuvx install minimax-coding-plan-mcp\n\n方法 2: 使用国内镜像加速（如果默认源下载失败）\n\n临时使用清华镜像源：\n\nexport UV_INDEX_URL=\"https://pypi.tuna.tsinghua.edu.cn/simple\"\nuvx install minimax-coding-plan-mcp\n\n或者临时使用阿里云镜像源：\n\nexport UV_INDEX_URL=\"https://mirrors.aliyun.com/pypi/simple/\"\nuvx install minimax-coding-plan-mcp"
      },
      {
        "title": "步骤 2: 检查 API Key 配置",
        "body": "cat ~/.openclaw/config/minimax.json 2>/dev/null | python3 -c \"import json,sys; d=json.load(sys.stdin); print(d.get('api_key', ''))\"\n\n如果返回非空的 API Key，跳到步骤 4。"
      },
      {
        "title": "步骤 3: 配置 API Key（如果未配置）",
        "body": "3.2 如果没有找到 Key，向用户索要\n\n直接询问用户提供 MiniMax API Key。\n如果未购买MiniMax，购买地址为: https://platform.minimaxi.com/subscribe/coding-plan?code=GjuAjhGKqQ&source=link\n\n3.3 保存 API Key\n\nmkdir -p ~/.openclaw/config\ncat > ~/.openclaw/config/minimax.json << EOF\n{\n  \"api_key\": \"API密钥\",\n  \"output_path\": \"~/.openclaw/workspace/minimax-output\"\n}\nEOF"
      },
      {
        "title": "步骤 4: 使用 MCP 进行网络搜索",
        "body": "4.1 调用 web_search\n\n使用脚本调用 MCP 服务：\n\npython3 {curDir}/scripts/web_search.py \"<搜索查询>\"\n\n示例：\n\n# 搜索今日新闻\npython3 {curDir}/scripts/web_search.py \"今天的热点新闻\"\n\n4.2 API 参数说明\n\n参数说明类型query搜索查询字符串string (必填)"
      },
      {
        "title": "脚本说明",
        "body": "脚本位置：{curDir}/scripts/web_search.py\n\n功能：\n\n优先从环境变量 MINIMAX_API_KEY 读取 API Key，如果没有则从 ~/.openclaw/config/minimax.json 读取\n通过 stdio 模式启动 MCP 服务器\n发送 JSON-RPC 请求调用 web_search 工具\n返回格式化的 JSON 结果\n\n错误处理：\n\nAPI Key 未配置时提示错误\nuvx 未安装时提示安装命令\nMCP 服务器错误时显示 stderr 输出"
      }
    ],
    "body": "minimax-web-search\n\n使用 MiniMax MCP 服务器进行网络搜索。\n\n执行流程（首次需要安装，后续直接步骤4调用）\n步骤 1: 检查并安装依赖\n1.1 检查 uvx 是否可用\nwhich uvx\n\n\n如果不存在，安装 uv：\n\n方法 1: 使用官方安装脚本（推荐）\n\ncurl -LsSf https://astral.sh/uv/install.sh | sh\n\n\n方法 2: 使用国内镜像加速（如果官方脚本下载失败）\n\n临时使用清华镜像源安装：\n\nexport UV_INDEX_URL=\"https://pypi.tuna.tsinghua.edu.cn/simple\"\ncurl -LsSf https://astral.sh/uv/install.sh | sh\n\n\n或者临时使用阿里云镜像源：\n\nexport UV_INDEX_URL=\"https://mirrors.aliyun.com/pypi/simple/\"\ncurl -LsSf https://astral.sh/uv/install.sh | sh\n\n1.2 检查 MCP 服务器是否已安装\nuvx minimax-coding-plan-mcp --help\n\n\n执行命令判断是否MCP服务器已安装， 如果安装了跳到步骤 2。\n\n1.3 安装 MCP 服务器（如果未安装）\n\n方法 1: 使用默认源安装\n\nuvx install minimax-coding-plan-mcp\n\n\n方法 2: 使用国内镜像加速（如果默认源下载失败）\n\n临时使用清华镜像源：\n\nexport UV_INDEX_URL=\"https://pypi.tuna.tsinghua.edu.cn/simple\"\nuvx install minimax-coding-plan-mcp\n\n\n或者临时使用阿里云镜像源：\n\nexport UV_INDEX_URL=\"https://mirrors.aliyun.com/pypi/simple/\"\nuvx install minimax-coding-plan-mcp\n\n步骤 2: 检查 API Key 配置\ncat ~/.openclaw/config/minimax.json 2>/dev/null | python3 -c \"import json,sys; d=json.load(sys.stdin); print(d.get('api_key', ''))\"\n\n\n如果返回非空的 API Key，跳到步骤 4。\n\n步骤 3: 配置 API Key（如果未配置）\n3.2 如果没有找到 Key，向用户索要\n\n直接询问用户提供 MiniMax API Key。 如果未购买MiniMax，购买地址为: https://platform.minimaxi.com/subscribe/coding-plan?code=GjuAjhGKqQ&source=link\n\n3.3 保存 API Key\nmkdir -p ~/.openclaw/config\ncat > ~/.openclaw/config/minimax.json << EOF\n{\n  \"api_key\": \"API密钥\",\n  \"output_path\": \"~/.openclaw/workspace/minimax-output\"\n}\nEOF\n\n步骤 4: 使用 MCP 进行网络搜索\n4.1 调用 web_search\n\n使用脚本调用 MCP 服务：\n\npython3 {curDir}/scripts/web_search.py \"<搜索查询>\"\n\n\n示例：\n\n# 搜索今日新闻\npython3 {curDir}/scripts/web_search.py \"今天的热点新闻\"\n\n4.2 API 参数说明\n参数\t说明\t类型\nquery\t搜索查询字符串\tstring (必填)\n脚本说明\n\n脚本位置：{curDir}/scripts/web_search.py\n\n功能：\n\n优先从环境变量 MINIMAX_API_KEY 读取 API Key，如果没有则从 ~/.openclaw/config/minimax.json 读取\n通过 stdio 模式启动 MCP 服务器\n发送 JSON-RPC 请求调用 web_search 工具\n返回格式化的 JSON 结果\n\n错误处理：\n\nAPI Key 未配置时提示错误\nuvx 未安装时提示安装命令\nMCP 服务器错误时显示 stderr 输出"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Thincher/minimax-web-search",
    "publisherUrl": "https://clawhub.ai/Thincher/minimax-web-search",
    "owner": "Thincher",
    "version": "1.0.7",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/minimax-web-search",
    "downloadUrl": "https://openagent3.xyz/downloads/minimax-web-search",
    "agentUrl": "https://openagent3.xyz/skills/minimax-web-search/agent",
    "manifestUrl": "https://openagent3.xyz/skills/minimax-web-search/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/minimax-web-search/agent.md"
  }
}