MCP Catalogs
首页

filesystem vs orionbelt-semantic-layer

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

filesystem
by modelcontextprotocol
orionbelt-semantic-layer
by ralfbecher
Stars★ 85,748★ 46
30天用量
综合分7745
官方
分类
本地文件系统开发者工具效率工具
开发者工具知识库 / RAGAI / LLM 工具
实现语言TypeScriptPython
最近提交本月本月

filesystem · 概述

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

orionbelt-semantic-layer · 概述

OrionBelt 语义层将 YAML 语义模型转换为针对多个数据库的优化 SQL,通过 MCP API 提供。

filesystem · 使用场景

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

orionbelt-semantic-layer · 使用场景

  • 商业智能和分析团队为多个数据库平台创建语义模型
  • 需要将业务问题转换为优化 SQL 查询的 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 中安装。

orionbelt-semantic-layer · 安装

通过单独的 MCP 客户端安装 OrionBelt MCP 服务器:

pip install orionbelt-semantic-layer-mcp

添加到 Claude Desktop 配置文件 claude_desktop_config.json

{
  "mcpServers": {
    "orionbelt": {
      "command": "uvx",
      "args": ["orionbelt-semantic-layer-mcp"]
    }
  }
}

主语义层 API 可直接安装:

pip install orionbelt-semantic-layer

或通过 Docker:

docker run -p 8080:8080 ralforion/orionbelt-api
对比内容由 README + GitHub 公开数据自动生成,定期更新。