copilot-money-mcp 1.1.0 → 1.2.1
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/LICENSE +21 -0
- package/README.md +55 -165
- package/dist/cli.js +13704 -9790
- package/package.json +17 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "copilot-money-mcp",
|
|
3
|
-
"version": "1.1
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "MCP server for Copilot Money - AI-powered personal finance queries using local data",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"claude",
|
|
12
12
|
"ai"
|
|
13
13
|
],
|
|
14
|
-
"author": "Ignacio Hermosilla <
|
|
14
|
+
"author": "Ignacio Hermosilla <hello@ignaciohermosilla.com>",
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"repository": {
|
|
17
17
|
"type": "git",
|
|
@@ -35,6 +35,10 @@
|
|
|
35
35
|
"LICENSE",
|
|
36
36
|
"PRIVACY.md"
|
|
37
37
|
],
|
|
38
|
+
"publishConfig": {
|
|
39
|
+
"access": "public",
|
|
40
|
+
"provenance": true
|
|
41
|
+
},
|
|
38
42
|
"scripts": {
|
|
39
43
|
"dev": "bun run src/server.ts",
|
|
40
44
|
"dev:debug": "bun --inspect run src/server.ts",
|
|
@@ -43,12 +47,15 @@
|
|
|
43
47
|
"test": "bun test",
|
|
44
48
|
"test:watch": "bun test --watch",
|
|
45
49
|
"test:coverage": "bun test --coverage",
|
|
46
|
-
"lint": "eslint src
|
|
47
|
-
"lint:fix": "eslint src --
|
|
50
|
+
"lint": "eslint src",
|
|
51
|
+
"lint:fix": "eslint src --fix",
|
|
48
52
|
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
49
53
|
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
50
54
|
"typecheck": "tsc --noEmit",
|
|
51
|
-
"check": "bun run typecheck && bun run lint && bun run format:check && bun
|
|
55
|
+
"check": "bun run typecheck && bun run lint && bun run format:check && bun test --bail",
|
|
56
|
+
"sync-manifest": "bun run scripts/sync-manifest.ts",
|
|
57
|
+
"audit-reviews": "bun run scripts/audit-pr-reviews.ts",
|
|
58
|
+
"audit-reviews:dry": "bun run scripts/audit-pr-reviews.ts --dry-run",
|
|
52
59
|
"fix": "bun run lint:fix && bun run format",
|
|
53
60
|
"clean": "rm -rf dist coverage .bun-build",
|
|
54
61
|
"pack:mcpb": "bun run build:bundle && bun run build && bunx @anthropic-ai/mcpb pack",
|
|
@@ -65,12 +72,12 @@
|
|
|
65
72
|
"@anthropic-ai/mcpb": "latest",
|
|
66
73
|
"@types/bun": "^1.1.0",
|
|
67
74
|
"@types/node": "^20.11.16",
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"eslint-config-prettier": "^9.1.0",
|
|
75
|
+
"eslint": "^9.0.0",
|
|
76
|
+
"eslint-config-prettier": "^10.0.0",
|
|
77
|
+
"globals": "^16.0.0",
|
|
72
78
|
"husky": "^9.1.7",
|
|
73
79
|
"prettier": "^3.2.5",
|
|
74
|
-
"typescript": "^5.3.3"
|
|
80
|
+
"typescript": "^5.3.3",
|
|
81
|
+
"typescript-eslint": "^8.0.0"
|
|
75
82
|
}
|
|
76
83
|
}
|