From 7afb4f427e3d57b113c51ca4516271f42cb25a53 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 24 Apr 2025 06:12:47 +0000 Subject: [PATCH 1/2] Update repo with server manifest from issue #110 --- .../servers/MiniMax-MCP@MiniMax-AI.json | 82 +++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 mcp-registry/servers/MiniMax-MCP@MiniMax-AI.json diff --git a/mcp-registry/servers/MiniMax-MCP@MiniMax-AI.json b/mcp-registry/servers/MiniMax-MCP@MiniMax-AI.json new file mode 100644 index 00000000..9a000691 --- /dev/null +++ b/mcp-registry/servers/MiniMax-MCP@MiniMax-AI.json @@ -0,0 +1,82 @@ +{ + "display_name": "MiniMax Model Context Protocol Server", + "license": "MIT", + "tags": [ + "text-to-speech", + "voice-clone", + "video-generation", + "image-generation", + "MCP", + "API", + "Claude", + "Cursor", + "Windsurf" + ], + "installations": { + "uvx": { + "type": "uvx", + "command": "uvx", + "args": [ + "minimax-mcp" + ], + "env": { + "MINIMAX_API_KEY": "insert-your-api-key-here", + "MINIMAX_MCP_BASE_PATH": "local-output-dir-path, such as /User/xxx/Desktop", + "MINIMAX_API_HOST": "api host, \u200bhttps://api.minimaxi.chat|https://api.minimax.chat", + "MINIMAX_API_RESOURCE_MODE": "optional, [url|local], url is default, audio/image/video are downloaded locally or provided in URL format" + }, + "description": "MiniMax MCP server for Claude Desktop" + } + }, + "examples": [ + { + "title": "", + "description": "", + "prompt": "Can you convert this text to speech? 'Welcome to the MiniMax Model Context Protocol server. This is a test of the text to speech functionality.'" + }, + { + "title": "", + "description": "", + "prompt": "Please list all available voices that I can use for text to speech." + }, + { + "title": "", + "description": "", + "prompt": "I'd like to clone a voice using these audio files: [URL to audio file 1, URL to audio file 2]" + }, + { + "title": "", + "description": "", + "prompt": "Generate a video of a cat playing piano in a jazz club." + }, + { + "title": "", + "description": "", + "prompt": "Create an image of a futuristic cityscape with flying cars and neon lights." + }, + { + "title": "", + "description": "", + "prompt": "Can you broadcast this as a news segment? 'Breaking news: Scientists have discovered a new species of deep-sea creature that glows in the dark.'" + }, + { + "title": "", + "description": "", + "prompt": "Generate a video of a serene mountain landscape with a flowing river and birds flying overhead." + } + ], + "name": "@MiniMax-AI/MiniMax-MCP", + "repository": { + "type": "git", + "url": "https://github.com/MiniMax-AI/MiniMax-MCP" + }, + "homepage": "https://github.com/MiniMax-AI/MiniMax-MCP", + "author": { + "name": "MiniMax-AI" + }, + "description": "Here is a concise description paragraph focused on what the MiniMax project does:\n\nMiniMax is an official server that enables interaction with powerful text-to-speech, voice cloning, video generation, and image generation APIs through the MiniMax Model Context Protocol (MCP). It allows MCP clients like Claude Desktop, Cursor, Windsurf, and OpenAI Agents to generate speech, clone voices, create videos and images, and more.", + "categories": [ + "Media Creation" + ], + "is_official": false +} \ No newline at end of file From 163611f110a73e5d3aca0bcdda00eccd5bdcaaa0 Mon Sep 17 00:00:00 2001 From: calmini Date: Thu, 24 Apr 2025 14:21:54 +0800 Subject: [PATCH 2/2] chore: update name --- ...x-MCP@MiniMax-AI.json => minimax-mcp.json} | 34 +++++++++++++++---- 1 file changed, 28 insertions(+), 6 deletions(-) rename mcp-registry/servers/{MiniMax-MCP@MiniMax-AI.json => minimax-mcp.json} (73%) diff --git a/mcp-registry/servers/MiniMax-MCP@MiniMax-AI.json b/mcp-registry/servers/minimax-mcp.json similarity index 73% rename from mcp-registry/servers/MiniMax-MCP@MiniMax-AI.json rename to mcp-registry/servers/minimax-mcp.json index 9a000691..1851e3eb 100644 --- a/mcp-registry/servers/MiniMax-MCP@MiniMax-AI.json +++ b/mcp-registry/servers/minimax-mcp.json @@ -20,14 +20,36 @@ "minimax-mcp" ], "env": { - "MINIMAX_API_KEY": "insert-your-api-key-here", - "MINIMAX_MCP_BASE_PATH": "local-output-dir-path, such as /User/xxx/Desktop", - "MINIMAX_API_HOST": "api host, \u200bhttps://api.minimaxi.chat|https://api.minimax.chat", - "MINIMAX_API_RESOURCE_MODE": "optional, [url|local], url is default, audio/image/video are downloaded locally or provided in URL format" + "MINIMAX_API_KEY": "${MINIMAX_API_KEY}", + "MINIMAX_MCP_BASE_PATH": "${MINIMAX_MCP_BASE_PATH}", + "MINIMAX_API_HOST": "${MINIMAX_API_HOST}", + "MINIMAX_API_RESOURCE_MODE": "${MINIMAX_API_RESOURCE_MODE}" }, "description": "MiniMax MCP server for Claude Desktop" } }, + "arguments": { + "MINIMAX_API_KEY": { + "description": "MiniMax API key", + "required": true, + "examples": "insert-your-api-key-here" + }, + "MINIMAX_MCP_BASE_PATH": { + "description": "Local output directory path", + "required": true, + "examples": "/User/xxx/Desktop" + }, + "MINIMAX_API_HOST": { + "description": "API host", + "required": true, + "examples": "https://api.minimaxi.chat|https://api.minimax.chat" + }, + "MINIMAX_API_RESOURCE_MODE": { + "description": "Resource mode", + "required": true, + "examples": "[url|local]" + } + }, "examples": [ { "title": "", @@ -65,7 +87,7 @@ "prompt": "Generate a video of a serene mountain landscape with a flowing river and birds flying overhead." } ], - "name": "@MiniMax-AI/MiniMax-MCP", + "name": "minimax-mcp", "repository": { "type": "git", "url": "https://github.com/MiniMax-AI/MiniMax-MCP" @@ -79,4 +101,4 @@ "Media Creation" ], "is_official": false -} \ No newline at end of file +}