MCP Connector

Access Multimedia Generation via Minimax MCP

MinimaxMCPToolkit connects CAMEL agents to MiniMax's MCP server for text-to-audio, video, image, and music generation.

Works with minimax

78
Spark score
out of 100
Updated 17 days ago
Version 0.2.90
Models

Add to Favorites

Why it matters

Integrate with Minimax AI services to leverage advanced multimedia generation capabilities, including text-to-audio, voice cloning, video, image, and music generation.

Outcomes

What it gets done

01

Connect to Minimax MCP server using API keys or environment variables.

02

Access tools for text-to-audio and voice cloning.

03

Utilize capabilities for video, image, and music generation.

04

Manage connections automatically as an async context manager.

Install

Add it to your toolbox

Run in your project directory:

curl -fsSL https://spark.entire.vc/get/camel-minimaxmcptoolkit | bash

Overview

Minimax MCPToolkit

MinimaxMCPToolkit connects a CAMEL agent to the MiniMax MCP server as an async context manager, exposing tools for text-to-audio, voice cloning, video, image, and music generation. Use it when a CAMEL agent needs to generate or manipulate multimedia through MiniMax's services.

What it does

MinimaxMCPToolkit provides an interface for interacting with MiniMax AI services using the MiniMax MCP server. It enables access to MiniMax's multimedia generation capabilities including text-to-audio, voice cloning, video generation, image generation, music generation, and voice design.

When to use - and when NOT to

Use it when a CAMEL agent needs to generate or manipulate multimedia - audio, video, images, music, or cloned/designed voices - through MiniMax's services. It can be used as an async context manager for automatic connection management, so the toolkit connects on entry and disconnects automatically on exit.

Capabilities

Text-to-audio, voice cloning, video generation, image generation, music generation, and voice design, all accessed through the MiniMax MCP server's tool set exposed via toolkit.get_tools().

How to install

Authenticate either with an explicit API key (async with MinimaxMCPToolkit(api_key="your-key") as toolkit:) or, recommended for security, via the MINIMAX_API_KEY environment variable (async with MinimaxMCPToolkit() as toolkit:). Additional environment variables: MINIMAX_API_HOST sets the API host URL (default https://api.minimax.io), and MINIMAX_MCP_BASE_PATH sets the base path for output files. A timeout attribute (optional float, default None) controls the connection timeout in seconds.

Who it's for

CAMEL agent builders who need multimedia generation - audio, voice, video, image, or music - available as agent tools through MiniMax's MCP server, without hand-rolling the connection and tool-registration logic themselves.

Source code

MinimaxMCPToolkit provides an interface for interacting with
MiniMax AI services using the MiniMax MCP server.

This toolkit enables access to MiniMax's multimedia generation
capabilities including text-to-audio, voice cloning, video generation,
image generation, music generation, and voice design.

This toolkit can be used as an async context manager for automatic
connection management:

# Using explicit API key
async with MinimaxMCPToolkit(api_key="your-key") as toolkit:
    tools = toolkit.get_tools()
    # Toolkit is automatically disconnected when exiting

# Using environment variables (recommended for security)
# Set MINIMAX_API_KEY=your-key in environment
async with MinimaxMCPToolkit() as toolkit:
    tools = toolkit.get_tools()

Environment Variables:
MINIMAX_API_KEY: MiniMax API key for authentication
MINIMAX_API_HOST: API host URL (default: https://api.minimax.io)
MINIMAX_MCP_BASE_PATH: Base path for output files

Attributes:
timeout (Optional[float]): Connection timeout in seconds.
(default: :obj:None)

FAQ

Common questions

Discussion

Questions & comments · 0

Sign In Sign in to leave a comment.