Connect your financial data to AI assistants
This server exposes your BudgetBakers Wallet data via the Model Context Protocol (MCP), letting AI assistants like Claude query your accounts, transactions, budgets, categories, goals, and more — directly from a conversation.
Instead of exporting CSVs or copy-pasting numbers, you simply ask your AI assistant a question and it fetches the live data on your behalf. The server handles authentication, filtering, and pagination.
Paste your MCP_AUTH_TOKEN below — the config snippets will update automatically.
The server exposes 10 tools that AI assistants can call to query your BudgetBakers data.
Many fields accept prefix-based filter expressions so you can query ranges and partial matches.
| Type | Prefix | Example | Meaning |
|---|---|---|---|
| Text | eq: |
eq:USD |
Exact match |
| Text | contains: |
contains:grocery |
Substring match |
| Text | startsWith: |
startsWith:Ama |
Prefix match |
| Range | gte: |
gte:2024-01-01 |
Greater than or equal |
| Range | lte: |
lte:2024-12-31 |
Less than or equal |
| Range | between: |
between:2024-01-01,2024-12-31 |
Inclusive range (comma-separated) |
| Range | gte: |
gte:100 |
Numeric: amount ≥ 100 |
| Range | between: |
between:-500,0 |
Numeric: expenses between -500 and 0 |