MCP Catalogs
Home

MiniMax-Coding-Plan-MCP vs everything

Side-by-side comparison to help you pick between these two MCP servers.

MiniMax-Coding-Plan-MCP
by MiniMax-AI
everything
by modelcontextprotocol
Stars★ 79★ 85,748
30d uses
Score4577
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit3 mo agothis month

MiniMax-Coding-Plan-MCP · Summary

Specialized MCP server providing coding-specific tools like web search and image analysis for MiniMax users.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

MiniMax-Coding-Plan-MCP · Use cases

  • Enhancing code documentation with web search
  • Analyzing UI designs and screenshots for implementation
  • Researching code solutions and best practices
  • Translating visual mockups to code implementations

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-Coding-Plan-MCP · Install

Installation

  1. Get your API key from [MiniMax](https://www.minimax.io/platform/user-center/basic-information/interface-key).
  2. Install uv (Python package manager): curl -LsSf https://astral.sh/uv/install.sh | sh
  3. Configure your MCP client with the following settings:

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "MiniMax": {
      "command": "uvx",
      "args": [
        "minimax-coding-plan-mcp",
        "-y"
      ],
      "env": {
        "MINIMAX_API_KEY": "insert-your-api-key-here",
        "MINIMAX_API_HOST": "https://api.minimax.io"  // or "https://api.minimaxi.com" for mainland
      }
    }
  }
}

Cursor

Go to Cursor -> Preferences -> Cursor Settings -> MCP -> Add new global MCP Server and add the above configuration.

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
Comparison generated from public README + GitHub signals. Last updated automatically.