package.jsonā¢2.08 kB
{
"name": "monarchmoney-ts-mcp",
"version": "1.1.2",
"description": "MCP server for MonarchMoney API financial data queries with AI optimization",
"type": "module",
"module": "./src/createServer.ts",
"bin": {
"monarchmoney-mcp": "./.smithery/stdio/index.cjs"
},
"files": [
".smithery"
],
"scripts": {
"build": "npm run build:stdio",
"build:stdio": "smithery build src/createServer.ts --transport stdio -o .smithery/stdio/index.cjs && echo '#!/usr/bin/env node' | cat - .smithery/stdio/index.cjs > temp && mv temp .smithery/stdio/index.cjs && chmod +x .smithery/stdio/index.cjs",
"build:shttp": "smithery build src/createServer.ts --transport shttp -o .smithery/shttp/index.cjs",
"build:all": "npm run build:stdio && npm run build:shttp",
"prepare": "npm run build:stdio",
"dev": "smithery dev",
"test": "jest --passWithNoTests",
"test:coverage": "jest src/__tests__ --coverage --testPathIgnorePatterns=integration",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist coverage .smithery",
"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",
"@smithery/sdk": "latest",
"commander": "^12.0.0",
"dotenv": "^16.0.0",
"monarchmoney": "^1.1.3",
"zod": "^3.22.0"
},
"devDependencies": {
"@smithery/cli": "^1.4.1",
"@types/jest": "^30.0.0",
"@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",
"ts-jest": "^29.4.4",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}