@dizzlkheinz/ynab-mcpb 0.24.1 → 0.25.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/CHANGELOG.md +13 -0
- package/CLAUDE.md +1 -1
- package/biome.json +1 -1
- package/dist/bundle/index.cjs +100 -100
- package/dist/server/YNABMCPServer.js +1 -1
- package/dist/server/completions.js +2 -2
- package/dist/server/resources.js +6 -6
- package/dist/tools/budgetTools.js +2 -2
- package/dist/tools/compareTransactions/parser.js +1 -1
- package/dist/tools/deltaFetcher.d.ts +1 -1
- package/dist/tools/deltaFetcher.js +4 -4
- package/dist/tools/monthTools.js +1 -1
- package/dist/tools/reconciliation/csvParser.js +1 -1
- package/dist/tools/reconciliation/index.js +2 -2
- package/dist/tools/transactionTools.d.ts +1 -1
- package/dist/tools/transactionTools.js +1 -1
- package/package.json +3 -3
- package/scripts/analyze-bundle.mjs +1 -1
- package/src/__tests__/comprehensive.integration.test.ts +1053 -1106
- package/src/__tests__/performance.test.ts +12 -12
- package/src/server/YNABMCPServer.ts +1 -1
- package/src/server/__tests__/YNABMCPServer.integration.test.ts +649 -716
- package/src/server/__tests__/completions.test.ts +6 -10
- package/src/server/__tests__/errorHandler.integration.test.ts +343 -386
- package/src/server/__tests__/resources.template.test.ts +11 -11
- package/src/server/__tests__/resources.test.ts +15 -15
- package/src/server/__tests__/security.integration.test.ts +412 -442
- package/src/server/__tests__/server-startup.integration.test.ts +372 -430
- package/src/server/completions.ts +2 -2
- package/src/server/resources.ts +6 -6
- package/src/tools/__tests__/accountTools.delta.integration.test.ts +71 -84
- package/src/tools/__tests__/accountTools.integration.test.ts +100 -108
- package/src/tools/__tests__/budgetTools.delta.integration.test.ts +23 -33
- package/src/tools/__tests__/budgetTools.integration.test.ts +108 -114
- package/src/tools/__tests__/budgetTools.test.ts +14 -14
- package/src/tools/__tests__/categoryTools.delta.integration.test.ts +18 -24
- package/src/tools/__tests__/categoryTools.integration.test.ts +261 -278
- package/src/tools/__tests__/deltaFetcher.scheduled.integration.test.ts +25 -27
- package/src/tools/__tests__/deltaFetcher.test.ts +3 -3
- package/src/tools/__tests__/monthTools.delta.integration.test.ts +14 -16
- package/src/tools/__tests__/monthTools.integration.test.ts +139 -149
- package/src/tools/__tests__/monthTools.test.ts +12 -12
- package/src/tools/__tests__/payeeTools.delta.integration.test.ts +14 -16
- package/src/tools/__tests__/payeeTools.integration.test.ts +129 -139
- package/src/tools/__tests__/transactionTools.integration.test.ts +724 -764
- package/src/tools/__tests__/utilityTools.integration.test.ts +18 -20
- package/src/tools/budgetTools.ts +2 -2
- package/src/tools/compareTransactions/parser.ts +1 -1
- package/src/tools/deltaFetcher.ts +7 -7
- package/src/tools/monthTools.ts +1 -1
- package/src/tools/reconciliation/__tests__/executor.integration.test.ts +13 -15
- package/src/tools/reconciliation/__tests__/recommendationEngine.integration.test.ts +613 -642
- package/src/tools/reconciliation/__tests__/reconciliation.delta.integration.test.ts +89 -95
- package/src/tools/reconciliation/csvParser.ts +1 -1
- package/src/tools/reconciliation/executor.ts +3 -3
- package/src/tools/reconciliation/index.ts +2 -4
- package/src/tools/transactionTools.ts +5 -5
- package/src/tools/transactionWriteTools.ts +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.25.0] - 2026-03-29
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **YNAB SDK** - Upgraded from v2.10.0 to v4.0.0; migrated all API calls from `budgets` to `plans` namespace (`getPlans`, `getPlanById`, `getPlanMonths`, `getPlanMonth`), response data fields (`data.plans`, `data.plan`), type renames (`PlanSummary`, `NewTransaction`, `ExistingTransaction`)
|
|
15
|
+
- **Biome** - Updated schema version to 2.4.9; resolved all 4 `useOptionalChain` lint warnings across source and scripts
|
|
16
|
+
|
|
17
|
+
## [0.24.2] - 2026-03-29
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- **Dependencies** - Updated `@modelcontextprotocol/sdk` to 1.28.0; updated dev dependencies (Biome 2.4.9, Vitest 4.1.2, csv-parse 6.2.1, esbuild 0.27.4, @types/node 25.5.0)
|
|
22
|
+
|
|
10
23
|
## [0.24.1] - 2026-03-29
|
|
11
24
|
|
|
12
25
|
### Fixed
|
package/CLAUDE.md
CHANGED
|
@@ -6,7 +6,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
|
|
|
6
6
|
|
|
7
7
|
This is a Model Context Protocol (MCP) server for YNAB (You Need A Budget) integration, enabling AI assistants to interact with YNAB budgets, accounts, transactions, and categories. The codebase uses TypeScript with a modular, service-oriented architecture.
|
|
8
8
|
|
|
9
|
-
**Current Version:** 0.
|
|
9
|
+
**Current Version:** 0.25.0
|
|
10
10
|
|
|
11
11
|
## Essential Commands
|
|
12
12
|
|
package/biome.json
CHANGED