Edupage MCP Server
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., "@Edupage MCP Servershow my grades for this semester"
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.
Edupage MCP Server
MCP server that connects Claude to Edupage — a school information system used across Europe. Provides access to timetables, grades, homework, messages, students, teachers, and more.
Quick Setup
1. Install
cd /path/to/edupage-mcp
uv syncOr if you prefer a one-liner without cloning:
uv pip install "mcp>=1.2.0" "edupage-api>=0.12.3"2. Configure for Claude Code
The easiest way — just open the project folder and the .mcp.json will be picked up automatically. Set environment variables first:
export EDUPAGE_USERNAME=your_user
export EDUPAGE_PASSWORD=your_pass
export EDUPAGE_SUBDOMAIN=your_schoolOr add the server manually:
claude mcp add edupage -- uv run --directory /path/to/edupage-mcp python -m edupage_mcpWith auto-login via environment variables:
claude mcp add --env EDUPAGE_USERNAME=your_user --env EDUPAGE_PASSWORD=your_pass --env EDUPAGE_SUBDOMAIN=your_school edupage -- uv run --directory /path/to/edupage-mcp python -m edupage_mcp3. Configure for Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"edupage": {
"command": "uv",
"args": ["run", "--directory", "/path/to/edupage-mcp", "python", "-m", "edupage_mcp"],
"env": {
"EDUPAGE_USERNAME": "your_username",
"EDUPAGE_PASSWORD": "your_password",
"EDUPAGE_SUBDOMAIN": "your_school"
}
}
}
}4. Configure for Cowork
Use the .mcp.json file included in this repo — just set the environment variables.
Related MCP server: Smartschool MCP Server
Authentication
Two options:
Environment variables (recommended) — set
EDUPAGE_USERNAME,EDUPAGE_PASSWORD, andEDUPAGE_SUBDOMAIN. The server logs in automatically at startup.Manual login tool — call the
loginorlogin_autotool at the start of your session.
The subdomain is the part before .edupage.org in your school's URL (e.g. myschool for https://myschool.edupage.org).
Available Tools
Tool | Description |
| Log in with username, password, subdomain |
| Log in via portal (auto-detect school) |
| Get timetable for a date |
| Get Mon-Fri timetable for next week |
| Get substitutions / changes for a date |
| Get student grades/marks |
| Get students in your class |
| Get all students in the school |
| Get all teachers |
| Get all classes |
| Get all classrooms |
| Get homework assignments |
| Get all assignments (homework, tests, etc.) |
| Get recent timeline items |
| Get recent notifications |
| Get notifications since a date |
| Get school news |
| Get meal information |
| Send a message to users |
| Get all subjects |
| Get bell schedule / periods |
| Get children linked to a parent account |
| Get student absences |
| Get upcoming school events |
| All-in-one summary: grades, homework, exams, absences |
Project Structure
edupage-mcp/
├── CLAUDE.md # Developer guide
├── pyproject.toml # Package config (uv/hatch)
├── .mcp.json # Claude Code project config
├── .env.example # Example environment variables
└── src/
└── edupage_mcp/
├── __init__.py
├── __main__.py
└── server.py # MCP server implementationDevelopment
Run the server directly for testing:
uv run python -m edupage_mcpTest with MCP Inspector:
npx @modelcontextprotocol/inspector uv run python -m edupage_mcpDependencies
mcp>= 1.2.0 — Model Context Protocol Python SDKedupage-api>= 0.12.3 — Unofficial Edupage API client (GitHub)
Notes
The server uses stdio transport (reads stdin, writes stdout)
All logging goes to stderr to avoid corrupting the MCP protocol
Session persists for the lifetime of the server process
The
send_messagetool sends real messages — use with careIf Edupage requests a CAPTCHA, log in via browser first then retry
License
This project is licensed under the GPL-3.0-or-later — see the LICENSE file for details.
The edupage-api dependency is GPL-3.0 licensed, which requires derivative works to use a compatible license.
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/mhlavac/edupage-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server