Expense Tracker Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Expense Tracker Mcp Server (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A powerful Model Context Protocol (MCP) server for tracking and managing personal expenses. This server integrates with Claude Desktop to provide seamless expense management through natural language interactions.
categories.json git clone <your-repo-url>
cd Expense-Tracker-MCP-ServerUsing uv (recommended):
uv pip install -r requirements.txtOr using pip:
pip install -r requirements.txt uv run fastmcp install claude-desktop main.pyOr manually add to your Claude Desktop config (~/.config/Claude/claude_desktop_config.json on Mac/Linux or %APPDATA%\Claude\claude_desktop_config.json on Windows):
{
"mcpServers": {
"Expense Tracker Server": {
"command": "uv",
"args": [
"run",
"--with",
"fastmcp",
"fastmcp",
"run",
"/absolute/path/to/Expense-Tracker-MCP-Server/main.py"
]
}
}
}Completely quit and restart Claude Desktop to load the MCP server.
Once installed, you can interact with the Expense Tracker directly in Claude Desktop using natural language:
"Add an expense of $45.50 for groceries yesterday"
"I spent $20 on lunch today in the Food category"
"Add expense: $100, Transport, Fuel, Nov 25, 2025, note: Monthly fuel""Show me all expenses from last week"
"List my Food expenses from this month"
"Show expenses from last 30 days""Summarize my expenses for last month"
"Show category-wise breakdown for this year"
"Summarize Food expenses from last week""Update expense ID 5, change amount to $55.50"
"Change expense 3's category to Transport""Delete expense with ID 7"The server uses SQLite with the following schema:
CREATE TABLE expenses (
id INTEGER PRIMARY KEY AUTOINCREMENT,
date TEXT NOT NULL,
amount REAL NOT NULL,
category TEXT NOT NULL,
subcategory TEXT,
note TEXT
);The server includes predefined categories in categories.json:
You can customize categories by editing categories.json.
uv run fastmcp dev main.pyExpense-Tracker-MCP-Server/
├── main.py # Main MCP server code
├── categories.json # Expense categories and subcategories
├── requirements.txt # Python dependencies
├── pyproject.toml # Project metadata
├── expenses.db # SQLite database (auto-created)
└── README.md # This filefastmcp>=2.0.0 - FastMCP framework for building MCP serverspython-dateutil>=2.8.0 - Flexible date parsinguv is correctThe expenses.db file is created automatically in the project directory. If you encounter issues:
expenses.db and restart the serverThe server supports various date formats. If you encounter parsing errors:
Contributions are welcome! Please feel free to submit a Pull Request.
MIT License - feel free to use this project for personal or commercial purposes.
Created with FastMCP and Claude
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.