brightspace-mcp-server
v3.0.1
Published
MCP server for Brightspace (D2L). Check grades, due dates, assignments, announcements, syllabus, rosters and more via Claude, ChatGPT, Cursor, Windsurf, or any MCP client.
Maintainers
Readme
Brightspace MCP Server
By Rohan Muppa, ECE @ Purdue
Talk to your Brightspace courses with AI. Ask about grades, due dates, quizzes, announcements, and more. Works with Claude Desktop, Claude Code, Cursor, ChatGPT Desktop, Windsurf, and any MCP client.
This is an MCP (Model Context Protocol) server that connects your AI to D2L Brightspace so it can pull your grades, assignments, syllabus, and course content on demand.
Connects to D2L Brightspace. Automatic login supports Purdue's Microsoft Entra flow and SUNY campus selection. Other schools need a compatible automated sign-in flow; unsupported login pages return an actionable error.
Try It
"Download my lecture slides and turn them into interactive flashcards" "Grab every assignment rubric and build me a visual dashboard of what I need to hit for an A"
Install
You need: Node.js 20+ and an available native credential store: macOS Keychain, Windows Credential Manager, or Linux Secret Service. Linux requires secret-tool and an unlocked desktop keyring. Install libsecret-tools on Debian/Ubuntu, or the package providing secret-tool on your distribution. A container or SSH session without Secret Service cannot persist authentication in v2.
Option 1: Let your AI do it
Paste this into Claude Code, Cursor, Windsurf, Copilot, Codex, or any AI coding assistant:
Install brightspace-mcp-server for me by following
https://github.com/RohanMuppa/brightspace-mcp-server/blob/main/LLMs.md
(use --purdue if I'm at Purdue, or --suny if I'm at a SUNY campus).Option 2: Run it yourself
npx -y brightspace-mcp-server@latest setupPurdue students can add --purdue to skip entering the school URL:
npx -y brightspace-mcp-server@latest setup --purdueSUNY campuses share one Brightspace site, so --suny also asks which campus
you're at and skips SUNY's campus picker when you sign in:
npx -y brightspace-mcp-server@latest setup --sunyThe wizard saves your password in the native credential store and asks how you complete MFA. Authentication can wait for approval or number matching, prompt in the terminal for a code from Google Authenticator or another app, or open a visible browser for other interactive methods. The wizard can configure Claude Desktop and Cursor. Restart your AI client when it finishes.
Any other D2L school: run setup without a flag and paste your Brightspace URL (for example https://yourschool.brightspace.com).
Search your client's docs for how to add an MCP server. The server command to register is:
npx -y brightspace-mcp-server@latestOn Windows, npx must be wrapped: cmd /c npx -y brightspace-mcp-server@latest
You still need to run npx -y brightspace-mcp-server@latest setup first to save your credentials.
Session Expired?
There is nothing to log into first. Ask for your grades and the sign-in happens as part of that request, so the assistant never has to check whether you are authenticated before it can answer. Starting your AI client touches Brightspace not at all: a restart on its own will never set off an MFA prompt.
Returning the next day normally requires no action. The server renews short-lived API tokens over HTTPS using the saved Brightspace session. If that session ends, a browser restores your saved Microsoft session and tries silent SSO. Approval and code-based modes stay headless; when an automatic run needs a code, run the auth command below to enter it securely in the terminal.
Your school's policy controls when MFA is required. There is no local 24-hour cutoff, and the server no longer discards browser state after one hour. A network outage preserves the saved session and returns a temporary error.
If you miss an MFA request, automatic browser authentication pauses for five minutes before trying again. Existing tokens and HTTP token renewal still work. Browser-based SSO also pauses because Microsoft can send another phone prompt during a redirect, even without a password submission. Run this command in a terminal to retry immediately, see a number match, or enter an authenticator code:
npx -y brightspace-mcp-server@latest authMFA at Purdue commonly uses Microsoft Authenticator number matching: enter the terminal-displayed number on your phone. Google Authenticator and other one-time-code apps work too, with no setting to change: run the auth command above in a terminal and it prompts for the code when your provider asks for one. Pick the visible-browser option during setup only if your identity provider needs interaction the server cannot drive. The MCP also sends authentication progress as logging notifications to clients that display them. Some desktop clients hide server logs, so use the terminal command above for interactive MFA.
What You Can Ask About
| Topic | Examples | |-------|---------| | Grades | "Am I passing all my classes?" · "Compare my grades across all courses" | | Assignments | "What's due in the next 48 hours?" · "Summarize every assignment I haven't turned in yet" · "Give me the link to submit HW 4" | | Quizzes | "Which quizzes close this week?" · "Is Quiz 3 timed, and does it have a grace period?" | | Assignment files | "What does the lab 4 spec actually ask for?" · "Summarize the rubric attached to the project" | | Exams | "Is there a midterm in the gradebook that isn't on my assignments list?" | | Announcements | "Did any professor post something important today?" · "What did my CS prof announce this week?" | | Course content | "Find the midterm review slides" · "Download every PDF from Module 5" | | Roster | "Who are the TAs for ECE 264?" · "Get me my instructor's email" | | Discussions | "What are people saying in the final project thread?" · "Summarize the latest discussion posts" | | Planning | "Build me a study schedule based on my upcoming due dates" · "Which class needs the most attention right now?" |
Assignment results cross-check the visible course table of contents and gradebook. This catches quizzes and other graded work that some Brightspace courses omit from their normal assignment or quiz listings.
Security
- Your school URL and username live in
~/.brightspace-mcp/config.json. Your password lives in the native credential store. macOS and Windows use@napi-rs/keyring; Linux usessecret-tooldirectly to require Secret Service without a temporary kernel-key fallback. Linux secrets travel through stdin, never command-line arguments. - Each account directory stores
session.jsonfor access tokens andstorage-state.encrypted.jsonfor cookies and browser storage. Both use AES-256-GCM with a random key held in the native credential store. The application never writes new plaintext password or browser-state snapshots.D2L_SESSION_DIRchanges the local root of these account directories. - On Unix, session files are mode 0600 and their directory is mode 0700. Security also depends on your operating-system account: software running as you may be able to access the same credential store. Runtime memory and recoverable v1 files in Trash are outside the encrypted-file guarantee.
- All traffic to Brightspace is HTTPS.
- On startup the server asks the npm registry whether a newer version exists. When running through
npx, it clears this package's own stale npx cache directories so the next start downloads the new version. It never installs anything itself. SetD2L_NO_UPDATE_CHECK=1to turn the check off. - Read only: this server never submits, posts, or changes anything in Brightspace.
Contributing & Forking
Want to add your school, build a new tool, or fix something? Fork the repo, make your changes, and open a pull request. If it gets merged, it ships to every user automatically.
git clone https://github.com/RohanMuppa/brightspace-mcp-server.git
cd brightspace-mcp-server
npm install
npm run dev # tsc in watch mode
npm test # vitest, must be green before you open a PRAdd your school: Add a preset to SCHOOL_PRESETS in src/setup.ts. If your school's login flow is different, add a handler in src/auth/.
Add a new tool: Create a file in src/tools/, add the schema in schemas.ts, export it in src/tools/index.ts, and register it in src/index.ts. Use any existing tool as a template.
Run your own version: You can also fork and run it independently. Clone it, build it, and point your AI client to the local build/index.js instead of using npx. No npm needed. Just know that forks don't receive updates from this repo automatically. If your changes could help others, consider opening a PR.
Licensed under the MIT License.
Updates
Automatic, in both places it matters.
The MCP server is registered as npx -y brightspace-mcp-server@latest, so your AI client pulls the newest version every time it starts a session.
The auth CLI updates itself too. If you installed globally with npm install -g, that copy stays at whatever version you installed it at — npm never revisits it. So when the CLI notices it is behind, it re-runs itself through npx -y brightspace-mcp-server@latest auth and you get the current code. You are not prompted and there is nothing to confirm.
One caveat worth knowing: a re-exec runs the newest code, it does not overwrite the old copy on disk. npm ls -g will still report the version you installed. To actually replace it:
npm install -g brightspace-mcp-server@latest
npx clear-npx-cacheThen restart your AI client. The server and the CLI both check npm on startup, and the server re-checks every few hours, so you get told when either one falls behind — including when they disagree with each other.
Set D2L_NO_UPDATE_CHECK=1 to switch all of this off.
What's new in 3.0.0
- Signing in is part of the first tool call. The separate
check_authtool is gone, and so is the step where the assistant had to ask about your login before it could answer anything. This removes a tool, so any saved prompt that namescheck_authneeds updating. - Starting the server makes no network requests. API versions are discovered by the first request that needs them, and a tenant that is briefly unreachable no longer stops the server from starting.
- Concurrent tool calls on a cold session share one sign-in instead of racing, so you get one MFA prompt rather than several.
- Failed sign-ins now explain themselves in the tool's answer: a locked keychain, a paused MFA cooldown, or a network outage each say what to do.
- A missed MFA prompt pauses automatic sign-in for five minutes instead of four hours.
- Authenticator-code MFA (Google Authenticator and similar) works, with the code entered in the terminal.
- Every command the server prints is pinned to
@latest, so following its own advice can never run a stale copy.
What's new in 2.0.0
- Headless saved-credential login and terminal MFA, with silent session reuse across restarts.
- Native secure credential storage and encrypted browser-state migration from v1.
- Removed the one-hour browser-state cutoff and destructive profile recovery.
- Process-level authentication coordination, failed-MFA cooldown, and transport errors that preserve your session.
- Publishing waits for the test matrix on macOS, Windows, and Linux.
Report a bug · MIT · Copyright 2026 Rohan Muppa
