personal-finance-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@personal-finance-mcpShow me my spending summary for last month"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Personal Finance MCP Server
A comprehensive Model Context Protocol (MCP) server for personal finance and budget management. Track expenses, manage budgets, monitor financial goals, and gain insights into your spending patterns through AI assistants.
This fork adds a stateless
streamable-httptransport and Docker support for remote/gateway deployments, in addition to the original stdio mode. See HTTP / Docker Deployment below.
🚀 Features
6 Powerful Tools
add_transaction - Record income and expenses with categorization
get_spending_summary - Analyze spending patterns by time period and category
manage_budget - Create and track monthly budget limits with overspend alerts
track_financial_goal - Set and monitor progress toward financial goals
analyze_spending_patterns - Deep insights into spending behavior and trends
manage_accounts - Handle multiple accounts (checking, savings, credit, etc.)
Key Capabilities
💰 Transaction Management: Record income and expenses with rich metadata
📊 Budget Tracking: Set monthly limits and get real-time budget alerts
🎯 Goal Setting: Track progress toward savings and financial milestones
📈 Smart Analytics: Monthly trends, category breakdowns, and spending insights
💳 Multi-Account Support: Manage checking, savings, credit, investment accounts
🔒 Local Data: All data stored locally in SQLite - complete privacy
Related MCP server: local-expense-tracker
🎨 Pricing Note
The upstream project describes this as a freemium server with a $12/month premium tier (unlimited transactions/accounts, advanced analytics, multi-currency, etc.). As of this fork, no license check, payment gating, or usage limiting is implemented in code — all 6 tools run fully unrestricted regardless of tier. Treat the free/premium tier descriptions as aspirational/marketing text only.
📦 Installation
npm install🔧 Setup
Claude Desktop (stdio)
Add to your claude_desktop_config.json:
{
"mcpServers": {
"personal-finance": {
"command": "node",
"args": ["/ABSOLUTE/PATH/TO/personal-finance-mcp/src/index.js"],
"env": {
"FINANCE_DB_PATH": "/ABSOLUTE/PATH/TO/finance.db"
}
}
}
}🌐 HTTP / Docker Deployment
For remote/gateway use (e.g. an MCP hub), this fork ships an Express-based HTTP bridge (src/http-server.js) using StreamableHTTPServerTransport, stateless (no session ID required — each request is handled independently).
Docker
docker build --platform linux/amd64 -t personal-finance-mcp .
docker run -d -p 8000:8000 \
-e FINANCE_DB_PATH=/data/finance.db \
-v $(pwd)/data:/data \
personal-finance-mcpThe server listens on POST /mcp (JSON-RPC 2.0, Accept: application/json, text/event-stream) and exposes GET /health for liveness checks.
Running the HTTP bridge directly
FINANCE_DB_PATH=/path/to/finance.db PORT=8000 node src/http-server.jsEnvironment Variables
Variable | Required | Description |
| No | SQLite file path (default: |
| No | HTTP port for |
💡 Usage Examples
Record a Transaction
This server cannot be deployed
Maintenance
Related MCP Connectors
Personal finance for AI agents — onboard, import statements, categorize & budget over MCP.
An MCP server that provides read access to your cloud storage providers, bank accounts and more.
Query your real net worth, spending, transactions, budgets and portfolio from any MCP client.
MCP server for Gainium — manage trading bots, deals, and balances via AI assistants
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA lightweight MCP server for tracking personal expenses, income, and budget summaries using SQLite.4Martin Birgmeier
- FlicenseNot gradedqualityDmaintenanceA local MCP server for tracking personal expenses using SQLite, enabling users to add, list, and summarize expenses via natural language.-
- FlicenseAqualityBmaintenanceA lightweight MCP server for managing personal finances locally. It allows users to log transactions, view summaries, manage categories, and interact with their budget via any MCP-compatible LLM client.12-
- FlicenseAqualityCmaintenancePersonal finance MCP server that integrates Plaid bank data with local SQLite memory for conversational budgeting, goal tracking, and transaction management.15-