MCP Catalogs
Home

luma-api-mcp vs everything

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

luma-api-mcp
by lumalabs
everything
by modelcontextprotocol
Stars★ 24★ 85,748
30d uses
Score3477
Official
Categories
AI / LLM ToolsMediaDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit13 mo agothis month

luma-api-mcp · Summary

An MCP server that integrates Luma AI's image and video generation capabilities through Ray and Photon models.

everything · Summary

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

luma-api-mcp · Use cases

  • Create custom images with specific aspect ratios and styles for presentations
  • Generate videos from text prompts with controlled start and end frames
  • Produce marketing content combining character references with text prompts

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-api-mcp · Install

Installation

  1. Install Claude Desktop App or any MCP client
  2. Get API Key from https://lumalabs.ai/api/keys
  3. Run sh setup.sh, here it will ask for the API Key - paste it from step 2

Claude Desktop configuration:

{
  "mcpServers": {
    "luma-api": {
      "command": "python",
      "args": ["-m", "luma_api_mcp"]
    }
  }
}

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.