# Send MCP协议配置 to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/mcp-protocol",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mcp-protocol",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "mcp-protocol",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T04:45:11.433Z",
      "expiresAt": "2026-05-12T04:45:11.433Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mcp-protocol",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mcp-protocol",
        "contentDisposition": "attachment; filename=\"mcp-protocol-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "mcp-protocol"
      },
      "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### 概述

本技能用于配置和管理 MCP (Model Context Protocol) 服务器，让 AI 能够调用外部工具。

### 1. 安装 mcporter

npm install -g clawhub

确保 uvx 可用：

which uvx
# 如果没有：
curl -LsSf https://astral.sh/uv/install.sh | sh

### 2.1 创建配置文件

mkdir -p ~/.config/mcporter

### 2.2 MiniMax MCP 配置示例

{
  "mcpServers": {
    "MiniMax": {
      "type": "stdio",
      "command": "uvx",
      "args": ["minimax-coding-plan-mcp"],
      "env": {
        "MINIMAX_API_KEY": "你的API密钥",
        "MINIMAX_MCP_BASE_PATH": "/tmp/mcporter-output",
        "MINIMAX_API_HOST": "https://api.minimaxi.com"
      }
    }
  }
}

保存到 ~/.config/mcporter/mcporter.json

### 3. 验证配置

npx mcporter --config ~/.config/mcporter/mcporter.json list

成功会显示：

✔ Listed 1 server (1 healthy)

### 4.1 视觉理解

npx mcporter --config ~/.config/mcporter/mcporter.json call MiniMax.understand_image \\
  "prompt: 描述图片内容" \\
  "image_source: /path/to/image.jpg"

### 4.2 网络搜索

npx mcporter --config ~/.config/mcporter/mcporter.json call MiniMax.web_search \\
  "query: 搜索内容"

### 5. 常用 MCP 服务器

MCP 包名功能minimax-coding-plan-mcp视觉理解、网络搜索linear-mcpLinear 项目管理filesystem-mcp文件系统操作github-mcpGitHub 操作

### 6.1 MCP 服务器离线

检查 API Key 是否正确
检查网络连接
确认 MCP 包名正确

### 6.2 参数错误

查看可用参数：

npx mcporter list <服务器名> --schema

### 6.3 权限问题

确保目录存在
确保有写入权限

最后更新: 2026-02-24
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: godzff
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-05T04:45:11.433Z
- Expires at: 2026-05-12T04:45:11.433Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/mcp-protocol)
- [Send to Agent page](https://openagent3.xyz/skills/mcp-protocol/agent)
- [JSON manifest](https://openagent3.xyz/skills/mcp-protocol/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/mcp-protocol/agent.md)
- [Download page](https://openagent3.xyz/downloads/mcp-protocol)