mengbo/mengbo-skills · Archived

minimax-coding-plan

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

First seen Feb 21, 2026

Installation

$ npx skills add mengbo/mengbo-skills --skill minimax-coding-plan

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from mengbo/mengbo-skills.

npx skills add mengbo/mengbo-skills

Browse all from mengbo/mengbo-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Also listed on

Alternate registries and mirrors of this skill.

Repository health

Default branch main
Open issues 0
Status Archived

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 4,173 B
  • docs SUMMARY.md 108 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 21 installs

SKILL.md

MiniMax Skill

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

Environment Variables

Required:

Optional:

  • MINIMAXAPIHOST: API host URL, defaults to https://api.minimaxi.com
  • MINIMAXMCPBASE_PATH: Local output directory path
  • MINIMAXAPIRESOURCE_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 MINIMAXAPIKEY 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 MINIMAXAPIKEY 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