mcp-spendee
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., "@mcp-spendeeshow me my wallets"
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.
mcp-spendee
An unofficial Model Context Protocol (MCP) server for Spendee. It lets MCP clients inspect wallets, categories, and transactions, and create income or expense transactions.
Spendee does not publish a supported public API. This server uses afork of the archived third-party
spendee package and may stop working when Spendee changes its private API.
Test it with a non-critical wallet first.
Tools
spendee_status— check local configuration without logging in or exposing secrets.list_wallets— list wallet IDs, names, balances, and currencies.list_labels— list modern Spendee labels stored in Firestore.list_categories— list and optionally filter categories.list_transactions— list and optionally filter transactions.create_transaction— preview or create an expense/income transaction, optionally with existing modern labels and an amount in a currency different from the selected wallet.
Creating a transaction is deliberately two-step. Call create_transaction once
with confirm=false to inspect the normalized payload, then repeat it with
confirm=true and a unique request_id. Reusing a request ID in the same
server process returns the cached result instead of creating a duplicate.
The forked spendee library owns both the legacy transaction call and modern
Firestore label write. If label attachment fails after transaction creation, a
retry with the same request_id retries only the labels and does not create the
transaction twice.
For a foreign-currency transaction, pass the original positive amount and its
ISO currency. The preview resolves Spendee's current exchange rate and shows
both the wallet amount and the original amount. Repeat the confirmed call with
the preview's foreign_rate in exchange_rate; this pins the exact conversion
that was reviewed instead of silently fetching a newer rate.
Related MCP server: Expense Tracker MCP Server
Installation
Install uv, clone the repository, then run:
uv syncSet credentials in the MCP client environment. Do not commit a .env file:
SPENDEE_EMAIL=you@example.com
SPENDEE_PASSWORD=your-password
SPENDEE_TIMEZONE=Europe/Moscow
SPENDEE_GLOBAL_CURRENCY=EURSPENDEE_TIMEZONE and SPENDEE_GLOBAL_CURRENCY are optional. They default to
Europe/Moscow and EUR.
MCP client configuration
Use the absolute path to the cloned checkout:
{
"mcpServers": {
"spendee": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/mcp-spendee",
"run",
"mcp-spendee"
],
"env": {
"SPENDEE_EMAIL": "you@example.com",
"SPENDEE_PASSWORD": "your-password",
"SPENDEE_TIMEZONE": "Europe/Moscow",
"SPENDEE_GLOBAL_CURRENCY": "EUR"
}
}
}
}The server uses MCP over stdio. Logs and errors never write to the protocol's stdout stream.
Development
make install
make lint
make testSecurity
Credentials are read only from environment variables.
Status output never includes credentials.
Transaction amounts must be positive;
transaction_typedetermines the sign.Writes require both
confirm=trueand a non-emptyrequest_id.The in-memory request cache prevents retries from duplicating a transaction only while the same server process remains running.
License
MIT
This server cannot be installed
Maintenance
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
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/gibsn/mcp-spendee'
If you have feedback or need assistance with the MCP directory API, please join our Discord server