MCP Catalogs
Homeyour-money-left-the-chat screenshot

your-money-left-the-chat

by Rayato159·23·Score 37

A Rust + MCP powered financial tracker that logs expenses and analyzes habits through natural conversation with local SQLite storage.

financeai-llmproductivity
4
Forks
0
Open issues
7 mo ago
Last commit
2d ago
Indexed

Overview

Your Money Left The Chat is a Rust-native financial tracking system that uses the Model Context Protocol (MCP) to interact with AI models like Claude or Ollama. It allows users to log expenses through natural language queries, which are then stored locally in a SQLite database. The system provides smart summaries of spending, category-based analytics, and tax calculations without requiring cloud services or internet connectivity. Built with the MCP Rust SDK and Diesel ORM, it offers a privacy-first approach to personal finance management.

Try asking AI

After installing, here are 3 things you can ask your AI assistant:

you:Track daily expenses through natural conversation with an AI assistant
you:Generate visual graphs and reports of spending patterns
you:Calculate tax estimates based on recorded financial transactions

When to choose this

Choose this for personal finance tracking when you value privacy and want to interact through natural conversation with AI assistants.

When NOT to choose this

Not suitable for business finance management or if you need multi-user support, as it's designed for personal use with single-user SQLite storage.

Tools this server exposes

5 tools extracted from the README
  • log_expense

    Record a new expense with natural language input

  • generate_summary

    Generate daily, monthly, or yearly financial summaries

  • calculate_taxes

    Estimate tax liability based on recorded expenses

  • create_visualization

    Generate visual graphs of spending patterns

  • analyze_spending_habits

    Analyze spending patterns and provide insights

Note: Tool names were inferred from features described in the README, as there is no explicit 'Tools' section documented. The functionality is described but exact tool names are not provided.

Comparable tools

mcp-accountingynab-mcpbudget-mcpspreadsheet-mcp

Installation

Installation Steps

  1. Install Rust, SQLite, and GNU Make
  2. Clone the repository: git clone https://github.com/Rayato159/your-money-left-the-chat
  3. Install Diesel CLI: cargo install diesel_cli --no-default-features --features sqlite
  4. Create a database.db file
  5. Set up database: make migrate-up or diesel migrate run
  6. Build the project: make build-release or cargo build --release --bin your_money_left_the_chat

Claude Desktop Configuration

Add to your Claude Desktop config.json:

{
  "mcpServers": {
    "money": {
      "command": "PATH-TO/your-money-left-the-chat/target/release/your_money_left_the-chat",
      "args": ["PATH-TO/database.db"]
    }
  }
}

Compare your-money-left-the-chat with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.