MCP Catalogs
首页

winremote-mcp vs sequentialthinking

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

winremote-mcp
by dddabtc
sequentialthinking
by modelcontextprotocol
Stars★ 118★ 85,748
30天用量
综合分5075
官方
分类
开发者工具可观测性运维基建
AI / LLM 工具开发者工具效率工具
实现语言PythonTypeScript
最近提交本月本月

winremote-mcp · 概述

Windows 远程 MCP 服务器,提供 40+ 种工具,通过 FastMCP 实现桌面自动化、进程管理和文件操作。

sequentialthinking · 概述

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

winremote-mcp · 使用场景

  • 让 Claude、GPT 等 AI 代理远程控制 Windows GUI 应用程序
  • 从跨平台环境自动化 Windows 系统管理任务
  • 为残障人士提供可访问的 Windows 桌面控制

sequentialthinking · 使用场景

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

winremote-mcp · 安装

安装

从 PyPI(推荐)

pip install winremote-mcp

从源码安装

git clone https://github.com/dddabtc/winremote-mcp.git
cd winremote-mcp
pip install .

Claude Desktop 集成

添加到 claude_desktop_config.json

{
  "mcpServers": {
    "winremote": {
      "type": "http",
      "url": "http://192.168.1.100:8090/mcp/",
      "oauth": {
        "clientId": "my-client",
        "clientSecret": "my-secret"
      }
    }
  }
}

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