MCP Catalogs
首页

cosmotop vs sequentialthinking

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

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

cosmotop · 概述

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

sequentialthinking · 概述

Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。

cosmotop · 使用场景

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

sequentialthinking · 使用场景

  • 规划复杂系统迁移并进行风险评估
  • 需要逐步分析的调试生产环境问题
  • 比较具有条件分支的架构选项

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进行构建。

sequentialthinking · 安装

安装

**Claude Desktop**: 添加到您的 claude_desktop_config.json 文件中:

{
  "mcpServers": {
    "sequential-thinking": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sequential-thinking"
      ]
    }
  }
}

**VS Code**: 使用安装按钮或手动配置:

{
  "servers": {
    "sequential-thinking": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sequential-thinking"
      ]
    }
  }
}

**Docker**:

{
  "mcpServers": {
    "sequentialthinking": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "mcp/sequentialthinking"
      ]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。