MCP Catalogs
首页

remote-mcp-server vs filesystem

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

remote-mcp-server
by gleanwork
filesystem
by modelcontextprotocol
Stars★ 160★ 85,748
30天用量
综合分4877
官方
分类
AI / LLM 工具开发者工具知识库 / RAG
本地文件系统开发者工具效率工具
实现语言TypeScript
最近提交1 个月前本月

remote-mcp-server · 概述

企业级MCP服务器,提供对组织知识、文档和专业技能的安全访问。

filesystem · 概述

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

remote-mcp-server · 使用场景

  • 将企业搜索功能集成到AI助手中
  • 在IDE中为开发者提供上下文信息
  • 在组织中发现主题专家

filesystem · 使用场景

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

remote-mcp-server · 安装

安装

  1. 从[安装指南](https://docs.glean.com/administration/platform/mcp/enable-mcp-servers)获取您组织的独特Glean MCP服务器URL
  1. 使用服务器URL配置您的MCP客户端(Claude Desktop、Cursor等):
{
  "mcpServers": {
    "glean": {
      "command": "http",
      "args": ["your-organization-url"]
    }
  }
}
  1. 使用OAuth 2.0设置与您组织SSO系统的身份验证

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

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