pickuppatrol-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., "@pickuppatrol-mcpChange my daughter's dismissal plan for tomorrow to after-school care"
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.
pickuppatrol-mcp
An MCP server for PickUp Patrol — the school dismissal app. Read and change how your children leave school: their weekly default plan, one-off changes for specific dates, and the school's dismissal options and cutoff times.
Developed and maintained by AI (Claude Code). Use at your own discretion.
What it talks to
app.pickuppatrol.net runs a ServiceStack JSON API
behind an Ionic/Vue SPA. There is no published API, but the service is reachable
server-side with an ordinary HTTPS request — no browser extension, no bot wall,
no captcha. The server signs in with your own email and password and holds the
resulting session in memory.
Every request shape is captured in docs/PICKUPPATROL-API.md,
read off the shipped client rather than guessed, and exercised against a real
account — reads, a write, and its restore.
Related MCP server: schoology-mcp
Install
// .mcp.json
{
"mcpServers": {
"pickuppatrol": {
"command": "npx",
"args": ["-y", "@chrischall/pickuppatrol-mcp"],
"env": {
"PICKUPPATROL_USERNAME": "you@example.com",
"PICKUPPATROL_PASSWORD": "…"
}
}
}
}For local development, copy .env.example to .env and fill it in.
The server starts without credentials — it answers the host's install-time probe and only reports the configuration error on the first tool call.
Tools
Reads
Tool | What it gives you |
| The signed-in account and the students linked to it |
| Every student with their weekly defaults and review flag |
| One student in full |
| A student's weekly default plan, day by day |
| Day-by-day plans across a date range |
| One student, one date — including whether it is locked |
| A school's dismissal options and the rules each imposes |
| School profile, notify times, cutoff times, settings |
| Dates no plan can be set for, and dates already changed |
| Car numbers the school issued to this account |
| Credentials sign in and the API answers |
Writes — every one requires confirm: true. Without it the tool makes no
change and returns a dry-run of the exact payload it would send.
Tool | What it changes |
| Dismissal for one or more specific dates, or clears them back to the default |
| The weekly default plan, or clears every default |
| The school's "defaults need review" prompt |
Two things the tools do that the API does not
Rules are enforced before anything is sent. Each dismissal option carries its
own requirements — a note, a car number, an early-dismissal time, or a
restriction to particular students. pup_set_plan checks them against the
school's own list and refuses with the school's wording, so a rejected write is
a validation message rather than an opaque 400.
Writes are verified by re-reading. A 2xx from PickUp Patrol is not proof: a
change made after the school's cutoff is accepted and silently ignored. Every
write re-reads the affected dates and compares the transportation id and the
note — never ModifiedDate, which advances on its own and would make every
write look successful. The note is part of the proof because every dismissal
option seen so far requires one, which makes a note-only edit ordinary: an
id-only comparison would report success from a field that never had to move.
The result says verified: true/false, and names the dates that did not move.
Without the MCP server
skills/pickuppatrol-api/ is a shell-out skill covering the same API with
curl and jq, for scripts or a machine where the server is not installed.
Development
npm install
npm run build
npm test # fast
npm run test:coverage # coverage-enforced at 100%Tests never touch the network: the transport is injected, and the MCP tools run through a real in-memory client/server pair.
Two things about the API worth knowing
GetPlanEdit returns a date's override, not the effective plan. A date with
no specific plan reads back TransportationId: null even when the student has a
weekly default for that weekday. pup_get_plan passes that through as-is;
pup_list_students is where the weekly defaults live.
Sign-in is a session cookie, not a JWT. Authenticate returns
BearerToken: null on this deployment and sets ss-id/ss-pid/ss-opt. The
client keeps whichever the server returns and sends both, so a future switch to
JWTs needs no change here.
Safety notes
A rejected sign-in is never retried. PickUp Patrol counts failed attempts against the account and a lockout clears only through their support desk, so the error is cached and every later call fails instantly with the same message.
The weekly-default write is a read-modify-write of the whole student record, because the API has no default-plans endpoint. The server always reads the student immediately before writing, and changes only
DefaultPlans.Credentials live in
.env(gitignored) or the MCP host's config, and are never written to a result or a log.
License
MIT
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 Servers
- Alicense-qualityAmaintenanceMCP server for Infinite Campus parent portal with multi-district support, enabling parents to query student data like grades, assignments, attendance, and send messages across multiple school districts from a single interface.6862MIT
- Alicense-qualityBmaintenanceAn MCP server that automates login to PAUSD Schoology via ClassLink and provides tools to fetch grades, upcoming assignments, and recent posts.4MIT
- FlicenseAqualityCmaintenanceAn MCP server that allows you to book and cancel office cab and lunch reservations using natural language, with optional automation features like attendance-based scheduling and Outlook leave detection.6

afkbot-mcpofficial
Alicense-qualityAmaintenanceMCP server for AFKBot PTO management that allows users to file and manage time-off requests from any MCP-compatible client.MIT
Related MCP Connectors
An MCP server that integrates with Discord to provide AI-powered features.
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
The MCP server for Azure DevOps, bringing the power of Azure DevOps directly to your agents.
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/chrischall/pickuppatrol-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server