budget-mcp 0.1.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/README.md +5 -0
- package/dist/index.js +4 -0
- package/package.json +20 -0
package/README.md
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# budget-mcp
|
|
2
|
+
|
|
3
|
+
This package is a discovery alias for [`folosat-mcp`](https://www.npmjs.com/package/folosat-mcp), the official Model Context Protocol server for [Folosat](https://folosat.com) — a personal finance app covering budgets, expenses, savings goals, group splitting, and wealth management in English and Arabic.
|
|
4
|
+
|
|
5
|
+
All functionality lives in `folosat-mcp`. Installing this package re-exports it unchanged, so you get the same tools, prompts, and resources. To get started, see the full documentation at [npmjs.com/package/folosat-mcp](https://www.npmjs.com/package/folosat-mcp) or visit [folosat.com](https://folosat.com).
|
package/dist/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "budget-mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Budget tracking and income allocation via Folosat. Manage spending across 5 buckets. EN & AR.",
|
|
5
|
+
"keywords": ["mcp", "personal-finance", "folosat", "budget"],
|
|
6
|
+
"homepage": "https://folosat.com",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/eng-mohaemad/folosat_testing"
|
|
10
|
+
},
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"type": "module",
|
|
13
|
+
"main": "dist/index.js",
|
|
14
|
+
"bin": { "budget-mcp": "dist/index.js" },
|
|
15
|
+
"files": ["dist", "README.md"],
|
|
16
|
+
"scripts": { "build": "tsc", "start": "node dist/index.js" },
|
|
17
|
+
"dependencies": { "folosat-mcp": "^0.1.0" },
|
|
18
|
+
"devDependencies": { "@types/node": "^20.0.0", "typescript": "^5" },
|
|
19
|
+
"engines": { "node": ">=18" }
|
|
20
|
+
}
|