Back to Browse

Schoolpass MCP Server

Developer ToolsModerate6.0LocalNew
Free

SchoolPass for Claude — students, arrival/dismissal calendar, pickup changes, and school info

About

SchoolPass for Claude — students, arrival/dismissal calendar, pickup changes, and school info

Security Report

6.0
Moderate6.0Moderate Risk

SchoolPass MCP server is well-designed with proper authentication, consent-gated write operations, and reasonable scope limitations. Core security practices are sound: credentials are stored in environment variables, API calls are authenticated, and dangerous operations require explicit confirmation. Minor code quality observations around error handling breadth do not materially impact security. Supply chain analysis found 2 known vulnerabilities in dependencies (0 critical, 1 high severity). Package verification found 1 issue.

7 files analyzed · 6 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

env_vars

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

What You'll Need

Set these up before or after installing:

Your SchoolPass parent account email address.Optional

Environment variable: SCHOOLPASS_EMAIL

Your SchoolPass parent account password.Required

Environment variable: SCHOOLPASS_PASSWORD

The numeric school id (AppCode) SchoolPass uses to select your school.Optional

Environment variable: SCHOOLPASS_SCHOOL_CODE

Optional regional API host override (default busapi-east16-ss.school-pass.net).Optional

Environment variable: SCHOOLPASS_API_HOST

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-chrischall-schoolpass-mcp": {
      "env": {
        "SCHOOLPASS_EMAIL": "your-schoolpass-email-here",
        "SCHOOLPASS_API_HOST": "your-schoolpass-api-host-here",
        "SCHOOLPASS_PASSWORD": "your-schoolpass-password-here",
        "SCHOOLPASS_SCHOOL_CODE": "your-schoolpass-school-code-here"
      },
      "args": [
        "-y",
        "schoolpass-mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

schoolpass-mcp

MCP server for SchoolPass — read AND change your child's school arrival & dismissal from a parent account. Talks to the SchoolPass REST API used by the SchoolPass web and mobile apps, authenticating server-side with your own parent email and password (no browser, no extension).

Developed and maintained by AI (Claude Code). Use at your own discretion.

Parent-scoped: read tools plus a confirm-gated dismissal-change write/cancel.

Tools

ToolWhat it does
schoolpass_healthcheckReachability + authentication, reported separately.
schoolpass_whoamiThe parent identity the server signed in as.
schoolpass_list_studentsYour linked students — name, grade, home dismissal location, aftercare.
schoolpass_get_profileThe parent account profile.
schoolpass_list_driversAuthorized pickup drivers, with their carpools.
schoolpass_get_calendarA student's arrival/dismissal calendar over a date range.
schoolpass_list_pickup_changesPickup/dismissal changes for a student on a date.
schoolpass_list_dismissal_locationsThe school's dismissal locations, with ids.
schoolpass_get_school_infoBasic school info and per-school config.
schoolpass_submit_dismissal_changeSubmit a dismissal/arrival change (confirm-gated, dry-run preview).
schoolpass_cancel_dismissal_changeCancel a change, back to default (confirm-gated).

Configuration

Env varRequiredNotes
SCHOOLPASS_EMAILyesYour SchoolPass parent account email.
SCHOOLPASS_PASSWORDyesYour SchoolPass password.
SCHOOLPASS_SCHOOL_CODEyesThe numeric school id (the AppCode / appCode value; e.g. 1183).
SCHOOLPASS_API_HOSTnoRegional API host override (default busapi-east16-ss.school-pass.net).

Finding your school id and region host: sign into your school's <school>.school-pass.net portal, open the new SchoolPass app, and read appCode (the id) and apiUrl (the host) from its browser localStorage.

Install

{
  "mcpServers": {
    "schoolpass": {
      "command": "npx",
      "args": ["-y", "schoolpass-mcp"],
      "env": {
        "SCHOOLPASS_EMAIL": "you@example.com",
        "SCHOOLPASS_PASSWORD": "your-password",
        "SCHOOLPASS_SCHOOL_CODE": "1183"
      }
    }
  }
}

Notes

  • Parent scope only. A parent token cannot reach admin routes (visitor management, carline operations, reports, bus routing); those return 403.
  • Never retry a rejected login. SchoolPass fronts its login with reCAPTCHA; repeated failures can get the account challenged.
  • No credentials, still boots. The server starts without configuration and answers tools/list; the config error surfaces on the first tool call.

Without the server: curl

The SchoolPass API is reachable server-side, so a one-off shell read needs no MCP process — see the bundled schoolpass-curl skill (skills/schoolpass-curl/) for a curl + jq recipe set.

Development

npm install
npm test            # unit + boot tests
npm run build       # tsc + esbuild bundle
node --env-file=.env scripts/live-check.mjs   # live read-only check (needs .env)

License

MIT

Reviews

No reviews yet

Be the first to review this server!