MCP Catalogs
Home

MeiGen-AI-Design-MCP vs everything

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

MeiGen-AI-Design-MCP
by jau123
everything
by modelcontextprotocol
Stars★ 1,108★ 85,748
30d uses
Score5577
Official
Categories
AI / LLM ToolsMediaDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

MeiGen-AI-Design-MCP · Summary

MCP server for AI image & video generation with 9 models, 1,400+ prompts, and parallel sub-agent orchestration.

everything · Summary

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

MeiGen-AI-Design-MCP · Use cases

  • Product photography generation from simple descriptions
  • Creating logo designs and brand assets
  • Animating still images into videos
  • Batch processing multiple creative variations in parallel

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

MeiGen-AI-Design-MCP · Install

Claude Code Plugin (Recommended)

/plugin marketplace add jau123/MeiGen-AI-Design-MCP
/plugin install meigen@meigen-marketplace

Other MCP-Compatible Hosts

Add to your MCP config (e.g. .mcp.json, claude_desktop_config.json):

{
  "mcpServers": {
    "meigen": {
      "command": "npx",
      "args": ["-y", "meigen@1.3.1"],
      "env": {
        "MEIGEN_API_TOKEN": "meigen_sk_..."
      }
    }
  }
}

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.