Money Lover MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Money Lover MCP Servershow me my spending in the last week"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Money Lover MCP Server
Node.js implementation of a Model Context Protocol (MCP) server that wraps the unofficial Money Lover REST API. The server exposes 27 MCP tools covering authentication, wallets, categories, transactions, events, debts, and static configuration — enabling AI assistants or MCP-compatible clients to query and manage personal finance data.
Features
Auto-authentication via
EMAIL/PASSWORDenvironment variables — no token passing required for most tools.23 read tools covering user info, wallets, categories, transactions, events, debts, icons, providers, and static config.
4 write tools: create, update, and delete transactions, wallets, and categories.
Large responses truncated automatically to keep LLM context manageable (configurable via
limitparameter).Stdio-based server compatible with Claude Code, Claude Desktop, Cursor, and any MCP host.
Token caching per email under
~/.moneylover-mcp/with automatic refresh on auth errors.
Prerequisites
Node.js 22 or newer.
Money Lover account credentials.
Installation
npm installUsage
Launch the MCP server over stdio:
npm startProject-scoped Configuration (Claude Code)
Add .mcp.json at the project root:
{
"mcpServers": {
"mcp-moneylover": {
"command": "node",
"args": ["/absolute/path/to/moneylover-mcp/src/server.js"],
"env": {
"EMAIL": "your@email.com",
"PASSWORD": "your-password"
}
}
}
}And enable it in .claude/settings.json:
{ "enabledMcpjsonServers": ["mcp-moneylover"] }Global Configuration (Claude Desktop / Cursor)
{
"mcpServers": {
"mcp-moneylover": {
"command": "npx",
"args": ["@ferdhika31/moneylover-mcp@latest"],
"env": {
"EMAIL": "your@email.com",
"PASSWORD": "your-password"
}
}
}
}Available Tools
Auth
Tool | Description | Arguments |
| Retrieve a JWT token. |
|
User
Tool | Description | Arguments |
| Profile associated with the session. | — |
| Devices and active sessions. | — |
| Extended profile data. | — |
Wallets
Tool | Description | Arguments |
| List all wallets. | — |
| Balance summary for a wallet. |
|
| Wallets shared with other users. | — |
| Pending share invitations. | — |
| Create a new wallet. |
|
| Update wallet name, icon, or currency. |
|
| Delete a wallet permanently. |
|
Categories
Tool | Description | Arguments |
| Categories for a specific wallet. |
|
| All categories across every wallet. | optional |
| Create a category in a wallet. |
|
| Rename a category or change its icon. |
|
| Delete a category. |
|
Transactions
Tool | Description | Arguments |
| Transactions in a date range. |
|
| Create a transaction. Category IDs from |
|
| Update a transaction. The API requires the full payload on every edit — fetch the transaction first if you need current values. |
|
| Delete a transaction. |
|
| Free-form search with optional filters. | optional |
| Transactions flagged as debts/loans. | — |
| Related transactions by ID list. |
|
| Related transactions for a category. |
|
| Related transactions for a wallet. |
|
| Available search filter options. | optional |
Static & Config
Tool | Description | Arguments |
| Saving goals/events for a wallet. |
|
| Open debts in a wallet. |
|
| Icon pack metadata. | optional |
| Supported bank providers. | — |
| Currency catalogue. | optional |
| USD-based exchange rate snapshot. | — |
| Miscellaneous runtime configuration. | — |
Tool Usage Examples
Prompt examples, required vs optional fields, gotchas, and common multi-step patterns for every tool: docs/examples.md.
Library Usage
import { MoneyloverClient } from './src/moneyloverClient.js';
const token = await MoneyloverClient.getToken(email, password);
const client = new MoneyloverClient(token);
const wallets = await client.getWallets();
const txns = await client.getTransactions(walletId, '2026-01-01', '2026-04-30');
await client.addTransaction({ walletId, categoryId, amount: '50000', date: '2026-04-18' });
await client.editTransaction('txn-id', { amount: '60000', note: 'updated' });
await client.deleteTransaction('txn-id');Testing
Unit Tests
Mocked unit tests — no live API calls required:
npm testIntegration Tests (mcp-tester)
mcp-tester is a ReAct-agent-based MCP testing framework. It starts the server, drives an LLM to call tools in response to natural-language prompts, and asserts the correct tools were called with correct arguments.
Install
pipx install --index-url https://pypi.artifacts.furycloud.io/simple/ mcp-testerConfigure
tests/mcp-tester/mcps.json — point at the local server with your credentials:
{
"mcp-moneylover": {
"command": "node",
"args": ["/absolute/path/to/src/server.js"],
"transport": "stdio",
"env": {
"EMAIL": "your@email.com",
"PASSWORD": "your-password"
}
}
}Run
mcp-tester run-tests \
--mcps tests/mcp-tester/mcps.json \
--model gpt-4o-mini \
--concurrent-runs 3 \
tests/mcp-tester/read-tools.yamlResults
tests/mcp-tester/read-tools.yaml contains 25 integration tests covering every read tool:
total 25, success 25, failures 0Key decisions that make the tests stable:
No token parameter on read tools — exposing an optional
tokenfield caused LLMs to inject wallet IDs into it. The server authenticates automatically via env vars.Response truncation — several endpoints return hundreds of thousands of records from the shared MoneyLover database. Tools accept a
limitparameter (default: 20–100) to keep LLM context under control.Dict wrapping — all tool responses return a JSON object (never a bare array) so MCP framework validation passes.
Write-Tool Tests (mcp-tester)
Three additional YAML files test the full CRUD lifecycle for wallets, categories, and transactions across three sequential phases. Each phase runs all three resource types concurrently.
File | Phase | Tests |
| Create |
|
| Edit |
|
| Delete |
|
Run phases in order — each depends on the previous:
# Phase 1: Create
mcp-tester run-tests --mcps tests/mcp-tester/mcps.json --model gpt-4o-mini --concurrent-runs 3 tests/mcp-tester/write-create.yaml
# Phase 2: Edit (after Phase 1 passes)
mcp-tester run-tests --mcps tests/mcp-tester/mcps.json --model gpt-4o-mini --concurrent-runs 3 tests/mcp-tester/write-edit.yaml
# Phase 3: Delete (after Phase 2 passes)
mcp-tester run-tests --mcps tests/mcp-tester/mcps.json --model gpt-4o-mini --concurrent-runs 3 tests/mcp-tester/write-delete.yamlResults across all three phases:
Phase 1 (Create): total 3, success 3, failures 0
Phase 2 (Edit): total 3, success 3, failures 0
Phase 3 (Delete): total 3, success 3, failures 0Key design decisions for write-tool tests:
Discovery before mutation — Edit and delete tests instruct the agent to first call a read tool (
get_wallets,get_categories,get_transactions) to locate the target by name, then call the mutation tool. This mirrors real-world agent behaviour where IDs are not known in advance.args: !anyfor write tool assertions — The framework requires exact arg matching. Write tools accept optional fields (icon,with, etc.) that the agent may include at its discretion;!anyverifies the tool was called and succeeded without failing on harmless extras. Read-tool assertions can use exact arg matching because their schemas have no optional fields the LLM would add spontaneously.Predictable identifiers — Test resources use fixed names (
MCP-Test-Wallet,MCP-Test-Category) and a fixed note (MCP test transaction) so the agent can locate them by name during the edit and delete phases without needing to share state between test runs.Full-payload edit assertions —
edit_transactionis a full-replace operation; the test prompt instructs the agent to fetch the existing transaction first (get_transactions) and carry forward all current field values, only changing the note. This validates the multi-step reasoning the tool description requires.
Security Notes
Never commit real credentials or tokens.
Cached tokens live in
~/.moneylover-mcp/restricted to the current user.Delete that directory to revoke all cached sessions.
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/juansebashr/moneylover-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server