everything vs mcp-monitor
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | mcp-monitor by seekrays | |
|---|---|---|
| Stars | ★ 85,748 | ★ 82 |
| 30天用量 | — | — |
| 综合分 | 77 | 43 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 可观测性开发者工具运维基建 |
| 实现语言 | TypeScript | Go |
| 最近提交 | 本月 | 10 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
mcp-monitor · 概述
基于Go的MCP服务器,可监控CPU、内存、磁盘、网络和进程等系统指标。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
mcp-monitor · 使用场景
- LLM助手在不切换到终端的情况下监控系统健康
- 通过对话式AI环境进行服务器指标的自动报告
- DevOps集成,通过AI接口进行实时系统诊断
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-everythingmcp-monitor · 安装
# 从源码构建
git clone https://github.com/seekrays/mcp-monitor.git
cd mcp-monitor
make build
# 运行服务器
./mcp-monitor在Claude Desktop的config.json中添加:
{
"mcpServers": {
"system-monitor": {
"command": "mcp-monitor的路径"
}
}
}