vklass-mcp
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., "@vklass-mcpWhat assignments do my kids have coming up?"
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.
vklass-mcp
A multi-user Model Context Protocol server for Vklass guardians, with data access and explicitly confirmed absence reporting. Every user authenticates their own Vklass account with BankID as part of the standard MCP OAuth flow. Each OAuth subject maps directly to one Vklass user ID; there is no shared login, global MCP token or administrator password.
The MCP protocol surface is designed like a first-party remote MCP server. The Vklass integration is necessarily unofficial because Vklass does not publish a guardian API; its web endpoints can change.
MCP and identity model
One Streamable HTTP endpoint:
/mcp.OAuth 2.1 authorization code flow with S256 PKCE.
OAuth Authorization Server Metadata and RFC 9728 Protected Resource Metadata.
Dynamic Client Registration for compatible MCP clients.
Rotating access and refresh tokens, revocation, scopes and RFC 8707 resource indicators.
The OAuth authorization page starts the Göteborg Vklass BankID QR flow.
After login, Vklass
appData.userIdis transformed into a stable server-local pseudonymous OAuth subject using the state key; the raw Vklass user ID is not stored in OAuth grants.Each subject receives its own Vklass session, SQLite cache, synchronization tasks and encrypted state directory. Data queries can never select another subject's database.
Raw OAuth access/refresh/code values are SHA-256 hashed in SQLite. Registered client metadata, including client secrets, is encrypted with the server state key.
When the upstream Vklass session expires, all grants for that Vklass subject are revoked so MCP clients receive a standard 401 and restart the BankID authorization flow.
MCP clients connect only to:
https://vklass.example.com/mcpA compatible client discovers OAuth, opens the browser, asks the user to approve BankID, and stores its own tokens. Different users and clients use the same URL but receive different OAuth subjects.
The server uses separate least-privilege OAuth scopes: vklass.read for cached and live queries,
and optional vklass.write for absence reporting. Existing read-only clients remain read-only;
they must re-register and authorize the write scope before they can submit reports.
Related MCP server: librus-mcp
Security
The only exposed Vklass mutation is guardian absence reporting. Leave, messages, schedule changes, deletion and other mutations are not exposed.
Absence tools require
vklass.writeplusconfirm=true, use a fresh Vklass anti-forgery token, restrict the child to the authenticated guardian's current wards, and honor school date limits. New clients receive read-only scope by default and must explicitly request write access.An interrupted submission returns
outcome_unknown; clients must inspect Vklass rather than retrying automatically and risking a duplicate report.BankID approval is always performed by the account owner in a browser.
Vklass cookies and OAuth secrets are never returned through MCP or logs.
Göteborg SAML and BankID form/redirect hosts are strictly allow-listed.
Vklass content is treated as untrusted data, never as instructions.
The container runs without root or capabilities and uses a read-only root filesystem.
Production OAuth requires a public HTTPS origin. The container port binds to loopback for a TLS reverse proxy and must not be published directly.
If this service is offered to other parents, the operator becomes responsible for personal data. Provide clear retention/deletion terms, protected backups, incident handling and an operator contact. Users should also understand that their MCP client may send tool results to its model provider.
Implemented Vklass coverage
Feature | Support |
Göteborg guardian BankID QR | OAuth authorization UI |
Per-user session restore, rotation and keepalive | Implemented |
Children/wards | Normalized |
Teacher news and veckobrev | Normalized/searchable |
Calendar, lessons, homework, tests and assignments | Normalized per child |
Omsorgsschema, including planned and actual attendance times | Normalized per child |
Automatic weekly reports | Normalized separately from teacher veckobrev |
Meals and notification count | Normalized |
Study courses, judgements and grades | Normalized per child |
Study and absence overview | Plain-text snapshots |
Report absence today or for a date/time period | Implemented; explicit confirmation required |
Class list | Disabled to avoid unrelated children |
News attachments | Metadata only |
Messages, documents, development talks | Endpoint mapping pending |
Leave requests and all other write operations | Not exposed |
MCP tools
vklass_capabilities,vklass_status,vklass_sync_nowvklass_list_childrenvklass_report_absence_today,vklass_report_absence_period(vklass.write)vklass_list_weekly_letters,vklass_get_weekly_lettervklass_list_news,vklass_get_news_articlevklass_list_calendar,vklass_list_assignments,vklass_list_care_schedulevklass_list_automatic_weekly_reportsvklass_get_meals,vklass_get_notificationsvklass_list_study_courses,vklass_get_feature_snapshot,vklass_search
Local development
Requires Python 3.12+ and uv.
cp .env.example .env
# For localhost only:
sed -i 's#https://vklass.example.com#http://127.0.0.1:8000#' .env
sed -i 's#VKLASS_STATE_KEY_FILE=.*#VKLASS_STATE_KEY=development-state-key-change-me#' .env
uv sync --all-groups
uv run pytest
uv run vklass-mcpConnect a development MCP client to http://127.0.0.1:8000/mcp. Do not use HTTP on a LAN or the
internet.
Podman and systemd
make build
make install-quadlet
$EDITOR ~/.config/vklass-mcp/server.env
systemctl --user start vklass-mcp.service
journalctl --user -u vklass-mcp.service -fThe installer creates only one Podman secret: vklass-mcp-state-key. OAuth clients and users create
their own credentials through the protocol. Version 0.2 deliberately refuses to start when legacy
single-user vklass.db* or session.json.fernet files remain at the data root; migrate them or
securely remove the complete legacy set before deployment.
Runtime locations:
~/.config/vklass-mcp/server.env
~/.local/share/vklass-mcp/oauth.db
~/.local/share/vklass-mcp/users/<sha256-of-vklass-user-id>/
~/.config/containers/systemd/vklass-mcp.containerThe Quadlet binds 127.0.0.1:8787. Put Caddy or another TLS reverse proxy in front of it:
vklass.example.com {
reverse_proxy 127.0.0.1:8787
}Set both VKLASS_PUBLIC_BASE_URL=https://vklass.example.com and
VKLASS_ALLOWED_HOSTS=vklass.example.com,localhost:*,127.0.0.1:*. The public URL is the OAuth
issuer and cannot be changed without requiring clients to authorize again.
For the user service to survive logout:
loginctl enable-linger "$USER"Production deployment on perd25
deploy/perd25/ builds locally, transfers the image through SSH to the dedicated perapp account,
installs a hardened Quadlet in that account's rootless Podman store, and attaches it only to the
private perapp network without publishing a host port. The independent
perapp-edge Caddy service owns public TLS and routes
https://vklass.perapp.dev to the container alias.
make build
./deploy/perd25/deploy.shSet VKLASS_DEPLOY_ACTIVATE=0 to transfer the image and install the Quadlet without starting the
service during a coordinated migration. The public OAuth issuer is independent of the service
account and internal port.
Back up ~/.local/share/vklass-mcp/ together with ~/.config/vklass-mcp/state-key; losing the key
disconnects every user and makes encrypted sessions and OAuth client registrations unreadable.
Operations
Health:
GET /healthzOAuth metadata:
GET /.well-known/oauth-authorization-serverProtected resource metadata:
GET /.well-known/oauth-protected-resource/mcpOAuth revocation:
POST /revokeSQLite and encrypted sessions must be backed up together with the state key.
OAuth grants can be revoked through
/revoke; local data deletion is currently an operator-assisted action so an MCP read token cannot trigger destructive account management.BankID authorization transactions are intentionally process-local; run one application worker.
Built-in per-peer rate limits, global authorization limits, concurrent BankID slots and a resident service cap provide backstops. Apply stricter distributed limits at the TLS edge for public use.
Keep the state key stable and backed up. Rotation requires a planned migration of encrypted client metadata, user sessions and pseudonymous OAuth subjects; replacing it directly disconnects users.
Attribution
The Göteborg BankID flow is adapted from the MIT-licensed Kaptensanders/vklass. See THIRD_PARTY_NOTICES.md.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
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 Connectors
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
MCP adapter for the Paxaver school community platform. Streamable HTTP, OAuth 2.1, capability auth.
Authenticated MCP for a user's care circle: read CareEvents, list loved ones, inspect workspace.
Read-only access to InfluSense influencer discovery, ratings, watchlists, and reports via MCP.
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceRead-only MCP server for Microsoft Entra ID (Azure AD) that enables querying user sign-in logs, group memberships, and assigned Microsoft 365 licenses via Microsoft Graph API. Provides security and audit visibility without any write operations.-
- FlicenseAqualityCmaintenanceEnables read-only access to a Librus Portal account, letting users list linked Synergia accounts and retrieve grades, attendance, timetable, homework, notices, and school information.3-
- FlicenseAqualityCmaintenanceEnables read-only interaction with CMU Student Information Online data, including student context, schedules, grades, enrollment, account activity, and campus life through MCP tools.8-
- AlicenseAqualityAmaintenanceEnables MCP clients to securely access Jisr's documented HR Open API read-only operations, including employees, attendance, leave, payroll, finance, and discovery tools, with role-based field policies and dual protocol support.11MIT
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/perapp/vklass-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server