personal-finance-mcp
Click on "Install 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 installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceA lightweight MCP server for tracking personal expenses, income, and budget summaries using SQLite.Last updated4
- Flicense-qualityDmaintenanceA local MCP server for tracking personal expenses using SQLite, enabling users to add, list, and summarize expenses via natural language.Last updated
- 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.Last updated12
- FlicenseAqualityCmaintenancePersonal finance MCP server that integrates Plaid bank data with local SQLite memory for conversational budgeting, goal tracking, and transaction management.Last updated15
Related MCP Connectors
MCP server for Gainium — manage trading bots, deals, and balances via AI assistants
Hosted MCP server for Mini Accountant: invoices, expenses, customers, analytics, tax estimates.
Person-owned, portable AI memory as a remote MCP server, readable and writable by any MCP client.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/joohyukjung/personal-finance-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server