
MiniMax-MCP-JS
by MiniMax-AI·★ 122·Score 44
JavaScript/TypeScript MCP server providing MiniMax AI capabilities including image/video generation, TTS, and voice cloning.
Overview
MiniMax-MCP-JS is an official JavaScript implementation of the Model Context Protocol that connects to MiniMax's AI services. The server provides a range of tools including text-to-speech, image generation, video creation, voice cloning, and music generation. It supports multiple configuration methods including environment variables, command line arguments, and request parameters, making it flexible for different deployment scenarios.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this MCP server when you need integrated access to MiniMax's AI capabilities including text-to-speech, image generation, and video creation through the MCP protocol.
When NOT to choose this
Don't choose this if you need to work with AI providers other than MiniMax, as it's a vendor-locked solution.
Tools this server exposes
6 tools extracted from the READMEtext_to_audioConvert text to speech with customizable voice options
generate_imageGenerate images from text prompts
generate_videoCreate videos from text prompts with duration and quality options
voice_cloneClone voices from audio samples
music_generationGenerate music with customizable style and duration
voice_designCreate custom voices from descriptive prompts with preview audio
Note: Tool names were inferred from the features section and release notes, as there isn't a dedicated 'Tools' section in the README. The descriptions are based on the feature list and brief mentions of each capability.
Comparable tools
Installation
Installation
Via Smithery (Recommended for Claude Desktop)
npx -y @smithery/cli install @MiniMax-AI/MiniMax-MCP-JS --client claudeManual Installation
# Install with pnpm (recommended)
pnpm add minimax-mcp-jsConfiguration for Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"minimax-mcp-js": {
"command": "npx",
"args": [
"-y",
"minimax-mcp-js"
],
"env": {
"MINIMAX_API_HOST": "<https://api.minimaxi.chat|https://api.minimax.chat>",
"MINIMAX_API_KEY": "<your-api-key-here>",
"MINIMAX_MCP_BASE_PATH": "<local-output-dir-path>"
}
}
}
}FAQ
- Which regions are supported?
- The server supports both Global and Mainland China regions. Note that API keys and hosts must match the region - use api.minimaxi.chat for Global and api.minimax.chat for Mainland China.
- What transport modes are available?
- Three transport modes are supported: stdio (default for local clients), REST (for API services), and SSE (for applications requiring server push).
Compare MiniMax-MCP-JS with
Last updated · Auto-generated from public README + GitHub signals.