Nexus MCP
Integrates with Moodle (specifically Union College's Nexus instance) through Moodle's official web-service API, providing read-only access to courses, assignments, submissions, grades, course materials, calendar events, and announcements.
Click on "Deploy 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., "@Nexus MCPWhat's due this week?"
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.
Nexus MCP
A read-only MCP server for Union College's Nexus (Moodle 4.5, hosted by Open LMS). Connect it to Claude and ask:
"What's due this week?" · "What's overdue?" · "Did I submit Lab 3?" · "What's my grade in CSC-385?" · "What changed in my courses today?" · "Find the lecture notes on shaders." · "Give me my daily briefing." · "What should I work on next?"
It uses Moodle's official web-service API with your own student token. It never scrapes the website and never writes anything. Unofficial: not affiliated with or endorsed by Union College or Open LMS.
Tools
Area | Tools |
Courses |
|
Assignments |
|
Grades |
|
Materials |
|
Calendar |
|
Announcements |
|
Intelligence |
|
Times are in your academic timezone (America/New_York). Errors carry a code: NEXUS_AUTH_ERROR, NEXUS_PERMISSION_ERROR, NEXUS_UNSUPPORTED, NEXUS_RESOURCE_NOT_FOUND, NEXUS_API_ERROR.
Related MCP server: mcpUPB
Setup (2 minutes)
You need uv (one-line installer below) and a Union student account.
curl -LsSf https://astral.sh/uv/install.sh | sh # skip if you already have uv
uvx union-nexus-mcp setupsetup does everything: it opens Nexus in your browser for the Okta sign-in, registers the server with every AI client it finds on your machine (Claude Desktop, Claude Code, Cursor, Windsurf, VS Code, Gemini CLI, Codex CLI), and runs the connection test. Restart the client and ask it what's due.
On the Nexus page that says "Your registration has been confirmed", click "Click here if the app does not open automatically." and allow Open Nexus MCP Login. That hands the token to the terminal; it is stored in your OS keyring. No password is ever typed into this tool. If no prompt appears, right-click that link → Copy Link Address → paste it into the terminal. Details: docs/AUTHENTICATION.md.
Pick clients explicitly with uvx union-nexus-mcp setup --client claude-desktop --client cursor, or add a client later with uvx union-nexus-mcp install --client <key> (clients lists the keys). install --dry-run prints the snippet if you'd rather edit a config by hand:
{ "mcpServers": { "nexus": { "command": "uvx", "args": ["union-nexus-mcp", "serve"] } } }GUI apps often can't see uvx on their PATH; install writes the absolute path for you (which uvx if editing manually).
Use it from any agent
One service layer, three doors:
Agent | How |
MCP clients (Claude Desktop/Code, Cursor, Windsurf, VS Code, Gemini, Codex, custom MCP clients) |
|
Command-driven agents, scripts, cron |
|
Your own Python agent |
|
Remote agents (Grok Bot, Claude.ai / ChatGPT custom connectors, hosted assistants) |
|
Commands
uvx union-nexus-mcp setup # login + client config + test
uvx union-nexus-mcp login # sign in again (token expired / new machine)
uvx union-nexus-mcp test-connection # reachability, auth, identity, capability matrix
uvx union-nexus-mcp list-courses # --all includes past terms
uvx union-nexus-mcp install --client cursor --dry-run
uvx union-nexus-mcp tools # every MCP tool with its parameters
uvx union-nexus-mcp call daily_briefing --text
uvx union-nexus-mcp expose # public HTTPS endpoint for Grok Bot etc. (needs cloudflared)
uvx union-nexus-mcp logoutWorking from a clone instead: uv sync, then uv run nexus-mcp <command>; setup/install then register the checkout itself. uv run pytest runs the mocked test-suite; uv run scripts/test_moodle_api.py --all is the verbose API diagnostic. Releases: docs/RELEASING.md.
Configuration
Copy .env.example to .env if you need to change anything. Defaults target nexus.union.edu. Notable keys: NEXUS_TOKEN (use an explicit token), NEXUS_TOKEN_STORAGE=keyring|file, NEXUS_TIMEZONE, and the NEXUS_CACHE_*_TTL lifetimes. Cached grade and submission data is always labelled cached with an as_of time.
Security
Read-only: no submission, grading, posting, messaging or enrolment functions exist in this codebase.
The only secret is your Moodle token: Keychain (or a 0600 file), sent in POST bodies, never logged.
.envand credential files are git-ignored. Revoke the token on Nexus under Preferences → Security keys.
Responsible use
Personal use only, on your own account, reading your own data. Union's Acceptable Use Policy applies; access to a system is not by itself authorization, so ask ITS if you want that confirmed.
Never share your token or credential file. Revoke it on Nexus (Preferences → Security keys) if in doubt.
What your AI client does with course content is governed by each course's AI policy and Union's Honor Code. Use this for planning and finding materials; don't use it to have an AI complete graded work unless the instructor allows it.
Course materials belong to instructors and publishers. Don't redistribute them.
Limitations
Login needs you at the keyboard (Okta/MFA). If Union expires the token, run
loginagain.Moodle has no grade-history API;
grade_historyreturns current grades with dates and says so.Material search is a text match over titles, filenames, descriptions and sections. PDF text needs
uv sync --extra pdf.Third-party activities (Turnitin, H5P, LTI) appear as modules without readable content.
Non-academic enrolments (trainings, campus resources) never end, so they count as "in progress"; use
academic_onlyto hide them.
More: docs/API_FEASIBILITY.md (what Nexus exposes and why) · docs/ARCHITECTURE.md.
mcp-name: io.github.linboxin/nexus-mcp
This server cannot be deployed
Related MCP Connectors
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
An MCP server that provides congressional transcripts
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Related MCP Servers
- FlicenseAqualityBmaintenanceAn MCP server that gives desktop AI apps access to your Waterloo LEARN courses, enabling listing courses, getting announcements, content, grades, and upcoming events through natural language.52-
- AlicenseNot gradedqualityDmaintenanceMCP server that turns UPB Virtual (Moodle) into a structured knowledge source, enabling AI assistants to query courses, assignments, deadlines, announcements, and sync materials via REST API.MIT
- AlicenseBqualityCmaintenanceMCP server for Universidade de São Paulo's student systems (Moodle, JupiterWeb) enabling assistants to query grades, schedule, tasks, and more via secure backend.204GPL 3.0
- AlicenseNot gradedqualityCmaintenanceMCP server that integrates GitHub, Brightspace, Outlook, and local files, enabling natural language queries for assignments, grades, emails, calendar events, repositories, and file operations.MIT