/ 디렉터리 / 플레이그라운드 / MiniMax-MCP
● 커뮤니티 MiniMax-AI ⚡ 바로 사용

MiniMax-MCP

제작: 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.

왜 쓰나요

핵심 기능

라이브 데모

실제 사용 모습

minimax.replay ▶ 준비됨
0/0

설치

클라이언트 선택

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

Claude Desktop → Settings → Developer → Edit Config 열기. 저장 후 앱 재시작.

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

Cursor는 Claude Desktop과 동일한 mcpServers 스키마 사용. 프로젝트 설정이 전역보다 우선.

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

Cline 사이드바의 MCP Servers 아이콘 클릭 후 "Edit Configuration" 선택.

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

Claude Desktop과 같은 형식. Windsurf 재시작 후 적용.

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

Continue는 맵이 아닌 서버 오브젝트 배열 사용.

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

context_servers에 추가. 저장 시 Zed가 핫 리로드.

claude mcp add minimax -- uvx MiniMax-MCP

한 줄 명령. claude mcp list로 확인, claude mcp remove로 제거.

사용 사례

실전 활용법: MiniMax-MCP

How to turn a blog post into narration audio

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

언제 쓸까: You want a listenable version of written content.

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

결과: Listenable audio version of your content.

함정
  • 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
함께 쓰기: filesystem

How to clone your own voice for narration

👤 Creators wanting a consistent narrator ⏱ ~10 min intermediate

언제 쓸까: You want AI narration in your own voice.

사전 조건
  • 10-60 second voice sample (clean audio, your voice) — Record via your phone; export as mp3/wav
흐름
  1. Clone
    voice_clone with sample /recordings/me.wav, name 'my-voice'.✓ 복사됨
    → Voice id returned
  2. Use it
    text_to_audio with voice='my-voice' on [paste text].✓ 복사됨
    → Output in your voice

결과: Personal narration without a mic every time.

함정
  • 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

언제 쓸까: Social content, product previews.

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

결과: Short marketing clip.

함정
  • Video generation is async and can take minutes — Always use query_video_generation to poll — don't block a chat waiting
함께 쓰기: google-workspace

조합

다른 MCP와 조합해 10배 효율

minimax + filesystem

Save generated assets into a structured content folder

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

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.✓ 복사됨

도구

이 MCP가 노출하는 것

도구입력언제 호출비용
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

비용 및 제한

운영 비용

API 쿼터
Per MiniMax plan — check current pricing at minimax.io or minimaxi.com
호출당 토큰
Modest text input; outputs are audio/image/video files
금액
Pay-per-call; cheapest to start with Flash/Hailuo-Mini equivalents
Batch short TTS into fewer longer calls when possible; video is the most expensive — cache results.

보안

권한, 시크릿, 파급범위

최소 스코프: MINIMAX_API_KEY + MINIMAX_API_HOST matched to region
자격 증명 저장: Env vars
데이터 외부 송신: Your text/audio goes to MiniMax's servers in the selected region
절대 부여 금지: Don't mix global and mainland keys — causes 'Invalid API key'

문제 해결

자주 발생하는 오류와 해결

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.

확인: 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.

대안

MiniMax-MCP 다른 것과 비교

대안언제 쓰나단점/장점
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

더 보기

리소스

📖 GitHub에서 공식 README 읽기

🐙 열린 이슈 보기

🔍 400+ MCP 서버 및 Skills 전체 보기