MCP Catalogs
首页

MiniMax-MCP vs everything

并排对比,帮你在这两个 MCP server 之间做选择。

MiniMax-MCP
by MiniMax-AI
everything
by modelcontextprotocol
Stars★ 1,476★ 85,748
30天用量
综合分5677
官方
分类
AI / LLM 工具多媒体开发者工具
开发者工具AI / LLM 工具其它
实现语言PythonTypeScript
最近提交本月本月

MiniMax-MCP · 概述

MiniMax 官方 MCP 服务器,提供文本转语音、图像和视频生成 API。

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

MiniMax-MCP · 使用场景

  • 使用 MiniMax 的 TTS API 为视频和演示文稿创建旁白
  • 使用语音克隆功能为 AI 助手生成自定义声音
  • 直接从 AI 提示生成营销视频和视觉内容

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

MiniMax-MCP · 安装

安装

  1. 从 [MiniMax](https://www.minimax.io/platform/user-center/basic-information/interface-key) 获取您的 API 密钥。
  2. 安装 uv 包管理器:curl -LsSf https://astral.sh/uv/install.sh | sh
  3. 使用以下设置配置您的 MCP 客户端:

对于 Claude Desktop:

{
  "mcpServers": {
    "MiniMax": {
      "command": "uvx",
      "args": [
        "minimax-mcp",
        "-y"
      ],
      "env": {
        "MINIMAX_API_KEY": "插入您的API密钥",
        "MINIMAX_MCP_BASE_PATH": "本地输出目录路径,例如 /User/xxx/Desktop",
        "MINIMAX_API_HOST": "https://api.minimax.io | https://api.minimaxi.com",
        "MINIMAX_API_RESOURCE_MODE": "可选,[url|local],默认为 url,音频/图像/视频将本地下载或以 URL 格式提供"
      }
    }
  }
}

对于 Cursor,在 Cursor -> Preferences -> Cursor Settings -> MCP -> Add new global MCP Server 中添加相同的配置。

everything · 安装

NPX(推荐)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Windows 用户请使用 cmd /c

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
对比内容由 README + GitHub 公开数据自动生成,定期更新。