moses-mcp
The moses-mcp server provides access to TU Berlin's public Moses MTS (Modulverzeichnis) system, allowing you to search, browse, and analyze degree programs and modules without login. You can:
Search degree programs by name, optionally filtering by faculty or degree type (Bachelor/Master).
Retrieve a program's curriculum structure (e.g., Pflichtbereich, Wahlpflichtbereich) with module/credit counts per area.
List modules within a curriculum area, including credits, grading, exam type, Turnus, and StuPO passing rules.
Search modules by title or module number, returning details like credits, language, and responsible person.
Get full module details: description, learning outcomes, content, exam type, teaching language, and cross-listings (which other programs use that module).
Answer complex queries, e.g., identify mandatory modules with specific exam types, or find all programs that use a module.
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., "@moses-mcpWhich modules are mandatory for the Informatik B.Sc.?"
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.
moses-mcp
An MCP server for discovering degree programs and modules in Moses — TU Berlin's course, exam, and module planning system. It talks to Moses' official REST API (https://moseskonto.tu-berlin.de/moses/api/v2), which innoCampus (who run Moses) can provision on request.
Scope
Search and browse degree programs (Studiengänge) and their curriculum structure (Pflichtbereich, Wahlpflichtbereich, ...).
Search modules and read full module descriptions, including exam type (Prüfungsform) and which other degree programs use a given module.
Out of scope: Vorlesungsverzeichnis (VVZ)/timetables, and anything requiring login (exam registration, editing module data).
Related MCP server: OpenAlex MCP Server
Tools
Tool | What it does |
| Search degree programs by name, e.g. "Informatik" |
| Get a program's curriculum areas (Pflichtbereich, Wahlpflichtbereich, ...) with module/credit counts |
| List the modules in one curriculum area, with credits, grading, exam type, and Turnus — plus the StuPO's passing rules for that area (e.g. credit min/max) |
| Search modules by title or number, e.g. "Computer Vision" |
| Full module description: content, exam type, and which other degree programs use it |
Example things you can ask an MCP client connected to this server:
"Which modules are mandatory (Pflichtmodul) for the Informatik B.Sc.?"
"Of those, which use a Portfolioprüfung instead of a written exam?"
"Recommend some Computer Vision modules for the Computer Science Master's."
"What other degree programs can take module 40022?"
"Make me a 6-semester study plan for the Informatik B.Sc. specializing in Theoretical Computer Science" (respects each area's StuPO passing rules, not just credit totals)
Requirements
Node.js 20 or later
A Moses API token (see below)
API access
There's no self-service signup — email innoCampus (who run Moses) and ask for API access; they'll issue a token and tell you which endpoints are enabled for it. Keep the token secret: it authenticates as you, and the endpoint owners can rate-limit or block API keys that generate excessive load (e.g. bulk-scanning without cause), so use refresh: true sparingly and avoid scripting bulk queries beyond what this tool already does.
Setup
git clone <this-repo>
cd moses-mcp
npm install
cp .env.example .env # then edit .env and set API_TOKEN=<your token>
npm run buildThis produces a runnable server at dist/index.js, which communicates over stdio (standard MCP transport). The server reads .env itself on startup (resolved next to its own install location, not the caller's working directory), so a .env file in this project directory is enough — you don't need to configure the token separately in your MCP client, though you can (see below) if you'd rather not keep it in a file.
Using it with an MCP client
Claude Code
claude mcp add moses -- node /absolute/path/to/moses-mcp/dist/index.jsThis registers the server at local scope (just this project, just you). Use -s user to make it available in every project, or -s project to check a shared .mcp.json into this repo for teammates. Check claude mcp list or run /mcp inside a session to confirm it's connected.
Claude Desktop / other stdio clients
Add it to your client's MCP server config, pointing at the built dist/index.js. For example, in Claude Desktop's claude_desktop_config.json:
{
"mcpServers": {
"moses": {
"command": "node",
"args": ["/absolute/path/to/moses-mcp/dist/index.js"]
}
}
}Any MCP client that supports stdio servers can use this the same way — point it at node dist/index.js. If you'd rather not keep the token in .env, most clients also let you set per-server environment variables directly in their config (e.g. add "env": {"API_TOKEN": "..."} alongside "command"/"args" above) instead.
Enabling cross-program module usage lookups
get_module_details's usedInPrograms (which other degree programs use a module) needs a reverse-lookup index that Moses' API doesn't support querying directly — building it means scanning the full assignment tables (~445k records), which takes on the order of 10-15 minutes. So it's never built automatically; run it explicitly, and re-run occasionally to refresh (it's cached for 7 days regardless):
npm run build-usage-indexUntil this has been run at least once, usedInPrograms comes back as an empty list rather than blocking tool calls.
Development
npm install
npm run dev # run the MCP server via stdio (tsx, no build step)
npm run build # compile to dist/
npm test # run unit tests against fixture data (no network)
npm run e2e # build, then exercise all 5 tools against the LIVE APIsrc/api/client.ts is the typed REST client (token auth via X-API-Key, batched idlist lookups, a small concurrency cap). src/api/entities.ts has the API's entity shapes. The trickiest part of src/services/degreePrograms.ts is that Moses' curriculum data comes in two structurally different shapes depending on the StuPO: a newer studiengangsbereich model, and an older per-semester bolognamodulliste model still used by some programs (Informatik B.Sc. among them) — get_degree_program_structure/list_area_modules detect and handle both. src/services/moduleUsageIndex.ts builds the cross-program usage index described above. scripts/e2e-check.ts runs the built server end-to-end against the live API.
Troubleshooting
A degree program's curriculum looks empty /
mapped: false: not every Studien-/Prüfungsordnung (StuPO) has curriculum data mapped yet.get_degree_program_structureautomatically tries a few recent StuPOs to find one with data if you don't specifystupo/semesterexplicitly.Stale results after a Moses update: pass
refresh: trueto any tool to bypass the cache, or delete the.cache/directory.get_module_details'susedInProgramsis always empty: runnpm run build-usage-indexat least once — see above.A tool errors unexpectedly: the Moses API is under active development and has some known rough edges (e.g.
idlistsilently doesn't filter on a couple of endpoints — already worked around insrc/api/client.ts). If a new one shows up, issues/PRs welcome.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseAqualityCmaintenanceEnables read-only querying of Moodle as a student, including courses, assignments, grades, forums, and files, using a personal web services token.11
- AlicenseNot gradedqualityCmaintenanceEnables searching scholarly papers and authors via the OpenAlex API, with no API key required.MIT
- FlicenseNot gradedqualityBmaintenanceEnables LLMs to interact with FIT CTU course materials, including listing subjects, navigating subpages, reading content as Markdown, and performing keyword searches.
- AlicenseAqualityBmaintenanceEnables searching and retrieving course listings, departments, and syllabi from National Chengchi University's public course API using natural language.3MIT
Related MCP Connectors
Unofficial NTNU course data: search, timetables, grades, course info, and exam logistics.
Federated search of books and papers, BibTeX/RIS citations, open-access retrieval and reading.
Search and download academic papers from arXiv, PubMed, bioRxiv, medRxiv, Google Scholar, Semantic…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/rjrichie/moses-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server