waterloo-learn-mcp
This server enables AI applications (Claude Desktop, ChatGPT, Claude.ai) to access your University of Waterloo LEARN (D2L) course data conversationally, using saved browser session cookies to authenticate without repeated logins.
List Courses (
list_courses): Retrieve all enrolled courses with their names and org unit (ou) IDs.Get Announcements (
get_announcements): Fetch instructor-posted announcements for a course, including title, body, posted date, and attachments.Get Course Content (
get_content): Browse a course's full content library — lectures, slides, files, and links — organized as a nested table of contents.Get Topic File: Retrieve lecture slides (PDF/PPTX) rendered as images for the AI to read diagrams.
Get Grades (
get_grades): View grade items with displayed grades, points earned, weight, and instructor feedback.Get Assignments: See assignments with due dates, instructions, submission status, and feedback.
Get Upcoming Due Dates (
get_upcoming): Check upcoming deadlines and calendar events (assignments, quizzes, exams) within a configurable look-ahead period (default 30 days, max 365).Get Course Outline: Retrieve the official syllabus/outline text, cached locally, with fallback to Outline.uwaterloo.ca or LEARN content.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@waterloo-learn-mcpShow me my grades for MATH237"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
waterloo-learn-mcp
MCP server exposing your Waterloo LEARN courses to AI apps. LEARN sits behind WatIAM + Duo, so auth is split out: you log in once in a real browser, the session is saved to auth.json, and the server reuses those cookies over plain HTTP until they expire. (A headless browser is only launched for rare scrape fallbacks, so npx playwright install chromium is still part of setup.)
auth.json, oauth.json, and .env.local hold secrets. They are gitignored — treat them like passwords.
Install
npm install
npx playwright install chromium
npm run build
npm run login # browser opens; sign in + approve Duo. Saves auth.jsonOptional: npm run login can autofill your WatIAM username/password before
waiting for Duo. Add both values to .env.local or export them in your shell:
WATIAM_USERNAME=your-watiam-user
WATIAM_PASSWORD=your-watiam-passwordRelated MCP server: Canvas MCP
Tools
Tool | Args | Returns |
| — | Course names + |
|
| Announcements (title, body, date, attachments) |
|
| Content modules/topics with URLs |
|
| Lecture PDF/PPTX rendered as one image per slide (cap 75; |
|
| Grade items (grade, points, weight, feedback) |
|
| Assignments with due dates, instructions, your submission status + files, released feedback |
|
| Due dates / events (default 30 days) |
|
| Official course outline/syllabus text from the local cache, refreshing from Outline.uwaterloo.ca when missing |
Connect to Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json, then restart the app:
{
"mcpServers": {
"waterloo-learn": {
"command": "node",
"args": ["/absolute/path/to/waterloo-learn-mcp/dist/index.js"]
}
}
}Local, no tunnel, no exposed session. Details: skills/connect-claude-desktop/SKILL.md.
Connect to a web chat with ngrok
ChatGPT and Claude.ai are cloud-hosted, so they need a public HTTPS URL for this MCP server. The default path is ngrok: the MCP server runs on your laptop, and ngrok publishes it at a stable HTTPS dev domain.
First, install and sign in to ngrok:
brew install ngrok/ngrok/ngrok
ngrok config add-authtoken <your-ngrok-authtoken>Get your free dev domain from the ngrok dashboard, then run the one-time setup:
npm run setup:ngrokWhen prompted, paste the domain only, for example example.ngrok-free.app.
The script saves it to .env.local, starts the local HTTP server, starts ngrok,
and prints your connector URL:
https://<your-ngrok-domain>/mcpUse OAuth. Leave OAuth Client ID and Client Secret blank. When the authorization
page opens, paste the connection code printed by the setup script
(LEARN_MCP_TOKEN from .env.local).
ChatGPT → Settings → Connectors → Developer mode → Add custom connector → Server URL.
Claude.ai → Settings → Connectors → "+" → name + URL.
OAuth clients and tokens are saved in oauth.json so connectors keep working after server restarts.
Treat LEARN_MCP_TOKEN like a password. The legacy URL
https://<your-ngrok-domain>/mcp/<secret> still works for clients that cannot
use OAuth.
After a reboot with ngrok
Your ngrok domain, MCP token, OAuth clients, and LEARN session all persist. After restarting your computer, run:
npm run start:ngrokLeave that terminal running while you want ChatGPT or Claude.ai to reach LEARN.
If the LEARN session expired, start:ngrok exits before starting the tunnel.
You can also check it directly:
npm run check:authTo check the tunnel from another terminal:
curl -s -H 'ngrok-skip-browser-warning: true' https://<your-ngrok-domain>/health
curl -s -H 'ngrok-skip-browser-warning: true' https://<your-ngrok-domain>/.well-known/oauth-authorization-serverExpected:
/health->okOAuth metadata -> JSON with a
registration_endpoint
ngrok may show a browser warning during OAuth. Click through once. Command-line
checks can skip it with the ngrok-skip-browser-warning header shown above.
Tailscale alternative
Tailscale Funnel also works if you prefer it. It has a nice reboot story because Funnel persists its tunnel config; only the local HTTP server needs to be running.
npm run setup:tailscale
npm run start:http
npm run autostart:http # optional: start HTTP server on login
npm run stop:http # stop HTTP autostart and free port 8787Use this connector URL:
https://<device>.ts.net/mcpAfter a reboot with Tailscale:
Ran
autostart:http-> nothing to do; it restarts itself on login.Didn't ->
npm run start:httpto bring the server back.
If Claude/ChatGPT cannot fetch OAuth config or cannot connect to
<device>.ts.net:443, reset Tailscale Serve/Funnel:
tailscale funnel reset
tailscale serve reset
tailscale funnel --bg 8787Notes
list_coursesuses the enrollments API, falling back to homepage scraping. Official titles from Outline.uwaterloo.ca are cached incache/outlines/viewer-outlines.jsonand reused when the outline session is expired. Other tools call D2L's REST API through the authenticated session.get_course_outlinereadscache/outlines/first. Cached outlines are checked against the published revision date and automatically refetched when the instructor publishes a new revision. If a course is not cached, it checks Outline.uwaterloo.ca's enrolled-course viewer, then falls back to outline links posted in LEARN content. If neither exists, look for an uploaded outline/syllabus PDF inget_content.get_topic_filereturns slides as images so the model can read diagrams, not just text. PDFs need nothing extra; PowerPoint topics additionally need LibreOffice (brew install --cask libreoffice) for the PPTX→PDF step. Works in Claude (Desktop + Claude.ai) and ChatGPT."No valid LEARN session" (or tools failing after weeks) = session expired →
npm run loginagain. Independent of reboots.Override with env vars:
LEARN_BASE_URL,LEARN_AUTH_FILE,LEARN_OUTLINE_CACHE_DIR,PORT,LEARN_MCP_TOKEN,WATIAM_USERNAME,WATIAM_PASSWORD,WATIAM_LOGIN_DOMAIN.
Disclaimer
This is an unofficial, independent tool built for personal academic use. It is not affiliated with, endorsed by, or supported by the University of Waterloo, D2L, or any related entity. "Waterloo LEARN" and related marks belong to their respective owners.
The server acts on your behalf using your own credentials to access only your own course data — it accesses nothing you couldn't already see by logging into LEARN yourself. You are responsible for using it in accordance with the University of Waterloo's acceptable-use policies and LEARN's terms of service. Don't use it to access data that isn't yours, and don't share course content in ways that violate copyright or your instructors' wishes.
LEARN's internal APIs and page structure can change without notice, which may break this tool at any time. It is provided as-is, without warranty of any kind. AI models can also misread or hallucinate content — always verify grades, due dates, and other important information against LEARN directly. Use at your own risk.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/petersenmatthew/waterloo-learn-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server