MCP Catalogs
首页

filesystem vs suse-ai-up

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

filesystem
by modelcontextprotocol
suse-ai-up
by SUSE
Stars★ 85,748★ 28
30天用量
综合分7744
官方
分类
本地文件系统开发者工具效率工具
运维基建AI / LLM 工具开发者工具
实现语言TypeScriptGo
最近提交本月1 个月前

filesystem · 概述

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

suse-ai-up · 概述

SUSE AI Universal Proxy 是一个全面管理和代理 MCP 服务器的平台,可在多个微服务间安全编排 AI 服务。

filesystem · 使用场景

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

suse-ai-up · 使用场景

  • 企业 AI 服务编排与集中管理
  • 多租户 MCP 服务器部署与身份验证
  • 基于插件扩展的 AI 应用开发

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

suse-ai-up · 安装

安装选项

Helm 安装(推荐)

  1. 克隆仓库:git clone https://github.com/suse/suse-ai-up
  2. 进入目录:cd suse-ai-up
  3. 在 values.yaml 中设置:

- service.type: LoadBalancer - auth.method: development(无认证)

  1. 使用 helm chart 安装:

``bash helm install suse-ai-up ./charts/suse-ai-up ``

  1. 通过 kubectl get svc suse-ai-up-service 显示的 IP 地址访问服务

本地开发

git clone https://github.com/suse/suse-ai-up.git
cd suse-ai-up
go run ./cmd/uniproxy
对比内容由 README + GitHub 公开数据自动生成,定期更新。