Fino: Open-Source MCP Server for Personal Finance Analysis with Claude

Fino is an open-source MCP server built specifically for Claude that connects to bank accounts for personal finance analysis. The entire project was written using Claude Code, including the Hono API server, React dashboard, MCP tool definitions, and Drizzle ORM schema.
Technical Implementation
The MCP server runs locally on your machine and connects to bank accounts through Plaid integration. All transaction data is stored locally in SQLite with Plaid tokens encrypted using AES-256-GCM. The system supports CSV/OFX imports as an alternative to Plaid for users who prefer not to use the banking API.
Available Tools
After running npm run install-claude to register the MCP server, Claude gains access to these specific tools:
get_transactions— query by date, category, amount, accountget_balances— net worth breakdown across cash, credit, investmentsget_monthly_comparison— income vs spending over timesearch_transactions— find charges by merchant namesync_transactions— pull latest data from Plaid
Practical Use Cases
The developer demonstrates how Claude composes these tools together for real analysis. Example queries mentioned in the source include:
- "Do a spending audit of my last 90 days. Find recurring charges, things trending up, anything that looks off."
- "What's my savings rate over the last 6 months?"
- "How much have I spent at Amazon this year?"
This approach allows Claude to pull data across multiple tools and provide analysis rather than just displaying static dashboard views.
Project Details
Fino is completely free with no paid tiers, no accounts required, and no cloud components — everything runs on localhost. The developer used Claude Code to iterate on the MCP tool design until the conversational experience felt right.
📖 Read the full source: r/ClaudeAI
👀 See Also

Alternative AI Coding Agents After Claude's Plan Removal
A Reddit user tested several AI coding agent alternatives after Claude discontinued its coding plan, including Kimi ($20/month), Minimax ($10/month), Z.AI GLM ($10/month), Stepfun ($6-10/month), Mistral ($15/month), and Arcee Trinity (API-based).

DESIGN.md: A format spec for describing visual identity to coding agents
DESIGN.md combines YAML design tokens with markdown prose to give AI coding agents a persistent, structured understanding of a design system. Includes a linter and diff tool.

Cull: Open-Source Dataset Curation Engine for AI Image Pipelines
Cull scrapes images from 340+ sources including Civitai, X/Twitter, Reddit, Discord, and booru sites, classifies them with a vision-language model via local LM Studio or Groq, and sorts into category folders with SD prompts and audit records.

User Experience: Switching from OpenClaw to Hermes Agent on Local LLM
A developer reports switching from OpenClaw to Hermes Agent using Qwen3.5-9B on an RX 9070 XT with 16GB VRAM. Hermes completed a complex task with 5 correct tool calls versus OpenClaw's 50+ steps, running 2:30 minutes faster while maintaining RAG, tool calling, and persistent memory functionality.