pocketsmith-mcp
Version:
MCP server for managing budgets via PocketSmith API
114 lines (113 loc) • 3.41 kB
JSON
{
"name": "pocketsmith-mcp",
"version": "0.1.1-pre.0",
"description": "MCP server for managing budgets via PocketSmith API",
"main": "dist/index.js",
"files": [
"dist"
],
"bin": {
"pocketsmith-mcp": "dist/index.js"
},
"exports": "./dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/joho/pocketsmith-mcp.git"
},
"bugs": {
"url": "https://github.com/joho/pocketsmith-mcp/issues"
},
"homepage": "https://github.com/joho/pocketsmith-mcp#readme",
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"start": "node dist/index.js",
"start:stdio": "MCP_LOG_LEVEL=debug MCP_TRANSPORT_TYPE=stdio node dist/index.js",
"start:http": "MCP_LOG_LEVEL=debug MCP_TRANSPORT_TYPE=http node dist/index.js",
"start:agent": "MCP_LOG_LEVEL=debug node dist/agent/cli/boot.js",
"rebuild": "ts-node --esm scripts/clean.ts && npm run build",
"docs:generate": "typedoc --tsconfig ./tsconfig.typedoc.json",
"depcheck": "npx depcheck",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"tree": "ts-node --esm scripts/tree.ts",
"fetch-spec": "ts-node --esm scripts/fetch-openapi-spec.ts",
"format": "prettier --write \"**/*.{ts,js,json,md,html,css}\"",
"inspector": "npx mcp-inspector --config mcp.json --server pocketsmith-mcp",
"db:duckdb-example": "MCP_LOG_LEVEL=debug tsc && node dist/storage/duckdbExample.js",
"test:perf": "ts-node scripts/performance-tester.ts",
"test:perf:batch": "ts-node scripts/performance-tester.ts --tool=echo_message --requests=100 --concurrency=10 --batchSize=10"
},
"dependencies": {
"@duckdb/node-api": "^1.3.2-alpha.24",
"@hono/node-server": "^1.16.0",
"@modelcontextprotocol/sdk": "^1.16.0",
"@supabase/supabase-js": "^2.52.0",
"@types/node": "^24.0.14",
"@types/sanitize-html": "^2.16.0",
"@types/validator": "13.15.2",
"chrono-node": "^2.8.0",
"dotenv": "^16.6.1",
"eslint": "^9.31.0",
"hono": "^4.8.5",
"ignore": "^7.0.5",
"jose": "^6.0.12",
"js-yaml": "^4.1.0",
"node-cron": "^4.2.1",
"openai": "^5.10.1",
"partial-json": "^0.1.7",
"pocketsmith-ts": "^1.1.0",
"sanitize-html": "^2.17.0",
"tiktoken": "^1.0.21",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.37.0",
"validator": "13.15.15",
"winston": "^3.17.0",
"winston-transport": "^4.9.0",
"zod": "^3.25.76"
},
"keywords": [
"pocketsmith",
"budget",
"finance",
"personal-finance",
"mcp",
"model-context-protocol",
"mcp-server",
"typescript",
"transactions",
"categories",
"receipts",
"spending",
"money-management",
"ai",
"agent",
"claude",
"llm"
],
"author": "John Barton <jb@johnbarton.co> (https://github.com/joho)",
"contributors": [
{
"name": "cyanheads",
"email": "casey@caseyjhand.com",
"url": "https://github.com/cyanheads/mcp-ts-template",
"role": "Template Creator"
}
],
"license": "Apache-2.0",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@types/js-yaml": "^4.0.9",
"@types/node-cron": "^3.0.11",
"axios": "^1.10.0",
"depcheck": "^1.4.7",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"typedoc": "^0.28.7"
}
}