{
"mcpServers": {
"mcp-minimax-music-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 357 days ago. 6 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Model Context Protocol (MCP) Server to connect your AI with any MediaWiki
MCP server for Apple Developer Documentation - Search iOS/macOS/SwiftUI/UIKit docs, WWDC videos, Swift/Objective-C APIs & code examples in Claude, Cursor & AI assistants
MCP server for scanning and remediating hardcoded secrets using GitGuardian’s API. Detect over 500 secret types and prevent credential leaks before code goes public.
MCP server for interfacing with Godot game engine. Provides tools for launching the editor, running projects, and capturing debug output.
MCP Security Weekly
Get CVE alerts and security updates for Mcp Minimax Music Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server implementation for AI-powered audio generation using the MiniMax Music API. Developed by Falah.G.Salieh.
This MCP server enables AI agents to generate music and audio content using the MiniMax Music API through the Model Context Protocol. It provides seamless integration with MCP hosts like Claude Desktop, allowing AI agents to create music and audio based on text prompts.
Clone the repository:
git clone https://github.com/yourusername/mcp-minimax-music-server.git
cd mcp-minimax-music-server
Install dependencies:
npm install
Build the server:
npm run build
Locate your Claude Desktop configuration file:
%APPDATA%\Claude\claude_desktop_config.json~/.config/Claude/claude_desktop_config.json~/Library/Application Support/Claude/claude_desktop_config.jsonAdd the following configuration:
{
"mcpServers": {
"minimax-music-server": {
"command": "node",
"args": [
"G:\\mcp-minimax-music-server\\build\\index.js"
],
"env": {
"AIML_API_KEY": "Bearer your-aiml-api-key-here"
}
}
}
}
⚠️ Important:
- Replace the path with your actual server path
- Add "Bearer " prefix to your API key
- Use double backslashes in Windows paths
Your AIML API key can be configured in two ways:
Environment Variables (Recommended)
"AIML_API_KEY": "Bearer 3d90d64a000c4e6eb02df7e52d2166d2"Direct Configuration
The server provides a tool called generate_audio with the following parameters:
prompt (required): Text prompt for audio generationmodel (optional): Set to "minimax-music"reference_audio_url (optional): URL of reference audiogeneration_id (optional): ID from previous generation for status checkingStart new generation:
Generate audio with prompt "Create a romantic love song with gentle acoustic guitar and soft vocals"
Check generation status:
Generate audio with generation_id "abc123" and prompt "Check status"
{
"toolResult": {
"status": "completed",
"id": "generation-id",
"audio_file": {
"url": "https://cdn.example.com/audio.mp3",
"content_type": "audio/mpeg",
"file_name": "output.mp3",
"file_size": 1024000
}
}
}
The server uses the MiniMax