WealthGuard MCP
Connects to Google Sheets to manage personal finances, enabling reading and writing transaction data, budgets, and goals through natural language queries.
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., "@WealthGuard MCPWhat's my budget status for this 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.
About The Project
WealthGuard is an MCP server that lets you manage your personal finances through conversation. Ask Claude to analyze your monthly expenses, check budget overruns, forecast savings, or log a new transaction — all backed by a real Google Spreadsheet you own.
Available tools:
Tool | Description |
| Total income, expenses, net balance, and savings rate for any month |
| Category breakdown with percentage distribution (Top 5) |
| Compares monthly limits against actual spending (Exceeded / Warning / On Track) |
| 3-month moving average forecast for next month's savings |
| Appends a new income/expense row after explicit user confirmation |
| Side-by-side income, expense, and balance comparison between two months |
| Writes a savings target to the Goals worksheet |
| Produces a full Markdown report saved locally |
A live finance://summary/current MCP resource also lets the assistant read the current month at any time.
Built With
Getting Started
Prerequisites
Python 3.11+
uvpackage managerA Google Cloud Service Account with a JSON credentials file
A Google Sheets file shared with the service account (Editor access)
Installation
Clone the repo
git clone https://github.com/DoganayBalaban/finance-mcp.git cd finance-mcpCreate and activate a virtual environment
uv venv source .venv/bin/activateInstall dependencies
uv pip install -e .Place your Service Account JSON at
credentials/service_account.jsonCopy
.env.exampleto.envand fill in your valuesGOOGLE_SHEETS_ID="your_spreadsheet_id_here" SERVICE_ACCOUNT_JSON="credentials/service_account.json"Create a Google Sheets file with these three worksheets:
Worksheet
Columns
Transactionsdate,description,category,amount,typeBudgetscategory,monthly_limit,year,monthGoalsyear,month,target_amount
Usage
Claude Desktop Integration
Add the following to your Claude Desktop config file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"finance-mcp": {
"command": "/FULL/PATH/finance-mcp/.venv/bin/python",
"args": ["-m", "src.finance_mcp.server"],
"env": {
"PYTHONPATH": "/FULL/PATH/finance-mcp",
"GOOGLE_SHEETS_ID": "your_spreadsheet_id_here",
"SERVICE_ACCOUNT_JSON": "/FULL/PATH/finance-mcp/credentials/service_account.json"
}
}
}
}Replace /FULL/PATH/ with the absolute path to the project on your machine, then restart Claude Desktop.
Example prompts:
"How much did I spend last month?"
"Show me my top spending categories for April."
"I paid $80 at the grocery store today — log it."
"Am I over budget anywhere this month?"
"Forecast my savings for next month."
"Generate a financial report for March."
Security note:
add_transactionalways asks for explicit confirmation before writing to your spreadsheet. The LLM will summarize the transaction and say "Do you confirm?" before calling the tool.
Roadmap
Multi-currency support
Recurring transaction detection
Chart/visualization exports (PNG)
Support for multiple spreadsheet profiles
Web dashboard (read-only view)
See the open issues for a full list of proposed features and known issues.
Contributing
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also open an issue with the tag enhancement.
Don't forget to give the project a star!
Fork the Project
Create your Feature Branch (
git checkout -b feature/AmazingFeature)Commit your Changes (
git commit -m 'Add some AmazingFeature')Push to the Branch (
git push origin feature/AmazingFeature)Open a Pull Request
Top contributors:
Contact
Doğanay Balaban — GitHub
Project Link: https://github.com/DoganayBalaban/finance-mcp
Acknowledgments
FastMCP — MCP server framework for Python
gspread — Google Sheets API client
Model Context Protocol — Open protocol by Anthropic
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/DoganayBalaban/finance-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server