copilot-money-mcp 1.4.0 → 1.6.0
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.
- package/PRIVACY.md +58 -18
- package/README.md +121 -263
- package/dist/cli.js +3385 -87
- package/dist/decode-worker.js +1559 -51
- package/package.json +8 -4
package/PRIVACY.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Privacy Policy for Copilot Money MCP Server
|
|
2
2
|
|
|
3
|
-
**Last Updated:**
|
|
3
|
+
**Last Updated:** April 11, 2026
|
|
4
4
|
|
|
5
5
|
## Disclaimer
|
|
6
6
|
|
|
@@ -10,16 +10,21 @@
|
|
|
10
10
|
|
|
11
11
|
The Copilot Money MCP Server is designed with privacy as a core principle. This document outlines our privacy practices and commitments.
|
|
12
12
|
|
|
13
|
+
The server operates in two modes:
|
|
14
|
+
- **Read-only mode (default):** Reads data exclusively from your local Copilot Money database cache. No network requests are made.
|
|
15
|
+
- **Write mode (opt-in, `--write` flag):** Adds the ability to modify your Copilot Money data. Because Copilot Money is backed by Google Firebase/Firestore, write operations require authenticated network requests to Firebase/Firestore on your behalf. See the [Write Mode and Network Access](#write-mode-and-network-access) section below.
|
|
16
|
+
|
|
13
17
|
## Data Collection
|
|
14
18
|
|
|
15
|
-
**We do not collect, store, or transmit any of your data.**
|
|
19
|
+
**We do not collect, store, or transmit any of your data to our servers or any third party.** The server has no backend, no analytics, and no telemetry.
|
|
16
20
|
|
|
17
21
|
The Copilot Money MCP Server:
|
|
18
|
-
- Operates
|
|
22
|
+
- Operates on your local machine
|
|
19
23
|
- Reads data only from your local Copilot Money database cache
|
|
20
|
-
- Never sends your financial data to
|
|
21
|
-
- Never transmits data over the internet
|
|
24
|
+
- Never sends your financial data to servers operated by this project (we don't have servers)
|
|
22
25
|
- Does not include any analytics or telemetry
|
|
26
|
+
- Makes zero network requests in the default read-only mode
|
|
27
|
+
- In opt-in write mode, makes network requests **only** to Google Firebase/Firestore (the same backend Copilot Money itself uses) to apply the changes you request
|
|
23
28
|
|
|
24
29
|
## Data Access
|
|
25
30
|
|
|
@@ -33,14 +38,16 @@ The server reads from your local Copilot Money database, which is stored at:
|
|
|
33
38
|
This database contains:
|
|
34
39
|
- Transaction records (amounts, dates, merchant names, categories)
|
|
35
40
|
- Account information (balances, account types, institution names)
|
|
36
|
-
-
|
|
41
|
+
- Budgets, goals, tags, categories, and recurring transactions
|
|
42
|
+
- Investment holdings, prices, and performance data
|
|
37
43
|
|
|
38
44
|
### How We Access Data
|
|
39
45
|
|
|
40
|
-
- **
|
|
41
|
-
- **Local Processing:** All
|
|
42
|
-
- **
|
|
43
|
-
- **No
|
|
46
|
+
- **Local Reads:** All data reads happen against your local Copilot Money database cache
|
|
47
|
+
- **Local Processing:** All query processing, filtering, and aggregation happens on your machine
|
|
48
|
+
- **Read-Only by Default:** In the default mode, the server only reads data and makes zero network requests
|
|
49
|
+
- **No Third-Party Analytics:** No connections to analytics, tracking, or telemetry services
|
|
50
|
+
- **Opt-In Writes:** Write operations are disabled unless you explicitly start the server with `--write`. When enabled, writes are sent directly to Google Firebase/Firestore — the same backend Copilot Money itself uses — and not to any intermediary operated by this project
|
|
44
51
|
|
|
45
52
|
## Data Usage
|
|
46
53
|
|
|
@@ -49,24 +56,31 @@ Data read from your local database is used exclusively to:
|
|
|
49
56
|
2. Perform local calculations (e.g., spending aggregations, category summaries)
|
|
50
57
|
3. Filter and search transactions based on your requests
|
|
51
58
|
|
|
52
|
-
|
|
59
|
+
If you explicitly enable write mode with `--write`, data you ask the server to modify is additionally used to:
|
|
60
|
+
4. Construct authenticated Firestore REST API requests that apply your requested changes to your own Copilot Money account
|
|
61
|
+
|
|
62
|
+
All processing happens in memory on your local machine. No data is persisted outside of the existing Copilot Money database and its native Firebase/Firestore backend.
|
|
53
63
|
|
|
54
64
|
## Data Sharing
|
|
55
65
|
|
|
56
66
|
**We do not share your data with anyone.**
|
|
57
67
|
|
|
58
68
|
- No data is sent to our servers (we don't have servers)
|
|
59
|
-
- No data is sent to third parties
|
|
69
|
+
- No data is sent to third parties for analytics, advertising, or tracking
|
|
60
70
|
- No data is sent to Anthropic (beyond what Claude Desktop processes locally)
|
|
61
71
|
- No analytics or crash reports are transmitted
|
|
62
72
|
|
|
73
|
+
In opt-in write mode, requested changes are sent directly from your machine to Google Firebase/Firestore using your own Copilot Money credentials. This is the same backend Copilot Money itself uses to persist your data — no intermediary server operated by this project is involved. This traffic is governed by Google's and Copilot Money's own privacy policies.
|
|
74
|
+
|
|
63
75
|
## Data Security
|
|
64
76
|
|
|
65
77
|
### Technical Safeguards
|
|
66
78
|
|
|
67
|
-
- **Local-
|
|
68
|
-
- **No Network Access:**
|
|
69
|
-
- **
|
|
79
|
+
- **Local-First Architecture:** All queries, filtering, and aggregation happen locally
|
|
80
|
+
- **No Network Access in Default Mode:** With read-only mode (default), the server makes zero network requests
|
|
81
|
+
- **Opt-In Writes:** Write tools are disabled unless you explicitly start the server with `--write`
|
|
82
|
+
- **Authenticated Writes Only:** When write mode is enabled, network requests go only to Google Firebase/Firestore, authenticated with your own Copilot Money credentials over HTTPS
|
|
83
|
+
- **No Third-Party Network Destinations:** The server never contacts destinations other than Google's Firebase/Firestore endpoints (and only in write mode)
|
|
70
84
|
- **macOS Sandbox Compliance:** Respects macOS file system permissions
|
|
71
85
|
|
|
72
86
|
### Your Control
|
|
@@ -76,6 +90,31 @@ You maintain full control over your data:
|
|
|
76
90
|
- You can stop the server at any time by closing Claude Desktop
|
|
77
91
|
- You can uninstall the server at any time
|
|
78
92
|
- Your Copilot Money data remains in its original location
|
|
93
|
+
- **Write mode is strictly opt-in:** Write tools are unavailable unless you explicitly start the server with `--write`. Without this flag, the server cannot modify your Copilot Money data even if instructed to do so
|
|
94
|
+
|
|
95
|
+
## Write Mode and Network Access
|
|
96
|
+
|
|
97
|
+
By default, the server starts in read-only mode and makes zero network requests. If you explicitly enable write mode by starting the server with the `--write` flag, the following additional behavior applies:
|
|
98
|
+
|
|
99
|
+
### What Happens in Write Mode
|
|
100
|
+
|
|
101
|
+
- The server can execute write tools that modify your Copilot Money data (categorizing transactions, creating budgets, editing goals, etc.)
|
|
102
|
+
- To apply those changes, the server authenticates to Google Firebase using a Firebase refresh token extracted from your local Copilot Money session, then sends Firestore REST API requests directly to `https://firestore.googleapis.com`
|
|
103
|
+
- These requests go to the **same Firebase/Firestore backend that Copilot Money itself uses** — your changes reach your own Copilot Money account, just as they would if you had made them in the Copilot Money app
|
|
104
|
+
- No write traffic passes through any server operated by this project
|
|
105
|
+
|
|
106
|
+
### What Does Not Happen
|
|
107
|
+
|
|
108
|
+
- No write traffic is ever sent to servers operated by this project (we don't have any)
|
|
109
|
+
- No write traffic is sent to Anthropic or any third party other than Google (Firebase/Firestore)
|
|
110
|
+
- The server never initiates writes on its own — every write is the direct result of a tool call you (or an AI assistant on your behalf) issued
|
|
111
|
+
- Your Firebase credentials are held only in memory and are never logged, persisted, or transmitted to anyone other than Google's token-exchange endpoint
|
|
112
|
+
|
|
113
|
+
### Governing Policies
|
|
114
|
+
|
|
115
|
+
Network traffic in write mode is subject to:
|
|
116
|
+
- [Google's Privacy Policy](https://policies.google.com/privacy) (as Firebase/Firestore is operated by Google)
|
|
117
|
+
- Copilot Money's own terms and privacy policy (as you are modifying data on their backend)
|
|
79
118
|
|
|
80
119
|
## Claude Desktop Integration
|
|
81
120
|
|
|
@@ -89,7 +128,8 @@ When integrated with Claude Desktop:
|
|
|
89
128
|
|
|
90
129
|
This server does not integrate with any third-party services beyond:
|
|
91
130
|
- **Claude Desktop** (optional, required for AI-powered queries)
|
|
92
|
-
- **Copilot Money** (reads local database created by the app)
|
|
131
|
+
- **Copilot Money** (reads the local database created by the app)
|
|
132
|
+
- **Google Firebase / Firestore** (only in opt-in write mode; this is Copilot Money's own backend, accessed directly with your own Copilot Money credentials)
|
|
93
133
|
|
|
94
134
|
## Children's Privacy
|
|
95
135
|
|
|
@@ -103,7 +143,7 @@ We may update this privacy policy from time to time. Changes will be reflected i
|
|
|
103
143
|
|
|
104
144
|
This server is open source. You can:
|
|
105
145
|
- Review the source code at https://github.com/ignaciohermosillacornejo/copilot-money-mcp
|
|
106
|
-
- Verify
|
|
146
|
+
- Verify exactly which network destinations (if any) are contacted in each mode
|
|
107
147
|
- Audit the data access patterns
|
|
108
148
|
- Contribute improvements
|
|
109
149
|
|
|
@@ -115,4 +155,4 @@ For privacy-related questions or concerns:
|
|
|
115
155
|
|
|
116
156
|
## Summary
|
|
117
157
|
|
|
118
|
-
**In short:** This server is a local-
|
|
158
|
+
**In short:** This server is a local-first tool that reads your Copilot Money data to enable AI-powered queries via Claude Desktop. In its default read-only mode, your data never leaves your machine. If you explicitly opt in to write mode with the `--write` flag, the server can additionally apply your requested changes by talking directly to Copilot Money's own Firebase/Firestore backend using your own credentials. We never collect, store, or transmit your financial information to servers operated by this project — we don't have any.
|