minimax-mcp-api
MCP server that wraps MiniMax platform APIs (speech, video, image, music, and file management) as tools over stdio, enabling natural language interaction with MiniMax's AI services.
README
minimax-mcp-api
A Model Context Protocol (MCP) server written in NestJS that wraps the MiniMax platform APIs and exposes them as MCP tools over stdio.
Prerequisites
- Node.js ≥ 22 (per
engines.nodeinpackage.json). Older versions lack the TypeScript target support used intsconfig.build.json.
Install
npm install
Build
npm run build
Run (stdio)
node dist/main.js
Environment variables
| Variable | Required | Default | Description |
|---|---|---|---|
MINIMAX_API_KEY |
Yes | — | Bearer token for the MiniMax API |
MINIMAX_API_URL |
No | https://api.minimax.io |
Base URL for the MiniMax API |
LOG_LEVEL |
No | log |
One of debug | log | warn | error |
NODE_ENV |
No | development |
One of development | production | test |
Copy .env.example to .env and fill in MINIMAX_API_KEY before running.
MCP tools
| Domain | Tool | Endpoint |
|---|---|---|
| Speech | speech_t2a_http |
POST /v1/t2a_v2 |
| Speech | speech_t2a_async_create |
POST /v1/t2a_async_v2 |
| Speech | speech_t2a_async_query |
GET /v1/query/t2a_async_query_v2 |
| Speech | speech_voice_clone |
POST /v1/voice_clone |
| Video | video_text_to_video |
POST /v1/video_generation |
| Video | video_image_to_video |
POST /v1/video_generation |
| Video | video_agent_create |
POST /v1/video_generation |
| Video | video_agent_query |
GET /v1/query/video_template_generation |
| Image | image_text_to_image |
POST /v1/image_generation |
| Image | image_to_image |
POST /v1/image_generation |
| Music | music_generate |
POST /v1/music_generation |
| File | files_upload |
POST /v1/files/upload |
| File | files_list |
GET /v1/files/list |
| File | files_retrieve |
GET /v1/files/retrieve |
| File | files_retrieve_content |
GET /v1/files/retrieve_content |
| File | files_delete |
DELETE /v1/files/delete |
(16 tools total over 5 domains.)
Configure Claude Desktop
Add to ~/.config/claude_desktop_config.json (note: the path to dist/main.js
must be absolute):
{
"mcpServers": {
"minimax": {
"command": "node",
"args": ["/abs/path/to/minimax-mcp-api/dist/main.js"],
"env": {
"MINIMAX_API_KEY": "sk-..."
}
}
}
}
Probe with MCP Inspector
npm run inspect
Troubleshooting
- 401/403 from any tool —
MINIMAX_API_KEYis missing, malformed, or revoked. Verify withecho $MINIMAX_API_KEYand recopy the key from the MiniMax dashboard. npm run buildfails with TypeScript errors — Node version mismatch. Checknode -vreturnsv22.x; older Node lacks the target support configured intsconfig.build.json.- Claude Desktop can't connect — confirm
args[0]is an absolute path todist/main.js(not relative) and that the file exists (runnpm run buildfirst). MINIMAX_API_URLchange has no effect — stdio MCP servers read environment variables at startup only. Restart Claude Desktop (or the stdio process) after editing.env.
License
UNLICENSED — private project, not for redistribution.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.