copilot-money-mcp 1.2.0 → 1.2.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 +22 -19
- package/dist/cli.js +24 -2686
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -73,13 +73,13 @@ git clone https://github.com/ignaciohermosillacornejo/copilot-money-mcp.git
|
|
|
73
73
|
cd copilot-money-mcp
|
|
74
74
|
|
|
75
75
|
# Install dependencies
|
|
76
|
-
|
|
76
|
+
bun install
|
|
77
77
|
|
|
78
78
|
# Build the project
|
|
79
|
-
|
|
79
|
+
bun run build
|
|
80
80
|
|
|
81
81
|
# Run tests
|
|
82
|
-
|
|
82
|
+
bun test
|
|
83
83
|
```
|
|
84
84
|
|
|
85
85
|
## First-Time Setup
|
|
@@ -184,27 +184,30 @@ See tool schemas in Claude Desktop or use the MCP Inspector for complete paramet
|
|
|
184
184
|
|
|
185
185
|
```bash
|
|
186
186
|
# Install dependencies
|
|
187
|
-
|
|
187
|
+
bun install
|
|
188
188
|
|
|
189
189
|
# Run tests
|
|
190
|
-
|
|
190
|
+
bun test
|
|
191
191
|
|
|
192
192
|
# Build for production
|
|
193
|
-
|
|
193
|
+
bun run build
|
|
194
194
|
|
|
195
195
|
# Build .mcpb bundle
|
|
196
|
-
|
|
196
|
+
bun run pack:mcpb
|
|
197
197
|
|
|
198
198
|
# Type checking
|
|
199
|
-
|
|
199
|
+
bun run typecheck
|
|
200
200
|
|
|
201
201
|
# Linting
|
|
202
|
-
|
|
203
|
-
|
|
202
|
+
bun run lint
|
|
203
|
+
bun run lint:fix
|
|
204
204
|
|
|
205
205
|
# Formatting
|
|
206
|
-
|
|
207
|
-
|
|
206
|
+
bun run format
|
|
207
|
+
bun run format:check
|
|
208
|
+
|
|
209
|
+
# Run all checks (typecheck + lint + format + test)
|
|
210
|
+
bun run check
|
|
208
211
|
```
|
|
209
212
|
|
|
210
213
|
### Project Structure
|
|
@@ -240,25 +243,25 @@ copilot-money-mcp/
|
|
|
240
243
|
- **Language:** TypeScript 5.3+
|
|
241
244
|
- **Validation:** Zod schemas
|
|
242
245
|
- **Database:** LevelDB (classic-level) + Protocol Buffers
|
|
243
|
-
- **Testing:** Bun test runner (
|
|
246
|
+
- **Testing:** Bun test runner (772 tests, 100% passing)
|
|
244
247
|
- **MCP SDK:** @modelcontextprotocol/sdk v1.2
|
|
245
248
|
|
|
246
249
|
## Testing
|
|
247
250
|
|
|
248
251
|
```bash
|
|
249
252
|
# Run all tests
|
|
250
|
-
|
|
253
|
+
bun test
|
|
251
254
|
|
|
252
255
|
# Watch mode
|
|
253
|
-
|
|
256
|
+
bun test --watch
|
|
254
257
|
|
|
255
|
-
#
|
|
256
|
-
|
|
258
|
+
# Run specific test file
|
|
259
|
+
bun test tests/tools/tools.test.ts
|
|
257
260
|
```
|
|
258
261
|
|
|
259
262
|
**Test Coverage:**
|
|
260
|
-
- ✅
|
|
261
|
-
- ✅
|
|
263
|
+
- ✅ 772 tests passing
|
|
264
|
+
- ✅ 1920+ assertions
|
|
262
265
|
- ✅ Core decoder tests
|
|
263
266
|
- ✅ Database abstraction tests
|
|
264
267
|
- ✅ Tool implementation tests
|