MCP server for ParentSquare school-parent communication platform
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
An MCP (Model Context Protocol) server that gives Claude access to ParentSquare, a school-parent communication platform. Since ParentSquare has no public API, this server scrapes the web interface using saved session cookies.
Covers both the parent/guardian experience (feeds, posts, calendars, messages, directories, sign-ups, forms, payments) and school admin roster management β reading student and guardian rosters, and creating/editing students and guardians plus sending registration invitations. Admin write tools are off by default, gated behind PS_ENABLE_WRITES, and every write is recorded to a local audit log.
Available on the MCP Registry as io.github.thehesiod/psquare and on PyPI as parentsquare-mcp.
This project is not affiliated with, endorsed by, or sponsored by ParentSquare, Inc. "ParentSquare" and all related names, logos, and trademarks are the property of ParentSquare, Inc.
This server communicates with ParentSquare's undocumented internal APIs (scraping the web UI and calling its non-public
/api/v2/JSON endpoints) β these are not published, not guaranteed to be stable, and may change or be blocked at any time without notice. Use of those interfaces may violate ParentSquare's Terms of Service; you are responsible for reviewing the ToS and deciding whether your use is acceptable.Use at your own risk. The authors and contributors accept no responsibility for any consequences of using this software, including but not limited to: account suspension or termination, data loss or corruption, missed or incorrect notifications, MFA lockouts, leaked session cookies, IP blocks, or any other direct or indirect damages. No warranty is provided β see LICENSE for the full MIT no-warranty clause.
If ParentSquare publishes an official API, this project should be considered deprecated in favor of that.
get_feeds β Browse paginated school feed with titles, authors, summaries, and attachment namesget_post β Full post details with body text, comments, poll results, signup items, and inline image/PDF content (Claude can "see" attached calendars, flyers, etc.)get_group_feed β Posts from a specific groupget_calendar_events β Events from ICS calendar as structured JSON (title, start/end, location, description)list_conversations / get_conversation β Read message threadsget_directory β Staff directory as structured JSON (name, role, phone, user_id)get_staff_member β Full staff details with email, office hours, and inline profile photolist_photos β Photo gallery with URLslist_files β Document filesdownload_file β Download any attachment to local disklist_signups β Sign-up and RSVP posts with progress tracking (e.g. "53/103 Items")list_notices β Alerts and secure documentslist_polls β Polls with vote counts and winning optionslist_forms β Permission slips and signable formslist_payments β Payment items with prices and summary statslist_volunteer_hours β Logged volunteer hours with totalslist_schools β Schools and students as structured JSONlist_school_features β Available sections per school (parsed from sidebar)list_groups β Groups with member counts, descriptions, and membership statuslist_links β Quick-access links (Google Drive, external sites)get_student_dashboard β School, grade, classes, and teachers as structured JSONRead tools are always available; the tools marked (write) below are disabled by default and only run when PS_ENABLE_WRITES is set (see Enabling admin write tools). Every write attempt, including one blocked by the gate, is recorded to a local audit log. No tool deletes a record β students, guardians, classes, and staff can be created and edited but never deleted, and the tools that remove something only unlink a relationship (a staff assignment or a class enrollment), leaving the underlying people and classes intact. Deletion is deliberately left to the ParentSquare website.
list_students β School roster (id, name, grade, SIS id, guardians) as structured JSON, with optional grade / name_contains filterslist_parents β Guardian roster (user_id, name, email, phone, linked students) as structured JSON, with optional name_contains / student_name_contains filters; provides the user_id needed by edit_parent / link_guardian_to_studentlist_grades β A school's grades and their grade_id values (needed for add/edit)get_student β Admin detail for one student (name, grade, SIS id, linked guardians, classes)add_student (write) β Create a student in a gradeedit_student (write) β Update a student's name, SIS id, or grade (unchanged fields preserved)add_parent (write) β Create a guardian linked to a studentedit_parent (write) β Update a guardian's name, email, or phone (existing links preserved)link_guardian_to_student (write) β Link an existing guardian to an additional studentinvite_parent (write) β Send (or resend) a ParentSquare registration invitation to one guardianbulk_invite_parents (write) β Invite many guardians at once; already-registered guardians are skipped automaticallylist_classes / get_class β A school's classes, and one class with its full staff list (teachers, assistants, room parents)add_class (write) β Create a class; new classes start hidden until set_class_visibilityedit_class (write) β Rename a class or change its gradesset_class_visibility (write) β Show or hide classes (date-driven, defaults to today)list_staff β Staff and admin roster (user_id, name, email, phone, role/title) as structured JSON, with an optional name_contains filter; provides the user_id needed by edit_staff / add_class_staffadd_staff (write) β Add a teacher, staff member, or admin, optionally assigning them to classesedit_staff (write) β Update a staff member's name, email, phone, title, or staff ID (class assignments and STAFF/ADMIN access preserved; guardians are rejected β use edit_parent)add_class_staff / remove_class_staff (write) β Assign or unassign teachers, assistants, and room parents for a class. Section-membership writes are serialized inside one server process; never issue them in parallel, and verify each result with a fresh read.list_class_students β The students enrolled in a classadd_class_students / remove_class_students / move_student_to_class (write) β Manage which students are enrolled in which classes. These share the same global serialization lock as class-staff writes because student-section updates can replace a student's full enrollment list.submit_mfa_code β Complete MFA verification with a 6-digit codePS_NO_ELICIT to disable for unattended callers)~/.parentsquare_cookies.jsonThe admin write tools β every tool marked (write) under Admin, covering
the student/guardian roster, classes, staff, and class enrollment β modify live
school data, so they are off by default. To enable them, set PS_ENABLE_WRITES=1
(or true/yes/on) in the server's environment and restart. Every write attempt
(including blocked ones) is appended as JSONL to PS_AUDIT_LOG (default
~/.parentsquare_audit.log). The admin read tools work regardless.
ParentSquare's form endpoints answer every accepted POST with the same generic
200 "reload" response, which some silent failures also return. To avoid
false-positive successes, the create/link tools (add_student, add_parent,
link_guardian_to_student) read back authoritative state after the write and
only report β
Success (verified) once the new record is actually found. If the
POST is accepted but the read-back can't find the change, they return a β οΈ
warning that it likely did not persist; if the read-back itself can't run, they
report the write as submitted-but-unverified.
The read-back also overrules a 5xx. ParentSquare renders its error page after
the transaction commits, so a server error can hide a write that actually landed
β add_student did exactly that on every create until a missing
student[section_ids][] form param was tracked down. Reporting those as failures
invited retries, and each retry duplicated a real student with no API route to
delete one. So when a write returns a 5xx but the record is found on read-back,
the tool reports β
Success (verified) with a note not to retry. An explicit
rejection (a 4xx, or a 200 carrying an alert-danger flash) is still
reported as a failure regardless of read-back.
Credentials can be provided in either of two ways (checked in this order):
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/psquare)<a href="https://allmcps.com/mcp/psquare"><img src="https://allmcps.com/api/badge/psquare?style=directory" alt="Psquare on AllMCPs" /></a>