MCP Catalogs
首页

filesystem vs open-computer-use

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

filesystem
by modelcontextprotocol
open-computer-use
by Wide-Moat
Stars★ 85,748★ 74
30天用量
综合分7749
官方
分类
本地文件系统开发者工具效率工具
开发者工具效率工具AI / LLM 工具
实现语言TypeScriptPython
最近提交本月本月

filesystem · 概述

功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。

open-computer-use · 概述

MCP 服务器为任何 LLM 提供包含浏览器、终端、代码执行和文档功能的 Docker 工作区。

filesystem · 使用场景

  • 使 AI 模型能够读取和写入项目文件进行开发
  • 允许 Claude 或其他 MCP 客户端浏览和分析代码库
  • 为内容生成提供对特定目录的安全沙盒访问

open-computer-use · 使用场景

  • AI 代理实时浏览器交互进行网页抓取和数据分析
  • 自动化文档生成(Word、Excel、PDF)并进行专业格式设计
  • 在隔离环境中进行代码开发和测试,具有完整的终端访问权限

filesystem · 安装

安装

使用 NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

使用 Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code 扩展

点击 README 中的安装按钮直接在 VS Code 中安装。

open-computer-use · 安装

安装

git clone https://github.com/Wide-Moat/open-computer-use.git
cd open-computer-use
cp .env.example .env
# 编辑 .env — 设置 OPENAI_API_KEY(或任何 OpenAI 兼容的提供商)

# 1. 启动 Computer Use 服务器(首次运行构建工作区镜像,约 15 分钟)
docker compose up --build

# 2. 启动 Open WebUI(在另一个终端中)
docker compose -f docker-compose.webui.yml up --build

对于 MCP 客户端集成,自托管版本连接到 http://localhost:8081/mcp,托管版本使用 API key 连接到 https://api.yambr.com/mcp/computer_use

对比内容由 README + GitHub 公开数据自动生成,定期更新。