
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
finance-intelligence-mcp
Advanced tools
A production-ready Model Context Protocol (MCP) server for private personal finance management.
Finance Intelligence MCP is a production-ready Model Context Protocol (MCP) server that enables AI assistants (like Claude, Cursor, and others) to securely manage and analyze personal finances through natural language.
Released under the MIT License and designed to be extended with additional finance tools.
Unlike standard cloud-based personal finance apps, Finance Intelligence MCP keeps all financial data under your absolute control.
┌────────────────────────────────┐
│ MCP Client │
│ (Claude Desktop, Cursor, etc) │
└───────────────┬────────────────┘
│
│ (STDIO Transport Protocol)
▼
┌────────────────────────────────┐
│ Finance Intelligence Server │
│ (Local) │
└───────────────┬────────────────┘
│
│ (Direct SQL Pool Connection)
▼
┌────────────────────────────────┐
│ PostgreSQL Database │
│ (Supabase, Local, RDS, etc) │
└────────────────────────────────┘
overall spending, specific category thresholds, or down to nested subcategory targets.stdioIf you have uv installed, get started in 2 lines:
git clone https://github.com/Ronit-019/Finance-Intelligence-MCP.git
cd Finance-Intelligence-MCP
uv sync
The easiest, free option is Supabase:
postgresql://postgres.[your-project-ref]:[your-password]@aws-0-us-east-1.pooler.supabase.com:5432/postgres[your-password] with your database password).Clone the codebase to a directory on your machine:
git clone https://github.com/Ronit-019/Finance-Intelligence-MCP.git
cd Finance-Intelligence-MCP
Copy the absolute path of this directory (e.g. C:/Users/Admin/Desktop/Finance-Intelligence-MCP).
Note: Always use forward slashes (/) for paths in JSON configs.
If you do not have uv installed, install from the project metadata:
pip install -e .
claude_desktop_config.json):
Win + R, paste %APPDATA%\Claude\claude_desktop_config.json and press Enter.~/Library/Application Support/Claude/claude_desktop_config.json in Finder's Go to Folder.mcpServers:{
"mcpServers": {
"finance-intelligence": {
"command": "uv",
"args": [
"--directory",
"REPLACE_WITH_ABSOLUTE_PATH_TO_CLONED_DIRECTORY",
"run",
"python",
"main.py"
],
"env": {
"DATABASE_URL": "REPLACE_WITH_YOUR_SUPABASE_CONNECTION_STRING"
}
}
}
}
Finance Intelligencecommanduv --directory "REPLACE_WITH_ABSOLUTE_PATH_TO_CLONED_DIRECTORY" run python main.py
DATABASE_URLREPLACE_WITH_YOUR_SUPABASE_CONNECTION_STRINGOnce configured, try talking to your AI assistant:
The server registers 12 core tools on the client:
| Tool Name | Parameters | Description |
|---|---|---|
add_expense | date, amount, category, subcategory, note | Inserts a new expense transaction. |
list_expenses | start_date, end_date | Lists transactions, exports to Excel if count > 50. |
expense_breakdown | start_date, end_date, group_by, breakdown, category, subcategory | Aggregates spending sums and counts. |
delete_expenses | expense_ids, start_date, end_date, category, subcategory | Deletes expenses matching filters. |
update_expenses | expense_ids, filter_..., date, amount, category, subcategory, note | Edits expense records. |
create_budget | budget_type, amount, period, start_date, end_date, category, subcategory, budgets | Registers new spending limits. |
list_budgets | budget_type, category, subcategory, period | Returns registered budgets. |
update_budgets | budget_ids, filter_..., budget_type, amount, period, start_date, end_date, category, subcategory | Modifies active budgets. |
delete_budgets | budget_ids, start_date, end_date, budget_type, category, subcategory, period | Deletes target budget limits. |
compare_budget_vs_expenses | reference_date, budget_type, category, subcategory, period | Compares budget vs actual spending. |
expense_summary | period, group_by, category, subcategory, start_date, end_date | Generates a Matplotlib line/bar chart. |
financial_health_score | reference_month | Evaluates 6 key personal finance indicators. |
uv: command not foundIf the client cannot locate uv, update your config file to run standard Python:
pip install -e . inside the repository."finance-intelligence": {
"command": "python",
"args": [
"REPLACE_WITH_ABSOLUTE_PATH_TO_CLONED_DIRECTORY/main.py"
],
"env": {
"DATABASE_URL": "REPLACE_WITH_YOUR_SUPABASE_CONNECTION_STRING"
}
}
DATABASE_URL / PostgreSQL Connection Errors[your-password] with your actual database password in the Supabase URI string.claude_desktop_config.json use forward slashes (/), even on Windows.%APPDATA%\Claude\logs\mcp*.log (Windows) or ~/Library/Logs/Claude/mcp*.log (macOS) to see the exact startup error.├── src/ # Helper packages
│ ├── __init__.py
│ ├── budget.py # Budget database operations
│ ├── analytics.py # Breakdown aggregations & Matplotlib routines
│ └── health.py # KPIs and financial health calculator
├── main.py # FastMCP Server application
├── categories.json # Category mapping catalog
├── pyproject.toml # Dependencies
├── LICENSE # MIT License file
└── README.md # This file
Contributions, bug reports, and feature requests are welcome! Please open an issue before submitting major changes or pull requests.
This project is licensed under the MIT License - see the LICENSE file for details.
Ronit Rajput
FAQs
A production-ready Model Context Protocol (MCP) server for private personal finance management.
We found that finance-intelligence-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.