{
  "schemaVersion": "1.0",
  "item": {
    "slug": "mcp-protocol",
    "name": "MCP协议配置",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/godzff/mcp-protocol",
    "canonicalUrl": "https://clawhub.ai/godzff/mcp-protocol",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/mcp-protocol",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mcp-protocol",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "_meta.json"
    ],
    "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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/mcp-protocol"
    },
    "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/mcp-protocol",
    "agentPageUrl": "https://openagent3.xyz/skills/mcp-protocol/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mcp-protocol/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mcp-protocol/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": "概述",
        "body": "本技能用于配置和管理 MCP (Model Context Protocol) 服务器，让 AI 能够调用外部工具。"
      },
      {
        "title": "1. 安装 mcporter",
        "body": "npm install -g clawhub\n\n确保 uvx 可用：\n\nwhich uvx\n# 如果没有：\ncurl -LsSf https://astral.sh/uv/install.sh | sh"
      },
      {
        "title": "2.1 创建配置文件",
        "body": "mkdir -p ~/.config/mcporter"
      },
      {
        "title": "2.2 MiniMax MCP 配置示例",
        "body": "{\n  \"mcpServers\": {\n    \"MiniMax\": {\n      \"type\": \"stdio\",\n      \"command\": \"uvx\",\n      \"args\": [\"minimax-coding-plan-mcp\"],\n      \"env\": {\n        \"MINIMAX_API_KEY\": \"你的API密钥\",\n        \"MINIMAX_MCP_BASE_PATH\": \"/tmp/mcporter-output\",\n        \"MINIMAX_API_HOST\": \"https://api.minimaxi.com\"\n      }\n    }\n  }\n}\n\n保存到 ~/.config/mcporter/mcporter.json"
      },
      {
        "title": "3. 验证配置",
        "body": "npx mcporter --config ~/.config/mcporter/mcporter.json list\n\n成功会显示：\n\n✔ Listed 1 server (1 healthy)"
      },
      {
        "title": "4.1 视觉理解",
        "body": "npx mcporter --config ~/.config/mcporter/mcporter.json call MiniMax.understand_image \\\n  \"prompt: 描述图片内容\" \\\n  \"image_source: /path/to/image.jpg\""
      },
      {
        "title": "4.2 网络搜索",
        "body": "npx mcporter --config ~/.config/mcporter/mcporter.json call MiniMax.web_search \\\n  \"query: 搜索内容\""
      },
      {
        "title": "5. 常用 MCP 服务器",
        "body": "MCP 包名功能minimax-coding-plan-mcp视觉理解、网络搜索linear-mcpLinear 项目管理filesystem-mcp文件系统操作github-mcpGitHub 操作"
      },
      {
        "title": "6.1 MCP 服务器离线",
        "body": "检查 API Key 是否正确\n检查网络连接\n确认 MCP 包名正确"
      },
      {
        "title": "6.2 参数错误",
        "body": "查看可用参数：\n\nnpx mcporter list <服务器名> --schema"
      },
      {
        "title": "6.3 权限问题",
        "body": "确保目录存在\n确保有写入权限\n\n最后更新: 2026-02-24"
      }
    ],
    "body": "MCP Skill - Model Context Protocol 使用技能\n概述\n\n本技能用于配置和管理 MCP (Model Context Protocol) 服务器，让 AI 能够调用外部工具。\n\n1. 安装 mcporter\nnpm install -g clawhub\n\n\n确保 uvx 可用：\n\nwhich uvx\n# 如果没有：\ncurl -LsSf https://astral.sh/uv/install.sh | sh\n\n2. 配置 MCP 服务器\n2.1 创建配置文件\nmkdir -p ~/.config/mcporter\n\n2.2 MiniMax MCP 配置示例\n{\n  \"mcpServers\": {\n    \"MiniMax\": {\n      \"type\": \"stdio\",\n      \"command\": \"uvx\",\n      \"args\": [\"minimax-coding-plan-mcp\"],\n      \"env\": {\n        \"MINIMAX_API_KEY\": \"你的API密钥\",\n        \"MINIMAX_MCP_BASE_PATH\": \"/tmp/mcporter-output\",\n        \"MINIMAX_API_HOST\": \"https://api.minimaxi.com\"\n      }\n    }\n  }\n}\n\n\n保存到 ~/.config/mcporter/mcporter.json\n\n3. 验证配置\nnpx mcporter --config ~/.config/mcporter/mcporter.json list\n\n\n成功会显示：\n\n✔ Listed 1 server (1 healthy)\n\n4. 调用工具\n4.1 视觉理解\nnpx mcporter --config ~/.config/mcporter/mcporter.json call MiniMax.understand_image \\\n  \"prompt: 描述图片内容\" \\\n  \"image_source: /path/to/image.jpg\"\n\n4.2 网络搜索\nnpx mcporter --config ~/.config/mcporter/mcporter.json call MiniMax.web_search \\\n  \"query: 搜索内容\"\n\n5. 常用 MCP 服务器\nMCP 包名\t功能\nminimax-coding-plan-mcp\t视觉理解、网络搜索\nlinear-mcp\tLinear 项目管理\nfilesystem-mcp\t文件系统操作\ngithub-mcp\tGitHub 操作\n6. 常见问题\n6.1 MCP 服务器离线\n检查 API Key 是否正确\n检查网络连接\n确认 MCP 包名正确\n6.2 参数错误\n\n查看可用参数：\n\nnpx mcporter list <服务器名> --schema\n\n6.3 权限问题\n确保目录存在\n确保有写入权限\n\n最后更新: 2026-02-24"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/godzff/mcp-protocol",
    "publisherUrl": "https://clawhub.ai/godzff/mcp-protocol",
    "owner": "godzff",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/mcp-protocol",
    "downloadUrl": "https://openagent3.xyz/downloads/mcp-protocol",
    "agentUrl": "https://openagent3.xyz/skills/mcp-protocol/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mcp-protocol/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mcp-protocol/agent.md"
  }
}