schoolpass-curl

schoolpass-curl is a skill for Claude Code from chrischall/schoolpass-mcp. It costs 104 tokens per session (860 once invoked), scanned A, original, MIT.

A command-line guide for reading a SchoolPass parent account directly with curl. curl is a terminal tool for sending requests to web services, and SchoolPass manages school arrival, dismissal, and pickup data.

In plain words
What is it for?
Reading students, arrival and dismissal calendars, pending pickup changes, drivers, dismissal locations, and school information from the SchoolPass API.
Why use it?
It supports one-off terminal checks or scripts without running the SchoolPass connection for Claude.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the schoolpass plugin — 2 skills, 2 MCP servers shipped together

Good fit Reading students, arrival and dismissal calendars, pending pickup changes, drivers, dismissal locations, and school information from the SchoolPass API.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/chrischall/schoolpass-mcp/schoolpass-curl
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add chrischall/schoolpass-mcp --skill schoolpass-curl
Clone the repo
git clone --depth 1 https://github.com/chrischall/schoolpass-mcp

Made for: Claude Code.

Or install schoolpass, the plugin that ships this one along with the rest of its 2 skills, 2 MCP servers.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for schoolpass-curl

README.md
[![agentmods](https://agentmods.dev/badge/skills/chrischall/schoolpass-mcp/schoolpass-curl/github.svg)](https://agentmods.dev/skills/chrischall/schoolpass-mcp/schoolpass-curl)
Your own site
<a href="https://agentmods.dev/skills/chrischall/schoolpass-mcp/schoolpass-curl"><img src="https://agentmods.dev/badge/skills/chrischall/schoolpass-mcp/schoolpass-curl/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for schoolpass-curl

Your own site · 80×15
<a href="https://agentmods.dev/skills/chrischall/schoolpass-mcp/schoolpass-curl"><img src="https://agentmods.dev/badge/skills/chrischall/schoolpass-mcp/schoolpass-curl.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 104 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 860 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00104 $0.00860
Opus 5 $0.00052 $0.00430
Sonnet 5 $0.00021 $0.00172
Haiku 4.5 $0.00010 $0.00086

Measured 9d ago against content hash 744d8e6970e3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

schoolpass-curl scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

name: schoolpass-curl
skills/schoolpass-curl/SKILL.md · 76 lines

How it starts

The opening of the file, as written. The whole thing — 76 lines — stays where its author put it; the contents beside it link to each section on GitHub.

SchoolPass API via curl

The SchoolPass JSON API is reachable server-side — no browser, no bridge, no extension. This skill talks to it directly with curl.

Prefer the schoolpass-mcp server for anything conversational or repeated; use this for one-off shell work, scripts, or when the server isn't running.

Ready-to-run request bodies and jq recipes: references/requests.md. Full shape reference: ../../docs/SCHOOLPASS-API.md.

Setup

export SCHOOLPASS_EMAIL='[email protected]'
export SCHOOLPASS_PASSWORD='…'
export SCHOOLPASS_SCHOOL_CODE=1183          # your school id (the AppCode)
export SCHOOLPASS_API_HOST=busapi-east16-ss.school-pass.net   # your region's shard

Find your school id and region host by signing into your school's <school>.school-pass.net portal, opening the new SchoolPass app, and reading appCode (the id) and apiUrl (the host) from its localStorage.

Two rules

  1. Every request needs an AppCode: <schoolCode> header. It selects your school. Omit it (or send the wrong one) and you get 401. It is not a secret. references/requests.md's sp_curl helper adds it for you.
  2. HTTP status codes are real. 401 = the token or AppCode was rejected, 403 = a parent account cannot reach that route (it is admin-only), 2xx = success. Branch on the HTTP code.

Auth: email/password → bearer

  1. POST Auth/users with {schoolCode,email,password,authType:"Credentials"} → the identities your email owns. Take the one whose userType is 3 (Parent).
  2. POST Auth/token with {schoolCode,userId,userType,password,authType:"Credentials"}{ access_token, refresh_token, … }. Send access_token as Authorization: Bearer … on every subsequent call.

references/requests.md's sp_login does both and caches the token.

Never retry a rejected login. SchoolPass fronts its login with reCAPTCHA; repeated wrong passwords can get the account challenged and break shell login. Fix the credential and try once.

Read the full file on GitHub · 76 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 76 lines · 104 tokens per session scan A 744d8e6970e3

Subscribe to this mod's changes

schoolpass-curl is a skill published in the GitHub repository chrischall/schoolpass-mcp (0 stars, last pushed today), licensed MIT. It adds 104 tokens to every session and 860 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.