minimax-coding-plan

MiniMax Coding Plan MCP - Web search and image understanding tools for developers

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "minimax-coding-plan" with this command: npx skills add mengbo/mengbo-skills/mengbo-mengbo-skills-minimax-coding-plan

MiniMax Skill

MiniMax Coding Plan MCP provides two specialized tools: web_search and understand_image, to help developers quickly retrieve information and understand image content during coding.

Environment Variables

Required:

Optional:

  • MINIMAX_API_HOST: API host URL, defaults to https://api.minimaxi.com
  • MINIMAX_MCP_BASE_PATH: Local output directory path
  • MINIMAX_API_RESOURCE_MODE: Resource mode (url or local), defaults to url

Available Tools

web_search

Performs web search based on a query and returns search results with related suggestions.

Args:

  • query (str, required): Search query. Use 3-5 keywords for best results. For time-sensitive topics, include the current date (e.g., latest iPhone 2025).

Returns: JSON object containing search results:

{
    "organic": [
        {
            "title": "Search result title",
            "link": "Result URL",
            "snippet": "Brief description or excerpt",
            "date": "Result date"
        }
    ],
    "related_searches": [{"query": "Related search suggestion"}],
    "base_resp": {"status_code": status_code, "status_msg": "Status message"}
}

Search Strategy:

  • If no useful results are returned, try rephrasing your query with different keywords.

understand_image

Analyzes and interprets image content from local files or URLs based on instructions.

Args:

  • prompt (str, required): A text prompt describing what to analyze or extract from the image.
  • image_source (str, required): Image source URL or file path.
    • URL: https://example.com/image.jpg
    • Relative path: images/photo.png
    • Absolute path: /Users/username/Documents/image.jpg
    • Note: If the file path starts with @, remove the @ prefix.

Supported formats: JPEG, PNG, WebP (max 20MB)

Returns: Text description of the image analysis result.

Usage

Execute Tools

$SKILL_DIR/scripts/exec-with-env.sh $SKILL_DIR/mcp-config.json <tool_name> '<arguments_json>'

Examples

Web Search:

$SKILL_DIR/scripts/exec-with-env.sh $SKILL_DIR/mcp-config.json web_search '{"query": "latest react features 2025"}'

Image Understanding:

$SKILL_DIR/scripts/exec-with-env.sh $SKILL_DIR/mcp-config.json understand_image '{"prompt": "Describe this image", "image_source": "https://example.com/image.jpg"}'

Execution Strategy

Important: Execute directly, don't ask beforehand

When using this skill, execute commands directly without asking users to confirm environment variables are set.

  • Environment variable status is determined at execution time
  • If execution fails, the error message will clearly indicate missing configuration
  • Only then inform the user what needs to be configured
  • Follow "fail fast" principle to avoid unnecessary interactions

Don't do this:

  • "Please confirm you have set the MINIMAX_API_KEY environment variable"
  • "Before executing, please ensure you have configured..."

Do this:

  • Execute the command directly
  • If it fails, inform the user based on the error message

Use Cases

  • Need to search for real-time or external information → Use web_search
  • Need to analyze, describe, or extract information from an image → Use understand_image
  • User provides an image that needs understanding → Use understand_image

Error Handling

If execution returns an error:

  • Check the tool name is correct
  • Verify required arguments are provided (marked with * in signatures above)
  • Ensure MINIMAX_API_KEY environment variable is set
  • Check the MCP server is accessible

This skill was auto-generated from an MCP server configuration. Generator: mcp-to-skill

References

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

pandoc-docx

No summary provided by upstream source.

Repository SourceNeeds Review
General

mcp-to-skill

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

openclaw-version-monitor

监控 OpenClaw GitHub 版本更新,获取最新版本发布说明,翻译成中文, 并推送到 Telegram 和 Feishu。用于:(1) 定时检查版本更新 (2) 推送版本更新通知 (3) 生成中文版发布说明

Archived SourceRecently Updated
Coding

ask-claude

Delegate a task to Claude Code CLI and immediately report the result back in chat. Supports persistent sessions with full context memory. Safe execution: no data exfiltration, no external calls, file operations confined to workspace. Use when the user asks to run Claude, delegate a coding task, continue a previous Claude session, or any task benefiting from Claude Code's tools (file editing, code analysis, bash, etc.).

Archived SourceRecently Updated