procare-mcp
First MCP server for the Procare Connect API, enabling querying child care center data (attendance, enrollments, family balances, etc.) via natural language from Claude, Cursor, or any MCP client.
README
procare-mcp
First MCP server for the Procare Connect API — talk to your child care center data from Claude, Cursor, or any MCP client.
Procare is the leading child care management platform used by 30,000+ daycare centers, preschools, and before/after-school programs in the US. The public Connect API is documented at https://api-docs.procareconnect.com/ and powers the Procare Online + SchoolCare Works products. This server wraps that API in the Model Context Protocol so you can ask your AI agent questions like "which children at school 1234 were absent on Monday?" or "what's the balance on family 555?" — without hand-rolling a REST client.
What you can do with it
You: "Pull the attendance log for school 1234 for last week and tell me
which kids had 3+ absences."
Claude: *calls list_schools, then list_attendance with school_id+date_from
+date_to, summarises the result*
You: "Show me the enrollment roster for the summer camp at our
Westside location."
Claude: *calls list_programs then list_registrations with school_id +
program_id filters*
You: "What's the outstanding balance for family 555?"
Claude: *calls get_family, returns the balance_cents field with a
human-readable summary*
Install
pip install -e .
Configure
Procare uses OAuth 2 client_credentials against your tenant subdomain, not a shared host. Find your subdomain by looking at the URL of the Procare dashboard you log into — it'll be https://<your-subdomain>.procareconnect.com. Your Procare account admin can mint a client_id / client_secret pair with API access enabled.
export PROCARE_BASE_URL="https://<your-subdomain>.procareconnect.com"
export PROCARE_CLIENT_ID="..."
export PROCARE_CLIENT_SECRET="..."
Who uses this?
- Child care center owners and operators who want to query their data via Claude / Cursor without building a custom integration.
- Multi-location operators (5+ centers) who need to roll up attendance, payments, and enrollment across the enterprise.
- API Partners building tools on top of Procare.
If you don't have API credentials yet, contact your Procare account manager or open a ticket with Procare support.
Use with Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or the equivalent path on Windows / Linux:
{
"mcpServers": {
"procare-mcp": {
"command": "procare_mcp",
"env": {
"PROCARE_BASE_URL": "https://your-subdomain.procareconnect.com",
"PROCARE_CLIENT_ID": "your-client-id",
"PROCARE_CLIENT_SECRET": "your-client-secret"
}
}
}
}
Use with Claude Code
claude mcp add procare-mcp -- procare_mcp \
--env PROCARE_BASE_URL=https://your-subdomain.procareconnect.com \
--env PROCARE_CLIENT_ID=your-client-id \
--env PROCARE_CLIENT_SECRET=your-client-secret
Tools
| Tool | Type | What it does |
|---|---|---|
health_check |
Diagnostic | Verifies credentials by listing schools (counts them) |
list_schools |
Read | All schools/locations in the enterprise account |
get_school |
Read | Single school by id |
list_children |
Read | Children, filterable by school_id / paginated via offset+limit |
get_child |
Read | Single child by id (allergies, schedule, classroom) |
list_families |
Read | Families (households), filterable by school_id / paginated |
get_family |
Read | Single family by id (guardians, children, contacts, balance) |
list_attendance |
Read | Attendance records, filterable by school / child / date range |
list_programs |
Read | Programs (camps, preschool, after-school), filterable by school / active |
get_program |
Read | Single program by id (description, schedule, capacity, fee) |
list_registrations |
Read | Enrollments, filterable by program / child / school |
list_payments |
Read | Payments, filterable by family / school / date range |
list_staff |
Read | Staff members, filterable by school / active flag |
get_staff_member |
Read | Single staff member by id |
list_classrooms |
Read | Classrooms, filterable by school |
get_classroom |
Read | Single classroom by id (capacity, age range, lead teacher) |
The read-only cut covers every endpoint exposed by the Connect API that the v0.1 surface needs. Write tools (check-in, check-out, create registration) will land in a follow-up once the upstream write contract is stable across Procare Online and SchoolCare Works.
Engineering
This server follows the industry-leading patterns baked into mcp-vertical-template:
- Shared
httpx.AsyncClientwith connection pooling and transport-level retries - OAuth 2
client_credentialswith proactive refresh (5-min buffer) and anasyncio.Lockto serialize concurrent refreshes - Typed exception hierarchy (
ProcareAuthError,ProcareNotFoundError,ProcareRateLimitError,ProcareAPIError,ProcareConnectionError) with structured fields (http_status,error_code,request_id,retry_after) - Dispatch table for HTTP status → exception (no
if/elifchains) - Application-level retry with exponential backoff + full jitter on 429/5xx, honoring
Retry-After - Single 401 retry that force-refreshes the OAuth token (handles server-side revocation)
- JSONL audit logging per tool call (stderr default,
PROCARE_AUDIT_LOGenv var override) with secret redaction - Bare
raiseinside MCP tool handlers —isError=trueon the wire, per the Blackwell MCP security audit baseline respxmocks +hypothesisproperty tests (no live API in CI)rufffull rule set +mypy --strict- CI matrix on Python 3.10-3.13 × Ubuntu/macOS/Windows
Development
python -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]"
pytest -v
procare_mcp
License
MIT.
See also
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.