/ Diretório / Playground / MiniMax-MCP
● Comunidade MiniMax-AI ⚡ Instantâneo

MiniMax-MCP

por MiniMax-AI · MiniMax-AI/MiniMax-MCP

Official MiniMax MCP — text-to-speech, voice cloning, text-to-image, text-to-video, and music generation, all from chat.

MiniMax-AI/MiniMax-MCP is MiniMax's official MCP wrapping their TTS, voice design, image, video, and music APIs. Region-specific: Global (api.minimax.io) and Mainland (api.minimaxi.com) have separate keys.

Por que usar

Principais recursos

Demo ao vivo

Como fica na prática

minimax.replay ▶ pronto
0/0

Instalar

Escolha seu cliente

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "minimax": {
      "command": "uvx",
      "args": [
        "MiniMax-MCP"
      ],
      "_inferred": true
    }
  }
}

Abra Claude Desktop → Settings → Developer → Edit Config. Reinicie após salvar.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "minimax": {
      "command": "uvx",
      "args": [
        "MiniMax-MCP"
      ],
      "_inferred": true
    }
  }
}

Cursor usa o mesmo esquema mcpServers que o Claude Desktop. Config de projeto vence a global.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "minimax": {
      "command": "uvx",
      "args": [
        "MiniMax-MCP"
      ],
      "_inferred": true
    }
  }
}

Clique no ícone MCP Servers na barra lateral do Cline, depois "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "minimax": {
      "command": "uvx",
      "args": [
        "MiniMax-MCP"
      ],
      "_inferred": true
    }
  }
}

Mesmo formato do Claude Desktop. Reinicie o Windsurf para aplicar.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "minimax",
      "command": "uvx",
      "args": [
        "MiniMax-MCP"
      ]
    }
  ]
}

O Continue usa um array de objetos de servidor em vez de um map.

~/.config/zed/settings.json
{
  "context_servers": {
    "minimax": {
      "command": {
        "path": "uvx",
        "args": [
          "MiniMax-MCP"
        ]
      }
    }
  }
}

Adicione em context_servers. Zed recarrega automaticamente ao salvar.

claude mcp add minimax -- uvx MiniMax-MCP

Uma linha só. Verifique com claude mcp list. Remova com claude mcp remove.

Casos de uso

Usos do mundo real: MiniMax-MCP

How to turn a blog post into narration audio

👤 Creators, podcasters, accessibility teams ⏱ ~15 min beginner

Quando usar: You want a listenable version of written content.

Pré-requisitos
  • MiniMax account + API key — Global: minimax.io; Mainland: minimaxi.com. Set MINIMAX_API_KEY + MINIMAX_API_HOST matching region
  • uvx installed — brew install uv
Fluxo
  1. List voices
    list_voices — show all available voices in English.✓ Copiado
    → Voice catalog with previews
  2. Render audio
    text_to_audio: [paste article] with voice 'female-calm-en'. Save to /audio/article.mp3.✓ Copiado
    → MP3 file saved, URL returned

Resultado: Listenable audio version of your content.

Armadilhas
  • Long articles hit per-call character limits — Split into paragraphs, render, and concatenate
  • Pronunciation of proper nouns is off — Use SSML-style phonetic hints or the voice_design tool for specialized voices
Combine com: filesystem

How to clone your own voice for narration

👤 Creators wanting a consistent narrator ⏱ ~10 min intermediate

Quando usar: You want AI narration in your own voice.

Pré-requisitos
  • 10-60 second voice sample (clean audio, your voice) — Record via your phone; export as mp3/wav
Fluxo
  1. Clone
    voice_clone with sample /recordings/me.wav, name 'my-voice'.✓ Copiado
    → Voice id returned
  2. Use it
    text_to_audio with voice='my-voice' on [paste text].✓ Copiado
    → Output in your voice

Resultado: Personal narration without a mic every time.

Armadilhas
  • Using someone else's voice without consent — Don't — legal and ethical issue; use voice_design instead

How to generate an image and turn it into a short video

👤 Content creators, marketers ⏱ ~15 min intermediate

Quando usar: Social content, product previews.

Fluxo
  1. Generate image
    text_to_image: 'minimal studio product shot of a ceramic mug, natural light'.✓ Copiado
    → Image URL
  2. Animate
    generate_video with prompt 'slow rotating mug on a wooden table'. Poll status with query_video_generation.✓ Copiado
    → Video URL when ready

Resultado: Short marketing clip.

Armadilhas
  • Video generation is async and can take minutes — Always use query_video_generation to poll — don't block a chat waiting
Combine com: google-workspace

Combinações

Combine com outros MCPs para 10× de alavancagem

minimax + filesystem

Save generated assets into a structured content folder

Generate narration for each chapter in /manuscript/ and save MP3s to /audio/chapters/.✓ Copiado

Produce audio from a Google Doc, then attach as a link in the doc

Read Doc 'Launch Post', generate narration, upload to Drive, append the link as a footer.✓ Copiado

Ferramentas

O que este MCP expõe

FerramentaEntradasQuando chamarCusto
text_to_audio text: str, voice: str, format?: 'mp3'|'wav', output_path? Narrate text Per MiniMax TTS pricing
list_voices language?: str Find a voice free
voice_clone sample_path: str, name: str Custom voice Per MiniMax pricing
voice_design description: str Generate a voice from prose Per MiniMax pricing
text_to_image prompt: str, aspect_ratio? Image gen Per MiniMax image pricing
generate_video prompt: str, duration_s? Kick off video gen Per MiniMax video pricing
query_video_generation task_id Poll video job free
music_generation lyrics: str, genre?: str Create a short track Per MiniMax music pricing

Custo e limites

O que custa rodar

Cota de API
Per MiniMax plan — check current pricing at minimax.io or minimaxi.com
Tokens por chamada
Modest text input; outputs are audio/image/video files
Monetário
Pay-per-call; cheapest to start with Flash/Hailuo-Mini equivalents
Dica
Batch short TTS into fewer longer calls when possible; video is the most expensive — cache results.

Segurança

Permissões, segredos, alcance

Escopos mínimos: MINIMAX_API_KEY + MINIMAX_API_HOST matched to region
Armazenamento de credenciais: Env vars
Saída de dados: Your text/audio goes to MiniMax's servers in the selected region
Nunca conceda: Don't mix global and mainland keys — causes 'Invalid API key'

Solução de problemas

Erros comuns e correções

Invalid API key

Key and host region must match. Set MINIMAX_API_HOST=https://api.minimax.io for global or https://api.minimaxi.com for mainland.

Verificar: env | grep MINIMAX
video generation never completes

Poll with query_video_generation up to 10 min; longer-than-expected usually means server load. Retry with a new task if stuck.

voice_clone quality poor

Sample audio must be 10-60s, clean (no music/noise), single speaker.

Rate limit exceeded

MiniMax enforces per-minute and per-day caps. Back off; upgrade plan for higher limits.

Alternativas

MiniMax-MCP vs. outros

AlternativaQuando usarTroca
ElevenLabs MCPYou want Western-market-focused TTS with dedicated English voicesNo video/image/music in one bundle
OpenAI/Whisper for TTSYou already have OpenAI creditsFewer voice options than MiniMax

Mais

Recursos

📖 Leia o README oficial no GitHub

🐙 Ver issues abertas

🔍 Ver todos os 400+ servidores MCP e Skills