ParentSquare 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., "@ParentSquare MCPWhat's on the school calendar for next week?"
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.
ParentSquare MCP
An MCP server that gives Claude read access to your own ParentSquare parent account — school posts, calendars, messages, the staff directory, signups, forms, payments and files.
School calendars and flyers are very often posted as image or PDF attachments rather than as calendar entries. This server downloads them and hands them to Claude as real image/text content, so "what's on the school calendar next week?" works even when the calendar itself is empty.
Before you start: how this connects
ParentSquare has no public parent-facing API. Their documented API is district-side, for pushing student data in from an SIS — it is issued to district IT, not to parents, and it is not what you want here. So this server signs in as you and reads the same parent web app you use in a browser.
Two consequences worth knowing up front:
You need to supply your own session. See Authentication.
The page layouts are not a contract. Districts run different versions of the app on different URLs, so there are three layers of defence: every route is a list of candidate paths tried in order; if all of them fail, the section is located by matching its label in your sidebar; and if a parser still finds nothing, it returns the readable page text rather than failing.
scripts/doctor.pyreports what needed which. See Fitting it to your district.
Related MCP server: unofficial-magister-mcp
Install
cd "~/Desktop/ParentSquare MCP"
python3 -m venv .venv
./.venv/bin/python -m pip install -e .Authentication
Method 1 — browser cookie (recommended)
Works with every district, including ones that sign in through Google, Clever or ClassLink, and with two-factor accounts.
Sign in to ParentSquare in your browser.
Open DevTools → Network, click any request to
parentsquare.com.Under Request Headers, copy the entire value of
Cookie:.Put it in
PARENTSQUARE_COOKIE(see Connect it to Claude).
The cookie expires eventually — when tools start reporting that the session expired, repeat this.
Method 2 — email and password
Only works if your district uses a plain ParentSquare password, with no two-factor.
PARENTSQUARE_EMAIL=you@example.com ./.venv/bin/python scripts/login.pyThis caches the session in ~/.parentsquare-mcp/session.json (mode 600). If your district uses SSO
or 2FA, the script says so and points you back to Method 1.
Connect it to Claude
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"parentsquare": {
"command": "/Users/chen/Desktop/ParentSquare MCP/.venv/bin/python",
"args": ["-m", "parentsquare_mcp"],
"cwd": "/Users/chen/Desktop/ParentSquare MCP",
"env": {
"PARENTSQUARE_COOKIE": "_parentsquare_session=…; remember_user_token=…"
}
}
}
}Restart Claude Desktop.
Claude Code
claude mcp add parentsquare \
--env PARENTSQUARE_COOKIE="_parentsquare_session=…" \
-- "/Users/chen/Desktop/ParentSquare MCP/.venv/bin/python" -m parentsquare_mcpIf you used scripts/login.py, the cached session is picked up automatically and you can drop the
env block entirely.
See .env.example for every setting.
Fitting it to your district
Run this once after connecting:
./.venv/bin/python scripts/doctor.pyIt reports, for every section, which URL works and how many rows the parser got:
— routes —
ok feed /feeds
ok directory /directory
NAV payments /school_pay (found via the sidebar)
MISS volunteer_hours (no candidate worked, and no sidebar link matched)
— tools (23 registered) —
ok get_feeds 12 rows
THIN list_signups 0 rows — selectors need work. Source: https://…/signupsNAV — none of the guessed URLs worked, so the server found the section by matching its sidebar label instead. This already works; adding the reported path to
routes.pyjust saves a lookup. Districts re-route these pages constantly, which is why label matching is the safety net.MISS — no URL worked and no sidebar link matched. Open the section in your browser, copy the path from the address bar, and add it to the front of the matching list in
parentsquare_mcp/routes.py. If the sidebar calls it something unusual, adding that word toSECTION_KEYWORDSin the same file fixes it for good.THIN — the page loaded but nothing matched. Ask Claude to call
debug_fetchon that URL to see the real markup, then adjust the selector list at the top of the relevant file inparentsquare_mcp/tools/. The selectors are plain CSS lists, deliberately easy to edit.empty — the page loaded and genuinely has nothing in it. Nothing to fix.
Nothing in the doctor writes to ParentSquare.
Tools
Feed and posts
Tool | What it does |
| Paginated feed: titles, authors, dates, summaries, attachment names. Takes a |
| Full post — body, comments, poll results, signup items, and the contents of attached images and PDFs. |
| Posts from one group. |
Calendar
Tool | What it does |
| Structured events from the ICS feed, recurring events expanded. When empty, explains how to find calendars posted as attachments. |
Communication
Tool | What it does |
| Read message threads. |
| Staff directory: name, role, phone, email, user id. |
| Full profile including office hours and profile photo. |
Media and files
Tool | What it does |
| Photo gallery with image URLs. |
| Shared documents with download URLs. |
| Save any attachment to disk. |
Things to act on
Tool | What it does |
| Sign-ups and RSVPs with progress (e.g. |
| Alerts and secure documents. |
| Polls with vote counts and the leading option. |
| Permission slips, with an outstanding count. |
| Payment items with prices and totals. |
| Logged hours with the total. |
Discovery
Tool | What it does |
| Schools and students, with the ids other tools take. |
| Which sections a school actually has, from its sidebar. |
| Groups with member counts and membership status. |
| Pinned quick links. |
| A student's school, grade, classes and teachers. |
| Escape hatch: fetch any ParentSquare path and see what is really there. |
Nothing here writes to ParentSquare — every tool is read-only against your account. On your own disk,
download_file saves where you ask it to, and get_post saves image-only PDFs (scans, which have no
extractable text) to ~/Downloads/ParentSquare so they are still reachable.
Things to try
What did the school send home this week?
Is there anything I still need to sign or pay for?
The October calendar was posted as a PDF — what days is my kid off?
Who is my son's teacher and what's their email?
Tests
./.venv/bin/python tests/run_all.pyFour suites — parsers, tools over HTTP, a real MCP handshake over stdio, and the authentication paths — all against a fake ParentSquare served on localhost. They never touch the real site, so they are safe to run at any time.
Layout
parentsquare_mcp/
config.py environment settings
client.py auth, HTTP, route fallback, login-bounce detection
routes.py candidate URLs + sidebar keywords ← edit when doctor says MISS
parsers.py shared HTML helpers and the fallback result shape
media.py attachments → images / PDF text
tools/ one module per group of tools ← edit when doctor says THIN
scripts/
login.py cache a session with email + password
doctor.py check routes and tools against your account
tests/Notes
Read-only by design. Nothing posts, replies, signs, pays or RSVPs on your behalf.
Your credentials stay on your machine: in the client config env block, or in
~/.parentsquare-mcp/session.jsonat mode 600.Because it depends on the parent web app's HTML, a ParentSquare redesign can break parsing. That is what
doctor.pyanddebug_fetchare for, and why nothing hard-fails when a selector misses.
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
- AlicenseAqualityDmaintenanceEnables Claude to access ParentSquare school-parent communication platform, including feeds, calendar, conversations, and media files.Last updated233MIT
- Alicense-qualityDmaintenanceAn MCP server for accessing Dutch school schedules from Magister. Enables Claude and other MCP-compatible AI assistants to query school schedules, drop-off times, and pick-up times.Last updated143MIT
- Alicense-qualityCmaintenanceMCP server that gives Claude Desktop access to school data from Studie+ (Danish school platform), enabling queries about schedules, homework, assignments, and files directly in chat.Last updatedMIT
- AlicenseAqualityFmaintenanceMCP server that connects Claude to Edupage, a school information system used across Europe. Provides access to timetables, grades, homework, messages, students, teachers, and more.Last updated25GPL 3.0
Related MCP Connectors
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
Official Microsoft MCP Server to query Microsoft Entra data using natural language
Augments MCP Server - A comprehensive framework documentation provider for Claude Code
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/chengeusa3/parentsquare-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server