Aula 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., "@Aula MCP ServerWhat's happening at school 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.
Aula MCP Server
An MCP (Model Context Protocol) server that gives Claude real-time access to Aula.dk — the Danish school communication platform. Ask Claude about your child's school day, upcoming events, messages from teachers, and more — all translated from Danish on the fly.
Prerequisites
Node.js 18+
Google Chrome installed (used for MitID authentication)
A MitID account linked to your child's Aula profile
Claude Desktop (Windows, macOS, or Linux)
Related MCP server: School MCP
Quick Start
Add this to your Claude Desktop config file:
Windows: %APPDATA%\Claude\claude_desktop_config.json
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"aula": {
"command": "npx",
"args": ["-y", "@ilenhart/aula-mcp-server"],
"env": {
"BROWSER_EXECUTABLE_PATH": "C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe",
"AULA_CHILD_NAME": "YourChildFirstName"
}
}
}
}Restart Claude Desktop. Then just ask Claude: "Log me into Aula" — a Chrome window will open for MitID authentication.
How Authentication Works
Aula.dk uses Denmark's MitID national 2FA system. There's no API key — you authenticate by scanning a QR code with the MitID phone app.
Ask Claude to log into Aula
A Chrome window opens with the Aula login page
Click through to the MitID screen, enter your username, and scan the QR code with your MitID app
The server detects the completed login, captures the session cookie, and closes the browser
The session is kept alive automatically with background pings every 15 minutes
Sessions persist across Claude Desktop restarts (stored in ~/.aula-mcp/session.json). You only need to re-authenticate if the session expires (typically after server maintenance).
Available Tools
Authentication
Tool | Description |
| Start MitID auth flow or confirm existing session |
| Poll for completed QR scan (called automatically) |
| Check if current session is valid |
School Data
Tool | Description |
| Recent school announcements and updates |
| Recent messages from teachers and parents |
| Full conversation thread by ID |
| All active message threads |
| Calendar events with type filtering |
| Today's attendance status and notes |
| Recent photo albums and media |
| Search for parents, teachers, and staff |
| Weekly lesson plans and book lists |
Configuration
All configuration is via environment variables, set in the "env" block of your Claude Desktop config.
Variable | Required | Default | Description |
| Yes | — | Path to Chrome executable |
| Yes | — | Your child's first name (for profile selection) |
| No | (first found) | School name (partial match) |
| No |
| Aula API base URL |
| No |
| Session keepalive interval |
| No |
| Directory for session data |
Common Chrome paths
Windows:
C:\Program Files\Google\Chrome\Application\chrome.exemacOS:
/Applications/Google Chrome.app/Contents/MacOS/Google ChromeLinux:
/usr/bin/google-chrome
Example Conversations
You: What's happening at school this week?
Claude: Fetches posts, calendar events, and messages, translates from Danish, and gives you a summary
You: Are there any messages from the teacher I should respond to?
Claude: Checks recent message threads, identifies ones needing a reply
You: What does my child's schedule look like next week?
Claude: Pulls calendar events and MeeBook weekly plans
Development
If you want to contribute or run from source:
git clone https://github.com/ilenhart/aula-mcp-server.git
cd aula-mcp-server
npm install
npm run buildFor local development with auto-reload:
npm run devTo use the local version in Claude Desktop, update your config to point at the built file:
{
"mcpServers": {
"aula": {
"command": "node",
"args": ["C:/path/to/aula-mcp-server/dist/index.js"],
"env": {
"BROWSER_EXECUTABLE_PATH": "C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe",
"AULA_CHILD_NAME": "YourChildFirstName"
}
}
}
}Troubleshooting
"No session stored" / "Session expired"
Call aula_login to re-authenticate via MitID.
Chrome doesn't open
Verify BROWSER_EXECUTABLE_PATH points to your actual Chrome installation. The path must be the full path to the executable, not just the directory.
"Failed to start login flow" Chrome may already be running with a conflicting profile. Try closing all Chrome windows first.
Session dies frequently
The default 15-minute ping interval should keep sessions alive. If you're still losing sessions, try reducing PING_INTERVAL_MINUTES to 10.
How It Works
This server uses the @ilenhart/aula-apiclient-ts library to communicate with Aula's internal API. Authentication is handled via puppeteer-core (using your installed Chrome — no bundled browser) to capture the session cookie after MitID login.
All content from Aula is in Danish. Claude translates and interprets it conversationally when presenting it to you.
License
MIT
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
- Flicense-qualityDmaintenanceConnects Claude to Canvas LMS, enabling students to query their coursework, assignments, grades, deadlines, announcements, and calendar events through natural conversation instead of navigating the Canvas interface.7
- FlicenseAqualityDmaintenanceEnables natural language queries about grades, GPA, attendance, and schedules by connecting Claude to StudentVue school dashboards. Includes analytical tools for grade simulation, what-if scenarios, and academic performance tracking based on live school data.19
- Alicense-qualityBmaintenanceThis server enables MCP clients (LLMs) to access data from the Danish school platform Aula, such as messages, schedules, and child profiles, by authenticating via MitID and running locally.835MIT
- AlicenseAqualityDmaintenanceEnables Claude to access ParentSquare school-parent communication platform, including feeds, calendar, conversations, and media files.234MIT
Related MCP Connectors
WHOOP recovery, strain, sleep and workouts in Claude via official WHOOP OAuth. Free, open source.
Connect Claude to Fathom meeting recordings, transcripts, and summaries
Connect your team's living knowledge base — docs, data, issues, CRM — to Claude and ChatGPT.
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/ilenhart/aula-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server