everything vs mmx-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mmx-mcp-server by zth0828 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 31 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsMediaProductivity |
| Language | TypeScript | JavaScript |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mmx-mcp-server · Summary
MCP server providing MiniMax's multi-modal capabilities including text, search, image processing, voice synthesis and more.
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
mmx-mcp-server · Use cases
- Content creators generating images and videos using MiniMax's capabilities
- Researchers performing web searches and image analysis through MCP-enabled clients
- Developers integrating MiniMax's text, voice, and media generation into their workflows
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-everythingmmx-mcp-server · Install
npm install -g mmx-cli
git clone https://github.com/zth0828/mmx-mcp-server.git
cd mmx-mcp-server
npm install
npm run buildAdd to your Claude Desktop settings.json:
{
"mcpServers": {
"mmx": {
"command": "node",
"args": ["/path/to/mmx-mcp-server/dist/index.js"],
"env": {
"MINIMAX_API_KEY": "sk-xxxxx"
}
}
}
}