claude-video-vision vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
claude-video-vision by jordanrendric | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 613 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 53 | 77 |
| 官方 | — | ✓ |
| 分类 | 多媒体AI / LLM 工具开发者工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
claude-video-vision · 概述
Claude Code插件,通过帧提取和音频分析让Claude能够观看和理解视频。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
claude-video-vision · 使用场景
- 视频内容分析和摘要
- 教程和教育内容处理
- 带时间戳上下文的监控录像审查
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
claude-video-vision · 安装
Claude Desktop 安装
- 打开Claude Desktop
- 转到设置 → 插件
- 添加市场仓库:
https://github.com/jordanrendric/claude-video-vision - 安装插件
替代安装方式(通过CLI)
# 在Claude Code中
/plugin marketplace add https://github.com/jordanrendric/claude-video-vision
/plugin install claude-video-vision依赖项
- Node.js 20+
- ffmpeg(自动检测,设置向导提供说明)
- yt-dlp(可选,用于YouTube URL)
everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything