monarch-mcp
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., "@monarch-mcpShow me my spending by category this month"
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.
monarch-mcp
MCP server bridging Claude (Desktop, Code, or any MCP client) to Monarch Money for personal-finance analysis and lightweight edits.
Wraps the unofficial monarchmoney Python client.
Features
Group | Tools |
Transactions |
|
Tags |
|
Categories |
|
Accounts |
|
Net worth |
|
Cash flow |
|
Budgets / goals |
|
Upstream API gaps
The following are not exposed because the upstream library does not implement them:
Tags: no rename, no delete.
Categories: no rename (delete is supported).
Goals: read-only (returned alongside
get_budgets); no create/update/delete.
Install
Requires Python 3.10+ and an OS keychain that the keyring package can talk to (macOS Keychain, Windows Credential Manager, GNOME Keyring / KWallet via D-Bus on Linux).
Recommended: pipx
pipx installs the package into its own venv and puts the monarch-mcp / monarch-mcp-setup entry points on your $PATH:
pipx install .Alternative: pip in a venv
python3 -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install .If you go this route, Claude Desktop will need the absolute path to the venv's monarch-mcp binary (see below).
Linux note
On a headless Linux box (or WSL2 without a desktop session), keyring won't find a backend by default. Either:
install
gnome-keyringand rundbus-launchso the daemon is reachable, orinstall
keyrings.alt(pip install keyrings.alt) and accept that secrets land in a plaintext file under~/.local/share/python_keyring/— fine for a personal dev box, not fine for shared machines.
Configure credentials
Run once to store your Monarch email, password, and (optional but recommended) MFA TOTP secret in the OS keychain. All three live under service name monarch-mcp.
monarch-mcp-setup set # interactive prompts (password + MFA are hidden input)
monarch-mcp-setup show # report which fields are stored (values not echoed)
monarch-mcp-setup clear # wipe all three fieldsmonarch-mcp-setup with no subcommand defaults to set.
About the MFA secret
When you enable MFA in Monarch, the setup screen shows a QR code and a base32 string (often labelled "secret key" or "manual entry code"). That base32 string is what monarch-mcp-setup is asking for — not a 6-digit code.
Storing it lets the server compute TOTP codes itself and re-authenticate unattended after the session pickle expires. Without it, every session expiry forces you to manually re-login by clearing credentials and running set again with a fresh code.
If you didn't capture the secret when you first enrolled, you can re-enroll your authenticator in Monarch's settings to see it again.
Where session state lives
After the first successful login, the server caches a session pickle so subsequent process starts skip the login round-trip:
Default:
~/.config/monarch-mcp/session.pickleOverride: set the
MONARCH_MCP_SESSION_DIRenv var to a directory of your choice
If the pickle gets corrupted or rejected by Monarch, the server silently falls back to a fresh login using the stored credentials — you don't need to clear it manually.
Wire into Claude Desktop
Edit claude_desktop_config.json:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
Add an entry under mcpServers:
{
"mcpServers": {
"monarch": {
"command": "monarch-mcp"
}
}
}If monarch-mcp isn't on the $PATH Claude Desktop sees (common when you used a venv rather than pipx), give it the absolute path:
{
"mcpServers": {
"monarch": {
"command": "/Users/you/code/monarch-mcp/.venv/bin/monarch-mcp"
}
}
}To park the session pickle somewhere non-default:
{
"mcpServers": {
"monarch": {
"command": "monarch-mcp",
"env": { "MONARCH_MCP_SESSION_DIR": "/Users/you/.local/share/monarch-mcp" }
}
}
}Restart Claude Desktop. The tools should appear in the MCP picker.
Wire into Claude Code
claude mcp add monarch monarch-mcpNotes on the tool surface
All date arguments are ISO
YYYY-MM-DDstrings.IDs (category, tag, account) are opaque strings — discover them via the corresponding
list_*tool before calling filtered endpoints.set_budgetrequires exactly one ofcategory_idorcategory_group_id.list_transactionspaginates: passlimitandoffsetto walk results larger than the default 100.
Development & tests
The test suite is hermetic — it stubs keyring, monarchmoney, and mcp.server.fastmcp when those packages aren't installed, so you can run it without network access or a keychain backend.
Setup
python3 -m venv .venv
source .venv/bin/activate
pip install -e '.[dev]'-e .[dev] installs the package editable plus pytest and pytest-asyncio.
Run
pytest # full suite (~80ms, 43 tests)
pytest tests/test_server.py # one module
pytest -k "set_budget" # one keyword
pytest -v # verbose, lists each testPytest config lives in pyproject.toml under [tool.pytest.ini_options]:
pythonpath = ["src"]— letsfrom monarch_mcp import ...resolve without an editable install (handy in CI containers that don't runpip install).asyncio_mode = "auto"— async test functions don't need a@pytest.mark.asynciodecorator.testpaths = ["tests"]— barepytestfinds the suite.
Layout
src/monarch_mcp/
auth.py — keychain wrapper (get/set/delete + require_login_credentials)
setup.py — monarch-mcp-setup CLI (set / show / clear)
server.py — FastMCP server, lazy-login client, all tool definitions
tests/
conftest.py — third-party stubs + clean_keyring / fake_mm_client / server_with_fake_client fixtures
test_auth.py
test_setup.py
test_server.pyWriting a new tool
Add an
@mcp.tool()-decorated async function to src/monarch_mcp/server.py. The docstring becomes the MCP tool description Claude sees, so write it for Claude.If it calls a new
MonarchMoneymethod, add the method name to_FAKE_METHODSin tests/conftest.py sofake_mm_clientmocks it out.Add a test in tests/test_server.py using the
server_with_fake_clientfixture — assert onclient.<method>.await_args.kwargsto confirm the call shape.
What the fixtures do
clean_keyring— clears the in-memory keyring stub before each test (no-op when real keyring is installed).fake_mm_client—MagicMockwhose Monarch methods areAsyncMocks returning{"called": <method_name>}.server_with_fake_client— monkeypatchesserver._clientto the fake, so tool calls bypass_get_client()and the login flow entirely. Tests that do exercise login (test_get_client_*) reset_clienttoNoneand patchserver.MonarchMoneydirectly.
This server cannot be installed
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/bkichler/monarch-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server