MCP Catalogs
首页

win-cli-mcp-server vs sequentialthinking

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

win-cli-mcp-server
by mhprol
sequentialthinking
by modelcontextprotocol
Stars★ 0★ 85,748
30天用量
综合分3675
官方
分类
开发者工具安全运维基建
AI / LLM 工具开发者工具效率工具
实现语言TypeScriptTypeScript
最近提交2 个月前本月

win-cli-mcp-server · 概述

一个经过加固的MCP服务器,用于Windows CLI和SSH交互,修复了关键错误并提升了安全性。

sequentialthinking · 概述

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

win-cli-mcp-server · 使用场景

  • 通过Claude Desktop自动化Windows系统管理任务
  • 通过SSH在远程Linux/Unix服务器上执行命令
  • 安全运行开发环境和构建过程

sequentialthinking · 使用场景

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

win-cli-mcp-server · 安装

安装

添加到您的claude_desktop_config.json中:

{
  "mcpServers": {
    "win-cli": {
      "command": "node",
      "args": [
        "C:/path/to/win-cli-mcp-server/dist/index.js",
        "--config",
        "C:/path/to/win-cli-mcp-server/config.json"
      ]
    }
  }
}

或者克隆并设置:

git clone https://github.com/mhprol/win-cli-mcp-server.git
cd win-cli-mcp-server
npm install
npm run build

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 公开数据自动生成,定期更新。