Back to Browse

Minimax MCP Server

Developer ToolsUse Caution4.2MCP RegistryLocalRemote
Free

Server data from the Official MCP Registry

MCP server for MiniMax H3 multimodal video generation

About

MCP server for MiniMax H3 multimodal video generation

Remote endpoints: streamable-http: https://minimax.mcp.acedata.cloud/mcp

Security Report

4.2
Use Caution4.2High Risk

This MCP server is well-structured with proper authentication via AceDataCloud OAuth and API tokens. The code demonstrates good security practices including input validation, type checking, and credential handling. Minor issues include broad exception handling and some logging patterns that could be tightened, but these are low-severity quality concerns that do not significantly impact security. Permissions align well with the server's stated purpose of video generation API calls. Supply chain analysis found 7 known vulnerabilities in dependencies (0 critical, 5 high severity). Package verification found 1 issue.

8 files analyzed · 14 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

What You'll Need

Set these up before or after installing:

API token from Ace Data Cloud (https://platform.acedata.cloud)Required

Environment variable: ACEDATACLOUD_API_TOKEN

How to Install & Connect

Available as Local & Remote

This plugin can run on your machine or connect to a hosted endpoint. during install.

Documentation

View on GitHub

From the project's GitHub README.

MiniMax H3 MCP

PyPI Python License

Model Context Protocol server for MiniMax H3 multimodal video generation through AceDataCloud.

Capabilities

  • Text-to-video
  • Image-, video-, and audio-guided video generation
  • 4–15 second output in 768P or 2K, with adaptive, landscape, portrait, and square ratios
  • Optional asynchronous submission, task retrieval, batch retrieval, and deletion
  • Hosted OAuth HTTP transport and local stdio transport

Tools

ToolPurpose
minimax_generate_video_from_textGenerate from a detailed prompt
minimax_generate_video_from_imagesGenerate from one to nine image URLs
minimax_generate_video_from_audioGenerate with one to three audio URLs and required images
minimax_generate_videoGenerate from the full documented content schema
minimax_list_tasksList tasks with optional timestamp filters
minimax_get_taskRetrieve one task
minimax_get_tasks_batchRetrieve several tasks
minimax_delete_taskDelete one task
minimax_list_modelsShow model constraints
minimax_list_actionsShow available workflows

Hosted server

https://minimax.mcp.acedata.cloud/mcp

The hosted server supports AceDataCloud OAuth. MCP clients that support remote OAuth can connect directly to this URL.

Public API reference: MiniMax H3 Videos API.

Local installation

pipx install mcp-minimax
export ACEDATACLOUD_API_TOKEN="YOUR_API_TOKEN"
mcp-minimax

Get a token from AceDataCloud.

Claude Code

claude mcp add minimax --transport stdio \
  --env ACEDATACLOUD_API_TOKEN=YOUR_API_TOKEN \
  -- mcp-minimax

Generic MCP configuration

{
  "mcpServers": {
    "minimax": {
      "command": "mcp-minimax",
      "env": {
        "ACEDATACLOUD_API_TOKEN": "YOUR_API_TOKEN"
      }
    }
  }
}

Examples

Text:

Generate a 6-second 16:9 video: a red fox running through a snowy forest at dawn, low tracking shot.

Images:

Animate these two reference images for 8 seconds while preserving the character and clothing.

Audio:

Create a 9:16 dance video guided by this audio, with cuts and motion following the beat.

The HTTP API waits for completion by default, while MCP generation tools default async to true so agents receive a task ID immediately. Poll it with minimax_get_task until the final AceDataCloud CDN video is available. Set async=false only when the client can safely wait for the complete result.

Development

pip install -e ".[dev,test]"
ruff check .
pytest --cov=core --cov=tools
mypy core tools

Documentation

Documentation

License

MIT

Reviews

No reviews yet

Be the first to review this server!