feat: add Finance MCP workflow
Some checks failed
Deploy Finance MCP Service / build-mcp (push) Successful in 5m21s
Deploy to Production / Build and Test (push) Successful in 10m12s
Deploy Finance MCP Service / deploy-mcp (push) Failing after 4s
Deploy to Production / Deploy to Server (push) Successful in 6m24s

This commit is contained in:
你的用户名
2025-11-08 19:39:10 +08:00
parent 8469cd8d83
commit 076b9fac5f
16 changed files with 2069 additions and 1268 deletions

View File

@@ -1,12 +1,23 @@
{
"name": "@vben/finance-mcp-service",
"version": "0.1.0",
"version": "0.2.0",
"private": true,
"type": "module",
"description": "MCP service exposing Finwise Pro finance APIs",
"scripts": {
"start": "node src/index.js"
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {},
"devDependencies": {}
"dependencies": {
"p-queue": "^9.0.0",
"pino": "^10.1.0",
"zod": "catalog:"
},
"devDependencies": {
"@types/node": "catalog:",
"tsx": "^4.20.6",
"typescript": "catalog:"
}
}