@dizzlkheinz/ynab-mcpb 0.18.1 → 0.18.2

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/README.md CHANGED
@@ -1,33 +1,18 @@
1
1
  # YNAB MCP Server
2
2
 
3
- [![Download latest MCPB](https://img.shields.io/badge/Download-latest%20MCPB-blue?logo=github)](https://github.com/dizzlkheinz/ynab-mcpb/releases/latest)
4
- [![npm version](https://img.shields.io/npm/v/@dizzlkheinz/ynab-mcpb.svg)](https://www.npmjs.com/package/@dizzlkheinz/ynab-mcpb)
5
- [![npm downloads](https://img.shields.io/npm/dm/@dizzlkheinz/ynab-mcpb.svg)](https://www.npmjs.com/package/@dizzlkheinz/ynab-mcpb)
6
-
7
- [![Release](https://img.shields.io/github/v/release/dizzlkheinz/ynab-mcpb?sort=semver)](https://github.com/dizzlkheinz/ynab-mcpb/releases/latest)
8
- [![Release MCPB](https://github.com/dizzlkheinz/ynab-mcpb/actions/workflows/release.yml/badge.svg)](https://github.com/dizzlkheinz/ynab-mcpb/actions/workflows/release.yml)
9
- [![Downloads](https://img.shields.io/github/downloads/dizzlkheinz/ynab-mcpb/total.svg)](https://github.com/dizzlkheinz/ynab-mcpb/releases)
3
+ [![Download MCPB](https://img.shields.io/badge/Download-MCPB-blue?logo=github)](https://github.com/dizzlkheinz/ynab-mcpb/releases/latest)
4
+ [![npm](https://img.shields.io/npm/v/@dizzlkheinz/ynab-mcpb.svg)](https://www.npmjs.com/package/@dizzlkheinz/ynab-mcpb)
10
5
  [![License: AGPL v3](https://img.shields.io/badge/License-AGPL_v3-blue.svg)](LICENSE)
11
- [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg)](https://prettier.io)
12
- [![lint: eslint](https://img.shields.io/badge/lint-eslint-green.svg)](https://eslint.org)
13
- [![Node](https://img.shields.io/badge/node-%E2%89%A518-brightgreen.svg)](#)
14
- [![TypeScript](https://img.shields.io/badge/TypeScript-5.x-3178c6.svg)](https://www.typescriptlang.org)
15
- [![SemVer](https://img.shields.io/badge/SemVer-0.y.z-yellow.svg)](https://semver.org/)
16
- [![Issues](https://img.shields.io/github/issues/dizzlkheinz/ynab-mcpb)](https://github.com/dizzlkheinz/ynab-mcpb/issues)
17
- [![PRs](https://img.shields.io/github/issues-pr/dizzlkheinz/ynab-mcpb)](https://github.com/dizzlkheinz/ynab-mcpb/pulls)
18
6
 
19
- Connect your YNAB budget to Claude Desktop and other AI assistants using the Model Context Protocol (MCP). Ask questions about your spending, create transactions, reconcile accounts, and manage your budget using natural language.
7
+ Connect your YNAB budget to Claude Desktop (or any MCP client) and manage your finances with natural language.
8
+
9
+ ### Highlights
20
10
 
21
- ## What Can You Do?
11
+ **Receipt Itemization** Paste a receipt, get split transactions with tax allocated across items. No more manual entry for Costco runs.
22
12
 
23
- - **Ask Questions**: "How much did I spend on groceries last month?" or "What's my credit card balance?"
24
- - **Manage Transactions**: Create, update, or delete transactions without opening YNAB
25
- - **Split Receipts**: Create itemized transactions from receipts with automatic tax allocation across items
26
- - **Reconcile Accounts**: Import and compare bank statements to find missing transactions
27
- - **Analyze Spending**: Get insights into spending patterns and budget performance
28
- - **Set Budgets**: Adjust category budgets and move money between categories
13
+ **Bank Reconciliation** _(beta)_ Import a CSV from your bank, fuzzy-match against YNAB, find discrepancies. Presets for TD, RBC, Scotiabank, Wealthsimple, Tangerine. _This is the most ambitious feature—it works well but has rough edges. [Bug reports welcome!](https://github.com/dizzlkheinz/ynab-mcpb/issues)_
29
14
 
30
- All monetary amounts are automatically converted to dollars (YNAB stores them in milliunits internally), so everything is human-readable.
15
+ **Everything Else** Check balances, create transactions, analyze spending, adjust budgets. Just ask.
31
16
 
32
17
  ## Quick Start
33
18
 
@@ -118,8 +103,6 @@ For any MCP-compatible client, configure the server with:
118
103
 
119
104
  - `YNAB_ACCESS_TOKEN`: Your YNAB Personal Access Token
120
105
 
121
- Refer to your MCP client's documentation for specific configuration steps.
122
-
123
106
  </details>
124
107
 
125
108
  ### Step 3: Start Using It
@@ -133,134 +116,45 @@ Ask your AI assistant questions like:
133
116
 
134
117
  That's it! You're ready to manage your budget with AI.
135
118
 
136
- ## Optional Configuration
137
-
138
- Most users won't need to change these settings, but they're available if you need them:
139
-
140
- **Export Location:**
141
-
142
- - `YNAB_EXPORT_PATH` — Where to save exported transaction files (defaults to Downloads folder)
143
-
144
- Example:
145
-
146
- ```json
147
- {
148
- "mcpServers": {
149
- "ynab": {
150
- "command": "npx",
151
- "args": ["-y", "@dizzlkheinz/ynab-mcpb@latest"],
152
- "env": {
153
- "YNAB_ACCESS_TOKEN": "your-token-here",
154
- "YNAB_EXPORT_PATH": "C:\\Users\\YourName\\Documents"
155
- }
156
- }
157
- }
158
- }
159
- ```
160
-
161
- For advanced configuration options (caching, output formatting), see the `.env.example` file in the repository.
162
-
163
- ## What's Available
164
-
165
- The server gives Claude access to 29 tools organized by function. You don't need to know the tool names - just ask Claude in natural language and it will use the right tools.
166
-
167
- **Budget & Account Info**
168
-
169
- - View budgets, accounts, categories, payees
170
- - Check balances and category budgets
171
- - See monthly spending summaries
172
-
173
- **Transactions**
174
-
175
- - List, create, update, or delete transactions
176
- - Import and reconcile bank statements
177
- - Export transactions to files
178
- - Create split transactions from receipts
179
-
180
- **Analysis**
119
+ <details>
120
+ <summary><b>Optional Configuration</b></summary>
181
121
 
182
- - Compare spending across time periods
183
- - Find missing transactions
184
- - Track budget performance
122
+ - `YNAB_EXPORT_PATH` Directory for exported files (default: Downloads)
185
123
 
186
- ## MCP Resources
124
+ See `.env.example` for caching and output options.
187
125
 
188
- - Access budget and account data via URI patterns (e.g., `ynab://budgets/{id}`)
189
- - Static resources: `ynab://budgets`, `ynab://user`
126
+ </details>
190
127
 
191
- For the complete list with technical details, see the [API Reference](docs/reference/API.md).
128
+ ## Available Tools
192
129
 
193
- ## MCP Client Features
130
+ 29 tools for budgets, accounts, transactions, categories, payees, and analysis. Just ask in natural language.
194
131
 
195
- - **Autocomplete (Completions)**: Clients that support MCP completions can suggest budgets, accounts, categories, and payees while filling tool arguments.
196
- - **Progress Notifications**: Long-running operations (notably reconciliation) emit progress updates when the client provides a progress token.
132
+ For the complete list, see the [API Reference](docs/reference/API.md).
197
133
 
198
134
  ## Need Help?
199
135
 
200
- - **[API Reference](docs/reference/API.md)** - Complete tool documentation
201
- - **[GitHub Issues](https://github.com/dizzlkheinz/ynab-mcpb/issues)** - Report bugs or request features
202
-
203
- ## For Developers
204
-
205
- Want to contribute or build from source?
206
-
207
- ### Development Setup
208
-
209
- 1. **Clone the repository:**
210
-
211
- ```bash
212
- git clone https://github.com/dizzlkheinz/ynab-mcpb.git
213
- cd ynab-mcpb
214
- ```
215
-
216
- 2. **Install dependencies:**
136
+ [API Reference](docs/reference/API.md) · [Issues](https://github.com/dizzlkheinz/ynab-mcpb/issues)
217
137
 
218
- ```bash
219
- npm install
220
- ```
221
-
222
- 3. **Create your environment file:**
223
- Copy the example environment file to a new `.env` file:
224
-
225
- ```bash
226
- cp .env.example .env
227
- ```
228
-
229
- Open the `.env` file and add your YNAB Personal Access Token:
230
-
231
- ```
232
- YNAB_ACCESS_TOKEN="your-token-here"
233
- ```
138
+ <details>
139
+ <summary><b>For Developers</b></summary>
234
140
 
235
- 4. **Build and test the project:**
236
- ```bash
237
- npm run build
238
- npm test
239
- ```
141
+ ```bash
142
+ git clone https://github.com/dizzlkheinz/ynab-mcpb.git && cd ynab-mcpb
143
+ npm install
144
+ cp .env.example .env # add your YNAB_ACCESS_TOKEN
145
+ npm run build && npm test
146
+ ```
240
147
 
241
- ## Security & Privacy
148
+ See `CLAUDE.md` for architecture details.
242
149
 
243
- Your YNAB access token is stored securely and never logged. All communication with YNAB's API uses HTTPS, and the server validates all inputs to prevent errors and security issues.
150
+ </details>
244
151
 
245
152
  ## Contributing
246
153
 
247
- Contributions welcome! Please:
248
-
249
- 1. [Open an issue](https://github.com/dizzlkheinz/ynab-mcpb/issues) to discuss your idea
250
- 2. Fork the repository and make your changes
251
- 3. Add tests for new features
252
- 4. Submit a pull request
154
+ **Bug reports are especially valuable** — particularly for the reconciliation tool. If your bank's CSV doesn't parse right or matching behaves unexpectedly, [open an issue](https://github.com/dizzlkheinz/ynab-mcpb/issues) with sample data (anonymized) and I'll fix it.
253
155
 
254
- See `CLAUDE.md` for development details and architecture overview.
156
+ PRs welcome too. See `CLAUDE.md` for architecture.
255
157
 
256
158
  ## License
257
159
 
258
- Licensed under [AGPL-3.0](LICENSE). Free to use and modify, but derivative works must also be open source.
259
-
260
- ---
261
-
262
- Built with:
263
-
264
- - [YNAB API](https://api.youneedabudget.com/) - Official YNAB REST API
265
- - [Model Context Protocol](https://modelcontextprotocol.io/) - AI integration standard
266
- - [Claude Desktop](https://claude.ai/download) - AI assistant with MCP support
160
+ [AGPL-3.0](LICENSE) Free to use; derivative works must be open source.