MCP Catalogs
首页

cosmotop vs everything

并排对比,帮你在这两个 MCP server 之间做选择。

cosmotop
by bjia56
everything
by modelcontextprotocol
Stars★ 67★ 85,748
30天用量
综合分4677
官方
分类
可观测性开发者工具运维基建
开发者工具AI / LLM 工具其它
实现语言C++TypeScript
最近提交本月本月

cosmotop · 概述

多平台系统监控工具,通过MCP服务器模式提供系统指标访问。

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

cosmotop · 使用场景

  • 需要实时系统信息进行故障排除或优化的AI助手
  • 需要跨不同环境监控系统健康状况的自动化工作流
  • 将系统指标集成到AI驱动仪表板解决方案的开发团队

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

cosmotop · 安装

安装

直接下载

从[GitHub releases](https://github.com/bjia56/cosmotop/releases/latest)下载预构建的二进制文件并直接运行。

Homebrew

brew tap bjia56/tap
brew install cosmotop

Docker

docker run -it --rm --net=host --pid=host ghcr.io/bjia56/cosmotop:latest

MCP服务器设置

与Claude Desktop一起使用时,添加到Claude Desktop配置:

{
  "mcpServers": {
    "cosmotop": {
      "command": "cosmotop的路径",
      "args": ["--mcp"]
    }
  }
}

从源码构建

按照README中的说明使用CMake和Cosmopolitan Libc进行构建。

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
对比内容由 README + GitHub 公开数据自动生成,定期更新。