@dizzlkheinz/ynab-mcpb 0.12.1 → 0.12.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.
Files changed (2) hide show
  1. package/README.md +8 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # YNAB MCP Server
2
2
 
3
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-mcp-server.svg)](https://www.npmjs.com/package/@dizzlkheinz/ynab-mcp-server)
5
- [![npm downloads](https://img.shields.io/npm/dm/@dizzlkheinz/ynab-mcp-server.svg)](https://www.npmjs.com/package/@dizzlkheinz/ynab-mcp-server)
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
6
 
7
7
  [![Release](https://img.shields.io/github/v/release/dizzlkheinz/ynab-mcpb?sort=semver)](https://github.com/dizzlkheinz/ynab-mcpb/releases/latest)
8
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)
@@ -60,7 +60,7 @@ Add this to your Claude Desktop MCP settings file:
60
60
  "mcpServers": {
61
61
  "ynab": {
62
62
  "command": "npx",
63
- "args": ["-y", "@dizzlkheinz/ynab-mcp-server"],
63
+ "args": ["-y", "@dizzlkheinz/ynab-mcpb"],
64
64
  "env": {
65
65
  "YNAB_ACCESS_TOKEN": "your-token-here"
66
66
  }
@@ -81,7 +81,7 @@ Add this to your Cline MCP settings:
81
81
  "mcpServers": {
82
82
  "ynab": {
83
83
  "command": "npx",
84
- "args": ["-y", "@dizzlkheinz/ynab-mcp-server"],
84
+ "args": ["-y", "@dizzlkheinz/ynab-mcpb"],
85
85
  "env": {
86
86
  "YNAB_ACCESS_TOKEN": "your-token-here"
87
87
  }
@@ -98,7 +98,7 @@ Add this to your Cline MCP settings:
98
98
  For any MCP-compatible client, configure the server with:
99
99
 
100
100
  **Command:** `npx`
101
- **Arguments:** `["-y", "@dizzlkheinz/ynab-mcp-server"]`
101
+ **Arguments:** `["-y", "@dizzlkheinz/ynab-mcpb"]`
102
102
  **Environment Variables:**
103
103
 
104
104
  - `YNAB_ACCESS_TOKEN`: Your YNAB Personal Access Token
@@ -133,7 +133,7 @@ Example:
133
133
  "mcpServers": {
134
134
  "ynab": {
135
135
  "command": "npx",
136
- "args": ["-y", "@dizzlkheinz/ynab-mcp-server"],
136
+ "args": ["-y", "@dizzlkheinz/ynab-mcpb"],
137
137
  "env": {
138
138
  "YNAB_ACCESS_TOKEN": "your-token-here",
139
139
  "YNAB_EXPORT_PATH": "C:\\Users\\YourName\\Documents"
@@ -187,8 +187,8 @@ Want to contribute or build from source?
187
187
  Quick start for development:
188
188
 
189
189
  ```bash
190
- git clone <repository-url>
191
- cd ynab-mcp-server
190
+ git clone https://github.com/dizzlkheinz/ynab-mcpb.git
191
+ cd ynab-mcpb
192
192
  npm install
193
193
  npm run build
194
194
  npm test
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dizzlkheinz/ynab-mcpb",
3
- "version": "0.12.1",
3
+ "version": "0.12.2",
4
4
  "description": "Model Context Protocol server for YNAB (You Need A Budget) integration",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",