mcp-ynab
Version:
Model Context Protocol server for YNAB integration
61 lines (60 loc) • 1.49 kB
JSON
{
"name": "mcp-ynab",
"version": "1.1.0",
"description": "Model Context Protocol server for YNAB integration",
"main": "src/index.js",
"bin": {
"mcp-ynab": "src/index.js"
},
"files": [
"src/",
"README.md",
"package.json"
],
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"debug": "MCP_DEBUG=true node src/index.js",
"test-standalone": "node scripts/test-standalone.js",
"test-logger": "node scripts/test-logger.js",
"list-prompts": "node src/index.js --list-prompts",
"build": "echo 'No build step required'",
"test": "echo 'No tests specified'",
"prepublishOnly": "echo 'Ready to publish mcp-ynab'"
},
"keywords": [
"mcp",
"model-context-protocol",
"ynab",
"budgeting",
"finance",
"you-need-a-budget",
"personal-finance",
"mcp-server"
],
"author": "Rich Dozier <richdooz@gmail.com>",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"dotenv": "^16.3.1",
"ynab": "^2.9.0",
"js-yaml": "^4.1.0",
"yargs": "^17.7.2",
"ajv": "^8.12.0"
},
"devDependencies": {
"@types/node": "^20.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/richdooz/mcp-ynab.git"
},
"bugs": {
"url": "https://github.com/richdooz/mcp-ynab/issues"
},
"homepage": "https://github.com/richdooz/mcp-ynab#readme"
}