MCP Catalogs
首页

filesystem vs brightspace-mcp-server

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

filesystem
by modelcontextprotocol
brightspace-mcp-server
by RohanMuppa
Stars★ 85,748★ 19
30天用量
综合分7743
官方
分类
本地文件系统开发者工具效率工具
educationAI / LLM 工具效率工具
实现语言TypeScriptTypeScript
最近提交本月1 个月前

filesystem · 概述

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

brightspace-mcp-server · 概述

Brightspace (D2L) 的 MCP 服务器,可让 AI 查看成绩、作业、通知和课程内容。

filesystem · 使用场景

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

brightspace-mcp-server · 使用场景

  • 询问成绩并在多门课程间比较表现
  • 获取即将到来的作业截止日期并创建学习计划
  • 访问和总结课程通知和讨论帖子

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

brightspace-mcp-server · 安装

安装

**选项 1:让您的 AI 助手完成** 将以下内容粘贴到 Claude Code、Cursor、Windsurf、Copilot 或任何 AI 编程助手中:

请按照 https://github.com/RohanMuppa/brightspace-mcp-server/blob/main/LLMs.md 为我安装 brightspace-mcp-server(如果是普渡学生,使用 --purdue 参数)。

**选项 2:自行运行**

npx brightspace-mcp-server setup

普渡学生可以添加 --purdue 参数以跳过输入学校 URL。

**手动客户端配置** 对于不支持自动设置的客户端:

  1. 首先运行 npx brightspace-mcp-server setup 保存凭据
  2. 使用以下命令注册服务器:npx -y brightspace-mcp-server@latest
  3. 在 Windows 上:cmd /c npx -y brightspace-mcp-server@latest

**Claude Desktop 配置** 添加到 claude_desktop_config.json

{
  "mcpServers": {
    "brightspace": {
      "command": "npx",
      "args": ["-y", "brightspace-mcp-server@latest"]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。