Skip to main content
Glama
Ronit-019

Finance Intelligence MCP

by Ronit-019

Finance Intelligence MCP Server

Python Version FastMCP License: MIT MCP Specification Database

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.


šŸ” Overview

Unlike standard cloud-based personal finance apps, Finance Intelligence MCP keeps all financial data under your absolute control.

  • No Accounts / Subscriptions: Direct connection to your private database with zero SaaS dependencies.

  • Zero Telemetry: Your financial logs never go to external analytic APIs.

  • Full AI Context: Your AI assistant can query history, check budget status, make charts, and answer financial questions instantly.


Related MCP server: MonarchMoney MCP Server

šŸ› ļø Architecture

   ā”Œā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”
   │           MCP Client           │
   │  (Claude Desktop, Cursor, etc) │
   ā””ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”¬ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”˜
                   │
                   │ (STDIO Transport Protocol)
                   ā–¼
   ā”Œā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”
   │  Finance Intelligence Server   │
   │           (Local)              │
   ā””ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”¬ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”˜
                   │
                   │ (Direct SQL Pool Connection)
                   ā–¼
   ā”Œā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”
   │       PostgreSQL Database      │
   │ (Supabase, Local, RDS, etc)    │
   ā””ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”˜

✨ Features

  • Expense Operations: Create, view, edit, and bulk-delete expense entries.

  • Multi-level Budgeting: Set limits for overall spending, specific category thresholds, or down to nested subcategory targets.

  • Analytics Breakdowns: Aggregate expenses by category, subcategory, notes, or dates over weekly/monthly/yearly time blocks.

  • Visual Charts: Exposes tools that generate Matplotlib line/bar charts of historical spending automatically.

  • Excel Spreadsheet Export: Truncates long list responses and generates download-ready Excel spreadsheets for massive datasets.

  • Financial Health Scoring: Calculates a deterministic financial health score grade based on 6 core personal finance KPIs.


āš™ļø Requirements & Compatibility

  • Transport: stdio

  • Supported Platforms:

    • Windows

    • macOS

    • Linux

  • Python Compatibility: Python 3.10, 3.11, and 3.12 (Tested)

  • Database: PostgreSQL 12+ (e.g. Supabase, RDS, or local Postgres)

  • Supported Clients:

    • Claude Desktop

    • Cursor

    • Compatible with any MCP client supporting stdio.


šŸ’¾ Installation & Setup

1. Quick Setup (Shortcut)

If 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

2. Detailed Installation

Step A: Get a PostgreSQL Connection URL

The easiest, free option is Supabase:

  1. Go to Supabase and create a free project.

  2. Go to Project Settings (gear icon) > Database.

  3. Under Connection string, select URI and copy the string.

    • Example: postgresql://postgres.[your-project-ref]:[your-password]@aws-0-us-east-1.pooler.supabase.com:5432/postgres

    • (Replace [your-password] with your database password).

Step B: Clone the Repository

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.

Step C: Install Dependencies

If you do not have uv installed, install from the project metadata:

pip install -e .

3. Client Integration

Claude Desktop Setup

  1. Open your Claude configuration file (claude_desktop_config.json):

    • Windows: Press Win + R, paste %APPDATA%\Claude\claude_desktop_config.json and press Enter.

    • macOS: Paste ~/Library/Application Support/Claude/claude_desktop_config.json in Finder's Go to Folder.

  2. Add this entry to 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"
      }
    }
  }
}
  1. Save and completely restart Claude Desktop.

Cursor IDE Setup

  1. Go to Settings > Features > MCP.

  2. Click + Add New MCP Server:

    • Name: Finance Intelligence

    • Type: command

    • Command:

      uv --directory "REPLACE_WITH_ABSOLUTE_PATH_TO_CLONED_DIRECTORY" run python main.py
  3. Click + Add Env Var:

    • Key: DATABASE_URL

    • Value: REPLACE_WITH_YOUR_SUPABASE_CONNECTION_STRING

  4. Click Save and refresh.


šŸ’¬ Example Prompts

Once configured, try talking to your AI assistant:

  • "Add ₹250 for lunch today under food."

  • "Show my spending breakdown this month."

  • "Generate an Excel report of all my expenses between May and July."

  • "Am I exceeding my monthly budget limit?"

  • "How much did I spend on dining out this week?"

  • "Calculate my monthly financial health score and give me feedback."

  • "Generate a spending chart for the last 30 days."


šŸ› ļø Available Tools

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.


šŸ’” Troubleshooting

1. uv: command not found

If the client cannot locate uv, update your config file to run standard Python:

  • Ensure you ran pip install -e . inside the repository.

  • Update config:

"finance-intelligence": {
  "command": "python",
  "args": [
    "REPLACE_WITH_ABSOLUTE_PATH_TO_CLONED_DIRECTORY/main.py"
  ],
  "env": {
    "DATABASE_URL": "REPLACE_WITH_YOUR_SUPABASE_CONNECTION_STRING"
  }
}

2. Invalid DATABASE_URL / PostgreSQL Connection Errors

  • Make sure you replaced [your-password] with your actual database password in the Supabase URI string.

  • Ensure there are no surrounding spaces or special characters in the URL string.

  • Verify your Supabase instance is active and not paused.

3. Claude Not Detecting the Server

  • Double check that the folder paths in claude_desktop_config.json use forward slashes (/), even on Windows.

  • Check the logs at %APPDATA%\Claude\logs\mcp*.log (Windows) or ~/Library/Logs/Claude/mcp*.log (macOS) to see the exact startup error.


šŸ“ Repository Structure

ā”œā”€ā”€ 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

šŸ¤ Contributing

Contributions, bug reports, and feature requests are welcome! Please open an issue before submitting major changes or pull requests.


šŸ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.


šŸ‘Øā€šŸ’» Author

Ronit Rajput

A
license - permissive license
-
quality - not tested
A
maintenance

Maintenance

–Maintainers
–Response time
–Release cycle
1Releases (12mo)
Commit activity

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

  • A
    license
    -
    quality
    D
    maintenance
    Enables AI assistants to analyze personal financial data from Open Banking sources stored in PostgreSQL database. Provides educational financial analysis tools with intelligent formatting for learning about spending patterns, account balances, and transaction history.
    Last updated
    2
    ISC
  • A
    license
    -
    quality
    D
    maintenance
    Enables AI assistants to access and analyze MonarchMoney personal finance data through natural language queries. Provides comprehensive financial insights including account balances, transaction analysis, budget tracking, and spending patterns with enterprise-grade security.
    Last updated
    9
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    Enables AI assistants to access financial data from 20,000+ banks across 40+ countries, allowing users to query account balances, transactions, and spending patterns through natural language.
    Last updated
    5
    MIT
  • F
    license
    C
    quality
    D
    maintenance
    Enables AI assistants to manage personal finances by storing, analyzing, and exporting expense data using a persistent PostgreSQL database. Supports adding/editing expenses, generating spending summaries, detecting top categories, and creating monthly reports.
    Last updated
    12

View all related MCP servers

Related MCP Connectors

  • Connect AI agents to bank accounts, transactions, balances, and investments.

  • Read-only bank access for your AI agent. Connects Claude, ChatGPT, Cursor, Gemini, Codex.

  • Query PostgreSQL databases in plain English — LLM-generated, safety-validated SQL.

View all MCP Connectors

Latest Blog Posts

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/Ronit-019/Finance-Intelligence-MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server