mcp-spendee
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| SPENDEE_EMAIL | Yes | Your Spendee email address. | |
| SPENDEE_PASSWORD | Yes | Your Spendee password. | |
| SPENDEE_TIMEZONE | No | Timezone for Spendee operations. Defaults to Europe/Moscow. | Europe/Moscow |
| SPENDEE_GLOBAL_CURRENCY | No | Global currency for Spendee operations. Defaults to EUR. | EUR |
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": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| spendee_statusA | Check whether credentials and local Spendee settings are configured. |
| list_walletsA | List Spendee wallets with IDs, balances, and currencies. |
| list_labelsA | List modern Spendee labels from Firestore. |
| list_categoriesA | List Spendee categories, optionally filtered by wallet and expense/income type. |
| list_transactionsA | List transactions, optionally filtered by wallet. |
| create_transactionA | Preview or create a transaction. Amount must always be positive. transaction_type controls whether Spendee receives a negative expense or positive income. currency defaults to the selected wallet's currency. For a different currency, preview without an exchange_rate first, then confirm with the returned foreign_rate as exchange_rate. First call with confirm=false; create only after checking the preview, then pass confirm=true and a unique request_id. |
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 targets a distinct resource or action: status checks configuration, list_wallets/labels/categories/transactions each list a different entity, and create_transaction handles transaction creation. There is no overlap in purpose.
Most tools follow a verb_noun pattern (list_*, create_*), but 'spendee_status' deviates by using a noun without a verb. Still, the snake_case style and prefix are consistent, making it readable.
With 6 tools, the server is well-scoped for a Spendee integration, covering essential read operations, one write operation, and a status check. Each tool earns its place without bloat.
The core workflows of viewing wallets, labels, categories, and transactions, plus creating transactions, are covered. Missing update/delete operations are minor gaps that could be worked around, but for a finance-focused server they are not critical.