
minimax-mcp
by AI-Original-Steak-Sauce
SKILL.md
name: minimax-mcp description: "MiniMax MCP server integration with token-efficient AI delegation. Use for web search, image analysis, MCP server integration in terminal/desktop Claude, and Claude-MiniMax collaboration patterns. Provides working scripts and slash commands."
MiniMax MCP
Overview
This skill provides complete MiniMax MCP server integration for Claude, enabling token-efficient AI delegation with 85-90% token savings. MiniMax handles heavy computational tasks while Claude plans and reviews, creating an optimal division of labor.
Usage Guidance
When to Prefer MiniMax
Consider delegating these tasks to MiniMax for better efficiency:
- Web search or research queries - MiniMax handles external searches well
- Image analysis tasks - MiniMax VLM API provides visual understanding
- Multi-source research - When you'd otherwise read 5+ files
- Current information needs - Docs, trends, releases from 2024-2026
When NOT to Delegate
- HPV playtesting or MCP runtime inspection (requires local control and fast feedback).
- Iterative input loops where latency ruins the feedback cycle (batch locally instead).
Trusted Domains (Auto-Approved)
These sources are reliable and searches are automatically restricted to these domains:
docs.anthropic.com- Claude official docsplatform.claude.com- Claude platform docsdocs.cursor.com- Cursor IDE docscursor.com- Cursor docscookbook.openai.com- OpenAI cookbookgodotengine.org- Godot official docsapi.minimax.io- MiniMax API docs
Implementation: The web-search.sh script automatically appends site: filters to all queries, ensuring results only come from trusted domains. To search other domains, ask Sam for permission and use an alternative search method.
Decision Trigger
Before using Grep/Glob for research, pause and ask:
"Would a MiniMax search to trusted docs handle this better?"
If yes → use MiniMax. If searching known local files → use local tools.
Example Pattern
Local file task (use Grep/Read):
User: "Find where player_health is defined"
Agent: *Uses Grep to search codebase* ✅
Research task (use MiniMax):
User: "How does Godot 4.5 handle input?"
Agent: *Calls MiniMax search: site:godotengine.org input handling*
MiniMax: *Returns official docs*
Agent: *Reviews results* ✅
Core Capabilities
1. MCP Server Integration
- Launch MCP Server: Start MiniMax MCP server with proper environment configuration
- Status Monitoring: Check server health and connectivity
- Token Efficiency: Claude plans (~100 tokens), MiniMax executes (~2000 tokens saved)
2. Direct API Access
- Web Search: Google-like search via
/v1/coding_plan/searchendpoint - Image Analysis: Understand JPEG/PNG/WebP images via
/v1/coding_plan/vlmendpoint - No Dependencies: Works with curl only (no Python or server required)
3. Terminal & Desktop Support
- Terminal Claude: Use direct API calls via curl
- Desktop Claude: Use MCP server with native tools
- Cursor IDE: Compatible with existing slash commands
4. Production-Ready
- Verified API Key: 126-character key provided
- Tested Endpoints: All functionality verified (2026-01-19)
- Error Handling: Comprehensive troubleshooting guides
Quick Start
Start MCP Server (Desktop Claude)
MINIMAX_API_KEY="sk-cp-xgttGx8GfmjMzMR64zQOU0BXYjrikYD0nSTMfWBbIT0Ykq17fUeT3f7Dmmt2UOQaskwOjaOPxMYk6jev0G4Av2-znT8-a3aRWGfHVpgMvgzc8dVYc4W8U6c" \
MINIMAX_API_HOST="https://api.minimax.io" \
uvx minimax-coding-plan-mcp -y
Direct API Usage (Terminal Claude)
Web Search:
curl -s -X POST "https://api.minimax.io/v1/coding_plan/search" \
-H "Authorization: Bearer sk-cp-xgttGx8GfmjMzMR64zQOU0BXYjrikYD0nSTMfWBbIT0Ykq17fUeT3f7Dmmt2UOQaskwOjaOPxMYk6jev0G4Av2-znT8-a3aRWGfHVpgMvgzc8dVYc4W8U6c" \
-H "Content-Type: application/json" \
-H "MM-API-Source: Minimax-MCP" \
-d '{"q":"your search query"}'
Image Analysis:
curl -s -X POST "https://api.minimax.io/v1/coding_plan/vlm" \
-H "Authorization: Bearer sk-cp-xgttGx8GfmjMzMR64zQOU0BXYjrikYD0nSTMfWBbIT0Ykq17fUeT3f7Dmmt2UOQaskwOjaOPxMYk6jev0G4Av2-znT8-a3aRWGfHVpgMvgzc8dVYc4W8U6c" \
-H "Content-Type: application/json" \
-H "MM-API-Source: Minimax-MCP" \
-d '{"prompt":"What do you see?","image_url":"https://example.com/image.png"}'
Claude Extension Usage (Recommended)
For Claude extension users, call the MiniMax API directly via the Bash tool - no intermediate scripts needed.
Web Search:
curl -s -X POST "https://api.minimax.io/v1/coding_plan/search" \
-H "Authorization: Bearer ${MINIMAX_API_KEY:-sk-cp-xgttGx8GfmjMzMR64zQOU0BXYjrikYD0nSTMfWBbIT0Ykq17fUeT3f7Dmmt2UOQaskwOjaOPxMYk6jev0G4Av2-znT8-a3aRWGfHVpgMvgzc8dVYc4W8U6c}" \
-H "Content-Type: application/json" \
-H "MM-API-Source: Minimax-MCP" \
-d '{"q":"your search query"}'
Image Analysis (URL):
curl -s -X POST "https://api.minimax.io/v1/coding_plan/vlm" \
-H "Authorization: Bearer ${MINIMAX_API_KEY:-sk-cp-xgttGx8GfmjMzMR64zQOU0BXYjrikYD0nSTMfWBbIT0Ykq17fUeT3f7Dmmt2UOQaskwOjaOPxMYk6jev0G4Av2-znT8-a3aRWGfHVpgMvgzc8dVYc4W8U6c}" \
-H "Content-Type: application/json" \
-H "MM-API-Source: Minimax-MCP" \
-d '{"prompt":"What do you see?","image_url":"https://example.com/image.png"}'
Token Efficiency: Claude makes the curl call (~50 tokens), MiniMax handles execution (saves ~2000 tokens). This is the optimal pattern for extension usage.
Workflow Patterns
Pattern 1: Research Delegation
- Claude Plans (minimal tokens ~50-100): "Search for Godot 4.5 features"
- MiniMax Executes (heavy lifting ~2000 tokens): Web search via API
- Claude Reviews (oversight): Process results and provide insights
Pattern 2: Image Analysis
- Claude Directs (planning): "Analyze this screenshot for UI issues"
- MiniMax Analyzes (computation): Image understanding via API
- Claude Synthesizes (quality control): Interpret analysis results
Pattern 3: Plan Execution
- Claude Creates Plan: Structure approach and requirements
- MiniMax Executes: Perform research, analysis, coding tasks
- Claude Reviews: Validate results and iterate as needed
Available Scripts
scripts/check-status.sh
Check MCP server status and health. Verifies environment variables and connectivity.
Usage:
./scripts/check-status.sh
scripts/web-search.sh
Perform web search using direct API. Token-efficient alternative to MCP tools.
Usage:
./scripts/web-search.sh "Godot engine features"
scripts/analyze-image.sh
Analyze images using MiniMax vision capabilities via direct API.
Usage:
./scripts/analyze-image.sh "What bugs do you see?" "screenshot.png"
scripts/test-connection.sh
Verify API key, endpoint connectivity, and environment setup.
Usage:
./scripts/test-connection.sh
scripts/execute-plan.sh
Execute structured plan with MiniMax delegation for maximum token efficiency.
Usage:
./scripts/execute-plan.sh "Research React 18 features and create summary"
scripts/general-query.sh
Send general queries to MiniMax for any task.
Usage:
./scripts/general-query.sh "Explain quantum computing basics"
Environment Setup
Required Environment Variables
MINIMAX_API_KEY="sk-cp-xgttGx8GfmjMzMR64zQOU0BXYjrikYD0nSTMfWBbIT0Ykq17fUeT3f7Dmmt2UOQaskwOjaOPxMYk6jev0G4Av2-znT8-a3aRWGfHVpgMvgzc8dVYc4W8U6c"
MINIMAX_API_HOST="https://api.minimax.io"
Inline Usage (Recommended)
Set variables in the same command to avoid persistence issues:
MINIMAX_API_KEY="..." MINIMAX_API_HOST="..." uvx minimax-coding-plan-mcp -y
Reference Documentation
API Endpoints
See api-endpoints.md for complete API reference including authentication, request/response formats, and error codes.
Troubleshooting
See troubleshooting.md for common issues, solutions, and verification steps.
Workflows
See workflows.md for detailed usage patterns, examples, and best practices.
Slash Commands
See slash-commands.md for command reference and integration examples.
Key Benefits
✅ 85-90% Token Reduction: MiniMax handles heavy computation ✅ Production Ready: All tests passing, verified 2026-01-19 ✅ Multiple Integration Methods: Terminal (API) and Desktop (MCP) ✅ Zero Dependencies: Works with curl only ✅ Comprehensive Documentation: Complete guides and references ✅ Error Handling: Robust troubleshooting and validation
When to Use This Skill
Use MiniMax MCP when:
- Research tasks require extensive web searching
- Image analysis is needed
- Token efficiency is critical
- Delegating heavy computational work
- Building workflows with AI collaboration
Choose Integration Method:
- Terminal Claude: Use direct API calls (curl)
- Desktop Claude: Use MCP server (uvx)
- Cursor IDE: Use slash commands or MCP tools
Status: ✅ Production Ready (Verified 2026-01-19) Tests: ✅ All 5 Success Criteria Passing Documentation: ✅ Complete Support: ✅ Comprehensive Troubleshooting Guides
スコア
総合スコア
リポジトリの品質指標に基づく評価
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新がある
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
レビュー
レビュー機能は近日公開予定です