MiniMax Unified MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MiniMax Unified MCPsearch the web for MiniMax news"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MiniMax Unified MCP
⚡ Unified MiniMax MCP for multimodal generation, Token Plan search, and image understanding.
English | 简体中文
✨ Overview
minimax-unified-mcp merges three capability groups into one installable MCP server:
Official multimodal MiniMax generation tools
Official Token Plan tools:
web_searchandunderstand_imageToken Plan quota lookup aligned with the ExoMind Team workflow
This repository is intended for local-first MCP usage in Claude, Codex, and compatible MCP clients.
🧰 Tools
Tool | Purpose |
| Query Token Plan quota and refresh window |
| Search the live web via Token Plan |
| Analyze a local image path, remote URL, or |
| Generate speech with configurable output mode |
| Low-latency speech playback path |
| List available voices |
| Clone a voice from sample audio |
| Play local or remote audio |
| Generate text-to-video or image-to-video |
| Query video generation status |
| Generate images |
| Generate music from prompt and lyrics |
| Design a new voice |
🚀 Quick Start
1. Install
cd path/to/minimax-unified-mcp
python -m pip install -e ".[dev]"2. Configure environment
Copy .env.example to .env and fill in your credentials.
Important variables:
MINIMAX_TOKEN_PLAN_API_KEY: Token Plan API keyMINIMAX_API_HOST:https://api.minimax.ioorhttps://api.minimaxi.comMINIMAX_MCP_BASE_PATH: base path for local artifactsMINIMAX_API_RESOURCE_MODE:urlorlocalFASTMCP_LOG_LEVEL: logging level, usuallyWARNINGorINFO
3. Add to your MCP client
{
"mcpServers": {
"MiniMaxUnified": {
"command": "python",
"args": ["-m", "exomind_minimax_mcp"],
"env": {
"MINIMAX_TOKEN_PLAN_API_KEY": "YOUR_TOKEN_PLAN_KEY",
"MINIMAX_API_HOST": "https://api.minimax.io",
"MINIMAX_MCP_BASE_PATH": "./output/minimax",
"MINIMAX_API_RESOURCE_MODE": "local",
"FASTMCP_LOG_LEVEL": "WARNING"
}
}
}
}See mcp_server_config_demo.json for a ready-to-copy example.
🧭 Recommended Usage
Web search
Use web_search_tool for current external information.
{
"query": "MiniMax Token Plan latest image model"
}Image understanding
Follow the official Token Plan MCP signature: prompt + image_source.
image_source supports:
local file path, such as
D:/images/demo.pngHTTP / HTTPS image URL
data:URL
{
"prompt": "Describe the UI structure in this screenshot",
"image_source": "D:/images/screenshot.png"
}Image generation then image understanding
Call
text_to_image_toolCopy one returned image URL
Pass that URL into
understand_image_tool.image_source
Low-latency TTS
Prefer text_to_audio_streaming_tool when perceived latency matters.
{
"text": "hello from MiniMax"
}Use text_to_audio_tool when you need more control over resource_mode, local output, or autoplay.
Quota field notes
quota_tool currently maps the upstream fields to their display semantics as follows:
current_interval_usage_count: remaining in current interval(当前窗口剩余)current_weekly_usage_count: weekly remaining(本周剩余)
Note: even though the field name contains usage_count, this output is treated as remaining quota, not used quota.
Video generation
Default text-to-video path uses
MiniMax-Hailuo-2.3If you choose
MiniMax-Hailuo-2.3-Fast, also providefirst_frame_imagefirst_frame_imagesupports local path, URL, ordata:URL
{
"prompt": "A cute orange cat sleeping in sunlight",
"model": "MiniMax-Hailuo-2.3-Fast",
"first_frame_image": "D:/images/cat.png",
"async_mode": true
}Music generation
Music generation is slower than typical text APIs. The unified client uses an extended request timeout for this endpoint, but real latency still depends on upstream service status.
⚙️ Configuration
Detailed guides:
📦 Output Modes
Two output modes are supported:
url: return remote URLs directlylocal: download artifacts toMINIMAX_MCP_BASE_PATH
Use local when you want reproducible local files for downstream automation.
🛡️ Errors and Quota Signals
The unified client preserves upstream errors and improves readability for common account states:
1008 insufficient balance: clearly reported as balance insufficient2056 usage limit exceeded: clearly reported as quota / usage exhausted2013 invalid params: preserved for bad payloads such as unsupported video mode combinations
✅ Testing
Run the full suite:
python -m pytest -vRun the live API matrix:
python scripts/run_live_api_matrix.py --jsonThe live matrix classifies results into statuses such as passed, unsupported, insufficient_balance, usage_limit_exceeded, timeout, and invalid_params.
🌍 Open Source
This repository is released under the MIT License.
License: LICENSE
Third-party attribution: THIRD_PARTY_NOTICES.md
Contributing: CONTRIBUTING.md
Security: SECURITY.md
📌 Status
The package runs from src/exomind_minimax_mcp/ and no longer depends on uvx for local development. It is ready for GitHub-based release packaging and ongoing MCP client integration.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/exomind-team/minimax-unified-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server