package.json•1.29 kB
{
"name": "monarchmoney-ts-mcp",
"version": "0.0.1",
"description": "Model Context Protocol (MCP) server for MonarchMoney SDK",
"main": "dist/index.js",
"bin": {
"monarchmoney-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "jest --passWithNoTests",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"clean": "rm -rf dist",
"bundle": "npm run build && node scripts/create-mcpb.js",
"release": "npm run bundle"
},
"keywords": [
"mcp",
"model-context-protocol",
"monarch-money",
"personal-finance",
"ai-assistant",
"claude",
"typescript"
],
"author": "Keith Ah <keithah@users.noreply.github.com>",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"commander": "^12.0.0",
"dotenv": "^16.0.0",
"monarchmoney": "^1.0.1",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"archiver": "^7.0.1",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"prettier": "^3.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}