OurFamilyWizard co-parenting for Claude β messages, calendar, expenses, and journal
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.
A Model Context Protocol server that connects Claude to OurFamilyWizard, giving you natural-language access to your co-parenting messages, calendar, expenses, and journal.
[!WARNING] AI-developed project. This codebase was entirely built and is actively maintained by Claude Sonnet 4.6. No human has audited the implementation. Review all code and tool permissions before use.
Ask Claude things like:
node:sqlite is the cache backend)By using this MCP server, you acknowledge and agree to the following:
1. This server accesses your own OurFamilyWizard account. Auth happens via your own credentials. It does not β and cannot β access your co-parent's account, your children's accounts, or anyone else's.
2. OurFamilyWizard's Terms govern your use of this server, just as they govern your direct use of OFW. There is no explicit anti-scraping clause; the governing language is broader:
Users may not obtain or attempt to obtain any materials or information through any means not intentionally made available.
And on credentials: "You are solely responsible for (1) maintaining the strict confidentiality of assigned Authentication Methods, (2) instructing any individual to whom the assigned Authentication Method is shared ('Authorized User') to not allow another person to use the Authentication Method." OFW does contemplate "Authorized Users" and third-party-enabled integrations β but the account holder remains responsible.
You are agreeing to those terms β read by the maintainer 2026-05-23 β every time you invoke a tool in this server.
3. Personal, family use only. This project is not affiliated with, endorsed by, sponsored by, or in partnership with OurFamilyWizard, LLC or its parent. It is a personal automation tool for the named account holder. Do not use it on behalf of a co-parent without their consent, do not share credentials with anyone, and do not use it to bulk-extract another family's data.
4. OFW is a court-of-record platform. Messages, expenses, calendar entries, and journal entries on OFW may be entered into legal proceedings β including custody, divorce, and parenting-plan-modification cases. Anything this server writes to OFW (drafts you save, events you create, expenses you log) will appear with the same legal weight as if you had typed it yourself. Do not let this MCP send a message, create an event, or log an expense that you have not read and approved. Review every write operation before confirming.
5. You accept full responsibility for any consequences β both technical (account warnings, suspension) and legal (anything OFW records about your account activity). The MCP author is not your attorney; if you're using OFW in connection with an active legal matter, talk to your actual attorney before automating anything.
This section is the maintainer's good-faith summary of the terms β it is not legal advice and does not modify or supersede OurFamilyWizard's actual ToS.
Edit your Claude Desktop config file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonAdd the ofw entry inside "mcpServers" (create the key if it doesn't exist):
Replace /absolute/path/to/ofw-mcp with the actual path where you cloned the repo. On Mac, run pwd inside the cloned directory to get it.
Quit completely (Cmd+Q on Mac, not just close the window) and relaunch.
Ask Claude: "What does my OFW dashboard look like?" β it should show your unread message count, upcoming events, and outstanding expenses.
ofw-mcp tries three auth paths in order; whichever succeeds first is used. Existing setups keep working unchanged.
OFW_USERNAME + OFW_PASSWORD and the server logs in via OFW's form endpoint. This is the path shown in the Claude Desktop config above.localStorage["auth"] once at startup from your already-signed-in ourfamilywizard.com tab via the fetchproxy browser extension. After that one read, all OFW API calls go directly from Node β the extension is not in the request hot path. Install the fetchproxy extension (Chrome Web Store / Safari .dmg), sign into OurFamilyWizard once, and the MCP just works. If you have multiple OFW accounts and want them to use separate caches, set OFW_CACHE_IDENTITY to a label per profile.OFW_DISABLE_FETCHPROXY=1 to skip the fetchproxy fallback entirely (turns missing credentials into a hard error β useful in headless CI).Option A β env block in Claude Desktop config (shown above, recommended):
Option B β .env file in the project directory:
Environment variables always take priority over the .env file. You can also pass them directly on the command line:
Read-only tools run automatically. Write tools ask for your confirmation first. The Write mode column shows the minimum OFW_WRITE_MODE a tool needs to be available at all β see Write protection below.
| Tool | What it does | Permission | Write mode |
|---|---|---|---|
ofw_get_profile | Your profile and co-parent info | Auto | any |
ofw_get_notifications | Dashboard counts (unread messages, upcoming events, outstanding expenses) | Auto | any |
ofw_list_message_folders | Folders with unread counts β get folder IDs here before listing messages | Auto | any |
ofw_list_messages | Messages in a folder | Auto | any |
ofw_get_message | Full content of a single message | Auto | any |
ofw_sync_messages | Sync messages into the local cache (unread bodies left unfetched to avoid read receipts) | Auto | any |
ofw_get_unread_sent | Sent messages a recipient hasn't read yet (from local cache) | Auto | any |
ofw_check_freshness | Cheap live check that the cache still matches OFW β per id, whether it is still a draft or was sent/deleted, without a full sync | Auto | any |
ofw_status | One live call for "where does everything stand?" β the full verified draft inventory, and the current state of any ids or draft keys | Auto | any |
ofw_download_attachment | Download a message attachment to disk, or inline as extracted content / bytes | Auto | any |
ofw_send_message | Send a message | Confirm | all |
ofw_list_drafts | Draft messages | Auto | any |
ofw_save_draft | Create or update a draft | Confirm | drafts |
ofw_delete_draft | Delete a draft | Confirm | drafts |
ofw_upload_attachment | Upload a local file to My Files; returns a fileId to attach via ofw_send_message/ofw_save_draft | Auto | drafts |
ofw_list_events | Calendar events in a date range | Auto | any |
ofw_create_event | Create a calendar event | Confirm | all (or drafts + OFW_CALENDAR_WRITES) |
ofw_update_event | Update a calendar event | Confirm | all (or drafts + OFW_CALENDAR_WRITES) |
ofw_delete_event | Delete a calendar event | Confirm | all (or drafts + OFW_CALENDAR_WRITES) |
ofw_get_expense_totals | Expense summary totals | Auto | any |
ofw_list_expenses | Expense history | Auto | any |
ofw_create_expense | Log a new expense | Confirm | all |
ofw_list_journal_entries | Journal entries | Auto | any |
ofw_create_journal_entry | Create a journal entry | Confirm | all |
OFW_FRESHNESS_TTL_SECONDS)Message and draft reads are served from the local cache, which means a result can look authoritative while being minutes or months out of date. The cache also cannot detect some changes on its own: editing a draft in the OFW web app bumps no timestamp at all, so "nothing changed" and "we didn't look" are indistinguishable unless the server says which happened.
So every read tool (ofw_list_messages, ofw_list_drafts, ofw_get_message, ofw_list_message_folders, ofw_sync_messages) returns a freshness block alongside its data:
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/ofw-mcp)<a href="https://allmcps.com/mcp/ofw-mcp"><img src="https://allmcps.com/api/badge/ofw-mcp?style=directory" alt="Ofw MCP on AllMCPs" /></a>