ofw-mcp 2.0.17 → 2.0.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,7 +6,7 @@
6
6
  },
7
7
  "metadata": {
8
8
  "description": "OurFamilyWizard tools for Claude Code",
9
- "version": "2.0.17"
9
+ "version": "2.0.18"
10
10
  },
11
11
  "plugins": [
12
12
  {
@@ -14,7 +14,7 @@
14
14
  "displayName": "OurFamilyWizard",
15
15
  "source": "./",
16
16
  "description": "OurFamilyWizard co-parenting tools for Claude — messages, calendar, expenses, and journal via MCP",
17
- "version": "2.0.17",
17
+ "version": "2.0.18",
18
18
  "author": {
19
19
  "name": "Chris Chall"
20
20
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ofw",
3
3
  "displayName": "OurFamilyWizard",
4
- "version": "2.0.17",
4
+ "version": "2.0.18",
5
5
  "description": "OurFamilyWizard co-parenting tools for Claude — messages, calendar, expenses, and journal via MCP",
6
6
  "author": {
7
7
  "name": "Chris Chall"
package/README.md CHANGED
@@ -21,6 +21,28 @@ Ask Claude things like:
21
21
  - [Node.js](https://nodejs.org) 22.5 or later (`node:sqlite` is the cache backend)
22
22
  - An active OurFamilyWizard account
23
23
 
24
+ ## Acknowledgement of Terms
25
+
26
+ By using this MCP server, you acknowledge and agree to the following:
27
+
28
+ **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.
29
+
30
+ **2. [OurFamilyWizard's Terms](https://www.ourfamilywizard.com/legal/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:
31
+
32
+ > Users may not obtain or attempt to obtain any materials or information through any means not intentionally made available.
33
+
34
+ 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.
35
+
36
+ You are agreeing to those terms — read by the maintainer 2026-05-23 — every time you invoke a tool in this server.
37
+
38
+ **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.
39
+
40
+ **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.
41
+
42
+ **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.
43
+
44
+ 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.
45
+
24
46
  ## Installation
25
47
 
26
48
  ### 1. Clone and build
package/dist/bundle.js CHANGED
@@ -36652,7 +36652,7 @@ function getDefaultInlineAttachments() {
36652
36652
  // package.json
36653
36653
  var package_default = {
36654
36654
  name: "ofw-mcp",
36655
- version: "2.0.17",
36655
+ version: "2.0.18",
36656
36656
  mcpName: "io.github.chrischall/ofw-mcp",
36657
36657
  description: "OurFamilyWizard MCP server for Claude \u2014 developed and maintained by AI (Claude Code)",
36658
36658
  author: "Claude Code (AI) <https://www.anthropic.com/claude>",
@@ -38039,7 +38039,7 @@ process.emit = function(event, ...args) {
38039
38039
  }
38040
38040
  return originalEmit(event, ...args);
38041
38041
  };
38042
- var server = new McpServer({ name: "ofw", version: "2.0.17" });
38042
+ var server = new McpServer({ name: "ofw", version: "2.0.18" });
38043
38043
  registerUserTools(server, client);
38044
38044
  registerMessageTools(server, client);
38045
38045
  registerCalendarTools(server, client);
package/dist/index.js CHANGED
@@ -17,7 +17,7 @@ import { registerMessageTools } from './tools/messages.js';
17
17
  import { registerCalendarTools } from './tools/calendar.js';
18
18
  import { registerExpenseTools } from './tools/expenses.js';
19
19
  import { registerJournalTools } from './tools/journal.js';
20
- const server = new McpServer({ name: 'ofw', version: '2.0.17' }); // x-release-please-version
20
+ const server = new McpServer({ name: 'ofw', version: '2.0.18' }); // x-release-please-version
21
21
  registerUserTools(server, client);
22
22
  registerMessageTools(server, client);
23
23
  registerCalendarTools(server, client);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ofw-mcp",
3
- "version": "2.0.17",
3
+ "version": "2.0.18",
4
4
  "mcpName": "io.github.chrischall/ofw-mcp",
5
5
  "description": "OurFamilyWizard MCP server for Claude — developed and maintained by AI (Claude Code)",
6
6
  "author": "Claude Code (AI) <https://www.anthropic.com/claude>",
package/server.json CHANGED
@@ -6,12 +6,12 @@
6
6
  "url": "https://github.com/chrischall/ofw-mcp",
7
7
  "source": "github"
8
8
  },
9
- "version": "2.0.17",
9
+ "version": "2.0.18",
10
10
  "packages": [
11
11
  {
12
12
  "registryType": "npm",
13
13
  "identifier": "ofw-mcp",
14
- "version": "2.0.17",
14
+ "version": "2.0.18",
15
15
  "transport": {
16
16
  "type": "stdio"
17
17
  },