everything vs wmux
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | wmux by openwong2kim | |
|---|---|---|
| Stars | ★ 85,748 | ★ 76 |
| 30天用量 | — | — |
| 综合分 | 77 | 46 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具AI / LLM 工具浏览器自动化 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
wmux · 概述
Windows终端多路复用器,集成了MCP服务器,支持Claude等AI编程代理的分终端和浏览器自动化。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
wmux · 使用场景
- 同时在分终端中运行多个AI编程代理(Claude、Codex、Gemini)
- 通过AI代理使用Chrome DevTools协议自动化浏览器交互
- 创建能在应用重启和系统重启后保持的持久化终端会话
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-everythingwmux · 安装
安装选项
**Winget(推荐):**
winget install openwong2kim.wmux**Chocolatey:**
choco install wmux**安装程序:**[下载wmux Setup.exe](https://github.com/openwong2kim/wmux/releases/latest)
**一行命令(PowerShell):**
irm https://raw.githubusercontent.com/openwong2kim/wmux/main/install.ps1 | iex**Claude Desktop集成:** Wmux在启动时自动注册MCP服务器,无需手动配置。