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 | — | — |
| Score | 53 | 77 |
| Official | — | ✓ |
| Categories | MediaAI / LLM ToolsDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this 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
- Open Claude Desktop
- Go to Settings → Plugins
- Add marketplace repository:
https://github.com/jordanrendric/claude-video-vision - Install the plugin
Alternative Installation (via CLI)
# In Claude Code
/plugin marketplace add https://github.com/jordanrendric/claude-video-vision
/plugin install claude-video-visionDependencies
- 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