npx skills add https://modelscope.cn/skills/@mengbo/minimax-coding-plan
mengbo/mengbo-skills · Archived
minimax-coding-plan
MiniMax Coding Plan MCP - Web search and image understanding tools for developers
Installation
npx skills add mengbo/mengbo-skills --skill minimax-coding-plan
Stronger alternatives
This repository is archived — consider an actively maintained alternative.
>- Universal document conversion using Pandoc with focus on DOCX format. Use when converting do…
151 installsConvert MCP server configuration to Agent Skill. Triggered when users mention "MCP to skill", "…
3 installsConvert documents to structured formats with OCR, table extraction, and AI-powered features. Us…
1 installsProfessional DOCX document creation, editing, and formatting using OpenXML SDK (.NET). Three pi…
4.4K installsSimilar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Use this skill when visual quality and design identity matter for a PDF. CREATE (generate from …
3.7K installsOpen, create, read, analyze, edit, or validate Excel/spreadsheet files (.xlsx, .xlsm, .csv, .ts…
3.7K installsGenerate, fill, and reformat PDFs with a token-based design system and 15 cover styles. Useful …
2.4K installsProfessional DOCX document creation and editing using OpenXML SDK. Useful for branded reports, …
2.4K installsUse when user wants to generate music, songs, or audio tracks. Triggers on any request involvin…
1.5K installsGenerate personalized music playlists by analyzing the user's music taste and generation feedba…
1.3K installsAlso in this package
Other skills from mengbo/mengbo-skills.
npx skills add 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.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Skill metadata
Parsed from SKILL.md frontmatter.
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md4,173 B -
docs
SUMMARY.md108 B
History
- First seen on skills.sh
- 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:
MINIMAXAPIKEY: MiniMax API Key (get from https://platform.minimaxi.com/subscribe/coding-plan)
Optional:
MINIMAXAPIHOST: API host URL, defaults tohttps://api.minimaxi.comMINIMAXMCPBASE_PATH: Local output directory pathMINIMAXAPIRESOURCE_MODE: Resource mode (urlorlocal), defaults tourl
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
MINIMAXAPIKEYenvironment variable is set - Check the MCP server is accessible
This skill was auto-generated from an MCP server configuration. Generator: mcp-to-skill