
your-money-left-the-chat
by Rayato159·★ 23·综合分 37
一款基于 Rust 和 MCP 的金融追踪工具,通过自然对话记录支出并分析消费习惯,使用 SQLite 本地存储。
概述
Your Money Left The Chat 是一款使用 Rust 开发的原生金融追踪系统,通过模型上下文协议 (MCP) 与 Claude 或 Ollama 等 AI 模型交互。用户可以通过自然语言查询记录支出,这些数据会存储在本地 SQLite 数据库中。系统提供智能支出摘要、基于类别的分析以及税收计算功能,无需使用云服务或互联网连接。该系统使用 MCP Rust SDK 和 Diesel ORM 构建,采用优先隐私的方式管理个人财务。
试试问 AI
装完之后,这里有 3 个你可以让 AI 做的事:
什么时候选它
选择这款产品用于个人财务追踪,特别是在您重视隐私并希望通过与 AI 助手自然对话来记录支出时。
什么时候不要选它
不适合商业财务管理或需要多用户支持的场景,因为它专为个人使用设计,使用单用户 SQLite 存储。
此 server 暴露的工具
从 README 抽取出 5 个工具log_expenseRecord a new expense with natural language input
generate_summaryGenerate daily, monthly, or yearly financial summaries
calculate_taxesEstimate tax liability based on recorded expenses
create_visualizationGenerate visual graphs of spending patterns
analyze_spending_habitsAnalyze spending patterns and provide insights
说明: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.
可对比工具
安装
安装步骤
- 安装 Rust、SQLite 和 GNU Make
- 克隆仓库:
git clone https://github.com/Rayato159/your-money-left-the-chat - 安装 Diesel CLI:
cargo install diesel_cli --no-default-features --features sqlite - 创建
database.db文件 - 设置数据库:
make migrate-up或diesel migrate run - 构建项目:
make build-release或cargo build --release --bin your_money_left_the-chat
Claude Desktop 配置
在 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"]
}
}
}your-money-left-the-chat 对比
最后更新于 · 由 README + GitHub 公开数据自动生成。