Edupage Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Edupage Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
edupage-mcp is a read-only MCP server for EduPage. It lets MCP clients and agents query timetable data, grades, notifications, meals, and school metadata through the edupage-api library.
Supported tools:
get_timetableget_gradesget_notificationsget_teachersget_studentsget_classesget_subjectsget_mealsget_substitutionsget_timetable_changesExperimental tool:
get_missing_teachersget_missing_teachers is exposed, but some schools block teacher substitution visibility entirely, so it may return an availability message instead of teacher data.
3.10+uvhttps://<subdomain>.edupage.orgEnvironment variables:
EDUPAGE_USERNAME=your_username
EDUPAGE_PASSWORD=your_password
EDUPAGE_SUBDOMAIN=your_school_subdomainInstall and run from PyPI with uvx:
uvx edupage-mcpFor local development:
uv sync
uv run edupage-mcpThe server uses stdio transport, so it is meant to be launched by an MCP client.
Add this to ~/.config/opencode/opencode.json or project opencode.json:
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"edupage": {
"type": "local",
"command": ["uvx", "edupage-mcp"],
"environment": {
"EDUPAGE_USERNAME": "your_username",
"EDUPAGE_PASSWORD": "your_password",
"EDUPAGE_SUBDOMAIN": "your_school_subdomain"
}
}
}
}Add this to your Claude Desktop MCP config:
{
"mcpServers": {
"edupage": {
"command": "uvx",
"args": ["edupage-mcp"],
"env": {
"EDUPAGE_USERNAME": "your_username",
"EDUPAGE_PASSWORD": "your_password",
"EDUPAGE_SUBDOMAIN": "your_school_subdomain"
}
}
}
}| Tool | Parameters | Description |
|---|---|---|
get_timetable | date_str | Timetable for a date. Defaults to today. |
get_grades | year, term | Grades, optionally filtered by school year and term. |
get_notifications | date_from | Notifications, optionally from a given date onward. |
get_teachers | none | Teachers at the school. |
get_students | none | Students in the logged-in student's class. |
get_classes | none | School classes. |
get_subjects | none | School subjects. |
get_meals | date_str | Meal menu for a date. Defaults to today. |
get_substitutions | date_str | Raw substitution rows for a date. Defaults to today. |
get_timetable_changes | date_str | Timetable changes for a date. Defaults to today. |
get_missing_teachers | date_str | Absent teachers for a date. Experimental. |
edupage-api behaviorThis project would not be possible without the upstream edupage-api library:
https://github.com/EdupageAPI/edupage-api
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.