MCP Catalogs
首页

filesystem vs mcpo

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

filesystem
by modelcontextprotocol
mcpo
by open-webui
Stars★ 85,748★ 4,197
30天用量
综合分7758
官方
分类
本地文件系统开发者工具效率工具
开发者工具AI / LLM 工具其它
实现语言TypeScriptPython
最近提交本月3 个月前

filesystem · 概述

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

mcpo · 概述

一个将MCP工具转换为OpenAPI兼容HTTP端点的代理服务器,使LLM代理能够无缝集成。

filesystem · 使用场景

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

mcpo · 使用场景

  • 将MCP工具与Open WebUI和其他期望OpenAPI的LLM前端集成
  • 通过标准HTTP接口为MCP服务器添加认证和文档以增强安全性
  • 使传统系统和Web应用程序能够使用MCP工具而无需协议更改

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 中安装。

mcpo · 安装

安装

# 使用uv(推荐)
uvx mcpo --port 8000 --api-key "top-secret" -- your_mcp_server_command

# 使用pip
pip install mcpo
mcpo --port 8000 --api-key "top-secret" -- your_mcp_server_command

Docker

docker run -p 8000:8000 ghcr.io/open-webui/mcpo:main --api-key "top-secret" -- your_mcp_server_command

Claude Desktop配置

{
  "mcpServers": {
    "mcpo-proxy": {
      "command": "uvx",
      "args": ["mcpo", "--port", "8000", "--api-key", "top-secret", "--", "your_mcp_server_command"]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。