MCP Catalogs
Home

claude-video-vision vs everything

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

claude-video-vision
by jordanrendric
everything
by modelcontextprotocol
Stars★ 613★ 85,748
30d uses
Score5377
Official
Categories
MediaAI / LLM ToolsDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

claude-video-vision · Summary

Claude Code plugin that gives Claude the ability to watch and understand videos through frame extraction and audio analysis.

everything · Summary

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

claude-video-vision · Use cases

  • Video content analysis and summarization
  • Tutorial and educational content processing
  • Surveillance footage review with timestamped context

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

claude-video-vision · Install

Claude Desktop Installation

  1. Open Claude Desktop
  2. Go to Settings → Plugins
  3. Add marketplace repository: https://github.com/jordanrendric/claude-video-vision
  4. Install the plugin

Alternative Installation (via CLI)

# In Claude Code
/plugin marketplace add https://github.com/jordanrendric/claude-video-vision
/plugin install claude-video-vision

Dependencies

  • Node.js 20+
  • ffmpeg (auto-detected, setup wizard provides instructions)
  • yt-dlp (optional, for YouTube URLs)

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.