Skip to main content
Glama
gibsn

mcp-spendee

by gibsn

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
SPENDEE_EMAILYesYour Spendee email address.
SPENDEE_PASSWORDYesYour Spendee password.
SPENDEE_TIMEZONENoTimezone for Spendee operations. Defaults to Europe/Moscow.Europe/Moscow
SPENDEE_GLOBAL_CURRENCYNoGlobal 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

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
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

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.1/5.0

Scored across 6 tools

Disambiguation5/5

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.

Naming Consistency4/5

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.

Tool Count5/5

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.

Completeness4/5

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.

Maintenance

ActivityMaintained
ResponsivenessNo issues