everything vs tmux-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | tmux-mcp by nickgnd | |
|---|---|---|
| Stars | ★ 85,748 | ★ 278 |
| 30天用量 | — | — |
| 综合分 | 77 | 48 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具效率工具本地文件系统 |
| 实现语言 | TypeScript | JavaScript |
| 最近提交 | 本月 | 3 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
tmux-mcp · 概述
一个让 Claude Desktop 能够交互和控制 tmux 终端会话的 MCP 服务器。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
tmux-mcp · 使用场景
- 通过 AI 助手自动化终端任务
- 监控和调试长时间运行的终端进程
- 通过 AI 代理程序化创建 tmux 会话
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-everythingtmux-mcp · 安装
安装步骤
- 如果尚未安装,请安装 Node.js
- 安装并配置 tmux
- 添加到 Claude Desktop 配置中:
"mcpServers": {
"tmux": {
"command": "npx",
"args": ["-y", "tmux-mcp"]
}
}可指定 shell 类型:
"mcpServers": {
"tmux": {
"command": "npx",
"args": ["-y", "tmux-mcp", "--shell-type=fish"]
}
}