Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Access Smartschool courses, grades, assignments, and messages through the Model Context Protocol

README.md

Smartschool MCP Server

<!-- mcp-name: io.github.MauroDruwel/smartschool-mcp -->

![CI](https://github.com/MauroDruwel/Smartschool-MCP/actions/workflows/ci.yml) ![codecov](https://codecov.io/gh/MauroDruwel/Smartschool-MCP) ![PyPI version](https://pypi.org/project/smartschool-mcp/) ![License: MIT](LICENSE) ![Python 3.10+](https://www.python.org/downloads/)

Connect Claude (and other MCP clients) to your Smartschool account — ask about grades, assignments, messages, and your schedule in plain language.

Tools

| Tool | What it does | |------|-------------| | get_courses | List enrolled courses with teacher info | | get_results | Grades with optional filtering, pagination, and statistics | | get_future_tasks | Upcoming assignments organised by date | | get_messages | Inbox/sent/trash with search, sender filter, and body retrieval | | get_schedule | Day schedule by offset (0 = today, 1 = tomorrow, …) | | get_periods | Academic terms for the current school year | | get_reports | Available report cards | | get_planned_elements | Planner items for the next N days | | get_student_support_links | School support resources and links | | get_attachments | List attachments for a specific message | | download_attachment | Download a specific attachment by message and file ID |

Quick start — Claude Desktop

uvx mcp install smartschool-mcp \
  -e SMARTSCHOOL_USERNAME="you" \
  -e SMARTSCHOOL_PASSWORD="secret" \
  -e SMARTSCHOOL_MAIN_URL="school.smartschool.be" \
  -e SMARTSCHOOL_MFA="YYYY-MM-DD"

Or add it manually to claude_desktop_config.json:

{
  "mcpServers": {
    "smartschool": {
      "command": "uvx",
      "args": ["smartschool-mcp"],
      "env": {
        "SMARTSCHOOL_USERNAME": "you",
        "SMARTSCHOOL_PASSWORD": "secret",
        "SMARTSCHOOL_MAIN_URL": "school.smartschool.be",
        "SMARTSCHOOL_MFA": "YYYY-MM-DD"
      }
    }
  }
}

Config file locations: %APPDATA%\Claude\claude_desktop_config.json (Windows) · ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) · ~/.config/Claude/claude_desktop_config.json (Linux)

Remote / claude.ai

The server supports Streamable HTTP transport for use as a remote integration on claude.ai.

Single-user mode

One server instance, your credentials in environment variables:

export SMARTSCHOOL_USERNAME="..."
export SMARTSCHOOL_PASSWORD="..."
export SMARTSCHOOL_MAIN_URL="school.smartschool.be"
export SMARTSCHOOL_MFA="YYYY-MM-DD"
export MCP_API_KEY="a-long-random-secret"   # optional but recommended

smartschool-mcp --transport streamable-http --host 0.0.0.0 --port 8000

Add to claude.ai → Settings → Integrations:

  • URL: https://your-domain.example.com/mcp
  • Authorization header: Bearer <your MCP_API_KEY> (if set)

Universal mode

One hosted server instance serves any Smartschool user — no per-user deployment needed.

smartschool-mcp --transport streamable-http --universal --host 0.0.0.0 --port 8000

Credentials are passed on every request:

| What | Where | Example | |------|-------|---------| | School URL | URL query param school | ?school=myschool.smartschool.be | | Date of birth (MFA) | URL query param mfa | &mfa=2000-01-15 | | Username | OAuth Client ID | your Smartschool username | | Password | OAuth Client Secret | your Smartschool password |

In claude.ai → Settings → Integrations → Add custom connector:

  • URL: https://your-domain.example.com/mcp?school=myschool.smartschool.be&mfa=YYYY-MM-DD
  • OAuth Client ID: your Smartschool username
  • OAuth Client Secret: your Smartschool password

MFA is your date of birth in YYYY-MM-DD format. Omit the mfa param if your account does not require it.

Making the server publicly accessible

Claude.ai requires HTTPS. Some options:

| Option | Command | |--------|---------| | Cloudflare Tunnel | cloudflared tunnel --url http://localhost:8000 | | ngrok | ngrok http 8000 | | VPS | nginx / Caddy with a Let's Encrypt cert |

Environment variables

| Variable | CLI flag | Default | Description | |----------|----------|---------|-------------| | MCP_TRANSPORT | --transport | stdio | stdio or streamable-http | | MCP_HOST | --host | 0.0.0.0 | Bind address (HTTP only) | | MCP_PORT | --port | 8000 | Port (HTTP only) | | MCP_API_KEY | — | — | Static Bearer token (single-user mode) | | MCP_UNIVERSAL | --universal | off | Enable universal mode (set to 1, true, or yes) | | SESSION_TTL_SECONDS | — | 3600 | How long to cache sessions (universal mode) | | SMARTSCHOOL_USERNAME | — | — | Your Smartschool username | | SMARTSCHOOL_PASSWORD | — | — | Your Smartschool password | | SMARTSCHOOL_MAIN_URL | — | — | School hostname, e.g. school.smartschool.be | | SMARTSCHOOL_MFA | — | — | Date of birth YYYY-MM-DD (if required) |

Contributing

PRs are welcome. Run uv sync --extra dev to install dev dependencies, then uv run pytest / uv run ruff check . / uv run mypy smartschool_mcp/ before submitting.

Disclaimer

Unofficial tool, not affiliated with Smartschool. Use in accordance with your school's terms of service.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Communication servers.