Fealthy MCP
Model Context Protocol (MCP) is an open protocol that lets an AI agent connect to external services through one consistent interface: the agent sees a list of the tools available to it and calls them just as naturally as its own built-in functions. Fealthy MCP is Fealthy's implementation of that protocol — a single HTTP endpoint that gives an agent direct access to one user's financial data.
Once you connect an agent to Fealthy MCP, you can ask it to show your account balances, total up spending by category, set up a budget or a goal, add a transaction or a subscription — in plain language, with no app required.
What the agent can see and change
The agent only ever works with the data of the token's own owner — it can never see or change anyone else's records. Available entities:
- accounts — creating, editing, and listing balances;
- transactions, including transfers, currency exchange, and splitting one operation into parts;
- relations between transactions — for example, a refund linked back to the original purchase;
- recurring payments and subscriptions;
- rules that automatically categorize transactions;
- categories and labels;
- merchants (the businesses transactions are paid to or received from);
- budgets and their current spend status;
- debts and liabilities;
- financial goals;
- the profile and settings of the token's owner.
The full list — 70 tools, with every parameter described — is on the Tools page.
What the server does not do: it doesn't set up bank sync (Monobank and other banks are connected only inside the app), it doesn't change the app's subscription plan, language, or base currency, and it has no access to any other Fealthy user.
Who can connect
The server is available to users on Fealthy's Premium plan. Demo accounts are never supported, regardless of any other setting.
Quick start
-
Get a personal access token (
fpat_…). There's no dedicated screen for issuing tokens in the app yet — the Fealthy team issues one on request. More detail on the Connect page. -
Add the server to your client. For Claude Code, that's one command:
claude mcp add -s user -t http fealthy https://main.api.fealthy.dev/v1/mcp -H "Authorization: Bearer fpat_your_token" -H "app-timezone: Europe/Kyiv" -
Open a new client session — a server added in the middle of an already-running session isn't visible to it — and ask your first question, for example "how much have I spent this month?"
The server today runs only in Fealthy's dev environment. There is no production version yet.