MCP Catalogs
Home

luma-mcp vs everything

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

luma-mcp
by JochenYang
everything
by modelcontextprotocol
Stars★ 59★ 85,748
30d uses
Score4677
Official
Categories
AI / LLM ToolsDeveloper ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit1 mo agothis month

luma-mcp · Summary

Multi-Model Visual Understanding MCP Server providing image analysis capabilities to AI coding models that don't support native vision.

everything · Summary

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

luma-mcp · Use cases

  • Code analysis by providing screenshots to AI coding assistants
  • UI/UX evaluation through visual interface analysis
  • Error debugging using error message screenshots

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

luma-mcp · Install

Installation

npx -y luma-mcp

Claude Desktop Configuration

Add to your config.json:

{
  "mcpServers": {
    "luma": {
      "command": "npx",
      "args": ["-y", "luma-mcp"],
      "env": {
        "MODEL_PROVIDER": "zhipu",
        "ZHIPU_API_KEY": "your-api-key"
      }
    }
  }
}

Replace MODEL_PROVIDER and corresponding key with your chosen provider.

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.