Kualia is a budgeting app that helps people give every dollar a job and feel in control of their money. I built it because I was a paying YNAB user and loved envelope budgeting, but wanted something that fit the way I think about my money. Envelope budgeting is far from a new idea; I just wanted my own take on it, and I designed, built, and launched it entirely on my own.
I originally built Kualia with Flutter and Supabase, then rebuilt it from scratch with coding agents. The current iPhone app uses SwiftUI, the website uses Angular, and Convex powers them both. I built the production iPhone app without ever writing SwiftUI by hand. Being the only person on it means I also make the product calls, guided by what real users tell me they need.
It's live on the App Store today and earns around $300 in recurring revenue every month. It's the project I'm proudest of, because every part of it, good and bad, is a decision I made and shipped.
Connecting your budget to AI
The piece I'm most excited about lately is the MCP server. Kualia speaks the Model Context Protocol, so compatible assistants such as Codex, Claude Code, and ChatGPT can read your transactions, envelopes, recurring bills, and reports directly, with your permission. You ask questions in plain English instead of opening dashboards: "What categories am I overspending in this month?" or "How much am I spending on recurring subscriptions?"
It does more than read. With your approval it can reassign money between envelopes, set assigned amounts, and import a CSV of transactions straight from the chat. Read-only tools run on their own; anything that writes asks you first.
Under the hood it's a JSON-RPC endpoint on the Convex backend with a secure sign-in flow, so there are no API keys to paste and every connection is scoped to your workspace. The trick that keeps it sane is a single TypeScript tool registry. Each tool is defined once, and the MCP server dispatches it through the same backend scope and permission checks as the rest of Kualia.
You can see it for yourself at kualia.com.