MiniMax-MCP-JS vs everything
Side-by-side comparison to help you pick between these two MCP servers.
MiniMax-MCP-JS by MiniMax-AI | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 122 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsMediaDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 10 mo ago | this month |
MiniMax-MCP-JS · Summary
JavaScript/TypeScript MCP server providing MiniMax AI capabilities including image/video generation, TTS, and voice cloning.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
MiniMax-MCP-JS · Use cases
- Content creators generating images and videos with AI assistance
- Developers integrating voice cloning and TTS into applications
- Teams using MCP-compatible clients like Claude Desktop with MiniMax services
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
MiniMax-MCP-JS · Install
Installation
Via Smithery (Recommended for Claude Desktop)
npx -y @smithery/cli install @MiniMax-AI/MiniMax-MCP-JS --client claudeManual Installation
# Install with pnpm (recommended)
pnpm add minimax-mcp-jsConfiguration for Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"minimax-mcp-js": {
"command": "npx",
"args": [
"-y",
"minimax-mcp-js"
],
"env": {
"MINIMAX_API_HOST": "<https://api.minimaxi.chat|https://api.minimax.chat>",
"MINIMAX_API_KEY": "<your-api-key-here>",
"MINIMAX_MCP_BASE_PATH": "<local-output-dir-path>"
}
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything