Money Lover MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | Your Money Lover account email address | ||
| PASSWORD | Yes | Your Money Lover account password |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| loginA | Authenticate using Money Lover credentials to retrieve a JWT token. |
| get_user_infoA | Retrieve the Money Lover user profile associated with the provided token. |
| get_walletsB | List all wallets accessible to the authenticated user. |
| get_categoriesB | Retrieve categories for a specific wallet. |
| get_transactionsB | Fetch transactions for a wallet between two dates. |
| add_transactionC | Create a new transaction in a wallet. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool has a clearly distinct purpose: authentication, user info, wallets, categories, and transactions (add and fetch). No two tools overlap in functionality.
Most tools follow a consistent verb_noun pattern (e.g., add_transaction, get_categories), but 'login' deviates by being a single verb. This minor inconsistency does not cause confusion.
With 6 tools, the server is well-scoped for a personal finance API covering essential operations like authentication, wallet and category retrieval, and transaction management.
The set covers basic CRUD for transactions (only create and read) and read-only for categories and wallets. Missing update/delete for transactions and full wallet/category management, which are notable gaps for a finance tool.