{
  "schemaVersion": "1.0",
  "item": {
    "slug": "minimax-mcp",
    "name": "Minimax Mcp",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/TangUsers/minimax-mcp",
    "canonicalUrl": "https://clawhub.ai/TangUsers/minimax-mcp",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/minimax-mcp",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=minimax-mcp",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "references/examples.md"
    ],
    "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/minimax-mcp"
    },
    "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-mcp",
    "agentPageUrl": "https://openagent3.xyz/skills/minimax-mcp/agent",
    "manifestUrl": "https://openagent3.xyz/skills/minimax-mcp/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/minimax-mcp/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": "Overview",
        "body": "Official MiniMax Model Context Protocol (MCP) server for coding-plan users, providing AI-powered search and vision analysis capabilities."
      },
      {
        "title": "Features",
        "body": "ToolFunctionSupported Formatsweb_searchWeb search with structured results (title, link, snippet)-understand_imageAI image analysis and content recognitionJPEG, PNG, WebP"
      },
      {
        "title": "Trigger Scenarios",
        "body": "Use this skill when user says:\n\n\"Search for xxx\" / \"Look up xxx\"\n\"Look at this image\" / \"Analyze this picture\"\n\"What's in this image\" / \"Describe this photo\"\n\"Extract content from URL\" / \"Fetch this webpage\""
      },
      {
        "title": "1. Get API Key",
        "body": "RegionAPI Key URLAPI Host🇨🇳 Chinaplatform.minimaxi.comhttps://api.minimaxi.com🇺🇳 Globalminimax.iohttps://api.minimax.io"
      },
      {
        "title": "2. Configure mcporter (Recommended)",
        "body": "# Add MCP server\nmcporter config add minimax \\\n  --command \"uvx minimax-coding-plan-mcp -y\" \\\n  --env MINIMAX_API_KEY=\"your-key\" \\\n  --env MINIMAX_API_HOST=\"https://api.minimaxi.com\"\n\n# Test connection\nmcporter list"
      },
      {
        "title": "3. Direct Usage",
        "body": "# Search\nmcporter call minimax.web_search query=\"keywords\"\n\n# Analyze image\nmcporter call minimax.understand_image prompt=\"Describe this image\" image_source=\"image-url-or-path\""
      },
      {
        "title": "Usage Examples",
        "body": "See references/examples.md"
      },
      {
        "title": "Environment Variables",
        "body": "VariableRequiredDescriptionMINIMAX_API_KEY✅Your MiniMax API KeyMINIMAX_API_HOST✅API endpoint"
      },
      {
        "title": "Important Notes",
        "body": "⚠️ API Key must match the host region!\n\nRegionAPI Key SourceAPI HostGlobalminimax.iohttps://api.minimax.ioChinaminimaxi.comhttps://api.minimaxi.com\n\nIf you get \"Invalid API key\" error, check if your Key and Host are from the same region."
      },
      {
        "title": "Troubleshooting",
        "body": "\"uvx not found\": Install uv - brew install uv or curl -LsSf https://astral.sh/uv/install.sh | sh\n\"Invalid API key\": Confirm API Key and Host are from the same region\nImage download failed: Ensure image URL is publicly accessible, supports JPEG/PNG/WebP"
      },
      {
        "title": "Related Resources",
        "body": "GitHub: https://github.com/MiniMax-AI/MiniMax-Coding-Plan-MCP\nMiniMax Platform: https://platform.minimaxi.com (China) / https://www.minimax.io (Global)"
      }
    ],
    "body": "MiniMax MCP Skill\nOverview\n\nOfficial MiniMax Model Context Protocol (MCP) server for coding-plan users, providing AI-powered search and vision analysis capabilities.\n\nFeatures\nTool\tFunction\tSupported Formats\nweb_search\tWeb search with structured results (title, link, snippet)\t-\nunderstand_image\tAI image analysis and content recognition\tJPEG, PNG, WebP\nTrigger Scenarios\n\nUse this skill when user says:\n\n\"Search for xxx\" / \"Look up xxx\"\n\"Look at this image\" / \"Analyze this picture\"\n\"What's in this image\" / \"Describe this photo\"\n\"Extract content from URL\" / \"Fetch this webpage\"\nQuick Start\n1. Get API Key\nRegion\tAPI Key URL\tAPI Host\n🇨🇳 China\tplatform.minimaxi.com\thttps://api.minimaxi.com\n🇺🇳 Global\tminimax.io\thttps://api.minimax.io\n2. Configure mcporter (Recommended)\n# Add MCP server\nmcporter config add minimax \\\n  --command \"uvx minimax-coding-plan-mcp -y\" \\\n  --env MINIMAX_API_KEY=\"your-key\" \\\n  --env MINIMAX_API_HOST=\"https://api.minimaxi.com\"\n\n# Test connection\nmcporter list\n\n3. Direct Usage\n# Search\nmcporter call minimax.web_search query=\"keywords\"\n\n# Analyze image\nmcporter call minimax.understand_image prompt=\"Describe this image\" image_source=\"image-url-or-path\"\n\nUsage Examples\n\nSee references/examples.md\n\nEnvironment Variables\nVariable\tRequired\tDescription\nMINIMAX_API_KEY\t✅\tYour MiniMax API Key\nMINIMAX_API_HOST\t✅\tAPI endpoint\nImportant Notes\n\n⚠️ API Key must match the host region!\n\nRegion\tAPI Key Source\tAPI Host\nGlobal\tminimax.io\thttps://api.minimax.io\nChina\tminimaxi.com\thttps://api.minimaxi.com\n\nIf you get \"Invalid API key\" error, check if your Key and Host are from the same region.\n\nTroubleshooting\n\"uvx not found\": Install uv - brew install uv or curl -LsSf https://astral.sh/uv/install.sh | sh\n\"Invalid API key\": Confirm API Key and Host are from the same region\nImage download failed: Ensure image URL is publicly accessible, supports JPEG/PNG/WebP\nRelated Resources\nGitHub: https://github.com/MiniMax-AI/MiniMax-Coding-Plan-MCP\nMiniMax Platform: https://platform.minimaxi.com (China) / https://www.minimax.io (Global)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/TangUsers/minimax-mcp",
    "publisherUrl": "https://clawhub.ai/TangUsers/minimax-mcp",
    "owner": "TangUsers",
    "version": "1.0.3",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/minimax-mcp",
    "downloadUrl": "https://openagent3.xyz/downloads/minimax-mcp",
    "agentUrl": "https://openagent3.xyz/skills/minimax-mcp/agent",
    "manifestUrl": "https://openagent3.xyz/skills/minimax-mcp/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/minimax-mcp/agent.md"
  }
}