MCP Catalogs
Home

short-video-maker vs everything

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

short-video-maker
by gyoridavid
everything
by modelcontextprotocol
Stars★ 1,129★ 85,748
30d uses
Score5077
Official
Categories
MediaProductivityAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit11 mo agothis month

short-video-maker · Summary

An MCP server that creates short-form videos from text using TTS, captions, and background footage.

everything · Summary

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

short-video-maker · Use cases

  • Content creators automatically generating short-form video content from scripts
  • Marketing teams creating social media ads at scale
  • Educators creating explainer videos with minimal technical knowledge

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

short-video-maker · Install

Installation

Docker (Recommended)

docker run -it --rm --name short-video-maker -p 3123:3123 -e LOG_LEVEL=debug -e PEXELS_API_KEY= gyoridavid/short-video-maker:latest-tiny

NPM

npm install -g @gyoridavid/short-video-maker
short-video-maker

Claude Desktop

Add to Claude Desktop config.json:

{
  "mcpServers": {
    "short-video-maker": {
      "command": "docker",
      "args": ["run", "-it", "--rm", "--name", "short-video-maker", "-p", "3123:3123", "-e", "PEXELS_API_KEY=your_key", "gyoridavid/short-video-maker:latest-tiny"]
    }
  }
}

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.