MCP Catalogs
首页

ultimate_mcp_server vs wcgw

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

ultimate_mcp_server
by Dicklesworthstone
wcgw
by rusiaaman
Stars★ 149★ 660
30天用量
综合分8554
官方
分类
AI / LLM 工具浏览器自动化本地文件系统
开发者工具本地文件系统AI / LLM 工具
实现语言PythonPython
最近提交2 个月前1 个月前

ultimate_mcp_server · 概述

一个功能全面的 MCP server,为 AI 提供多种能力:LLM 委托、浏览器自动化、文档处理和认知记忆系统。

wcgw · 概述

一个提供Shell和代码编辑功能的MCP服务器,支持AI代理交互式终端访问。

ultimate_mcp_server · 使用场景

  • 使用 OCR 和结构化数据提取进行复杂的文档处理和分析
  • 跨多个网站进行网页自动化和研究,通过浏览器控制
  • 通过模型间的智能任务分配实现成本优化的 AI 工作流

wcgw · 使用场景

  • AI辅助软件开发,具有迭代代码执行和调试功能
  • 通过AI命令自动化文件系统操作和批量处理
  • 交互式Shell访问,能够恢复和共享任务检查点

ultimate_mcp_server · 安装

安装

  1. 克隆仓库:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. 安装依赖:
pip install -e .
  1. 对于 Claude Desktop 集成,添加到 claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. 运行服务器:
python -m ultimate_mcp_server

wcgw · 安装

安装

**Mac 和 Linux**

  1. 使用 homebrew 安装 uv: brew install uv
  2. ~/Library/Application Support/Claude/ 中创建或更新 claude_desktop_config.json 文件,内容如下:
{
  "mcpServers": {
    "wcgw": {
      "command": "uvx",
      "args": ["--python", "3.12", "wcgw@latest"]
    }
  }
}
  1. 重启 Claude Desktop

**Windows (WSL)**

  1. 安装 [uv](https://docs.astral.sh/uv/getting-started/installation/)
  2. %APPDATA%\Claude\ 中更新 claude_desktop_config.json 文件,内容如下:
{
  "mcpServers": {
    "wcgw": {
      "command": "wsl.exe",
      "args": ["uvx", "--python", "3.12", "wcgw@latest"]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。