Simplifi Local Read-Only 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., "@Simplifi Local Read-Only MCPsearch my transactions for groceries"
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.
Simplifi Local Read-Only MCP
An unofficial, local MCP server for exploring your Quicken Simplifi data with an MCP host such as Claude Desktop or Codex. It runs as a subprocess over stdio, keeps a SQLite cache on your machine, and exposes read-only finance tools.
This is designed for a single person analysing their own finances—not for hosting on the internet, sharing one account with other people, or letting an agent change financial records.
Quicken and Simplifi are trademarks of their respective owners. This project is independent and is not affiliated with, endorsed by, or supported by Quicken.
Why this exists
The original project this work builds on supported an HTTP service, downstream OAuth, and write operations. That is useful for a hosted application, but it is the wrong default for a personal finance assistant: it enlarges the attack surface and lets an accidental or adversarial prompt alter real records.
This version makes different choices:
Local only. It speaks JSON-RPC over stdin/stdout and opens no network listener. Your MCP host starts it as a local child process.
Read-only by construction. The source contains no transaction-update or categorisation tools, and the Simplifi client has no write request path.
Operator-only authentication.
npm run authis the one terminal command that can perform first login and handle MFA. MCP tools cannot trigger login, submit an MFA code, or wait for a TTY.Local data ownership. Credentials, tokens, and cached transactions stay in your local
.envand SQLite cache. They are ignored by Git.Guardrails that run in CI. Tests enforce the read-only boundary, use only synthetic fixtures, block ambient network access, and scan committed content for common financial-data and credential mistakes.
These choices are deliberate tradeoffs. If you need a shared or hosted service, or need to edit transactions, this project is not the right tool.
Related MCP server: monzo-mcp
What it can do
All MCP tools are reads:
list_transactions,search_transactions, andget_transactionlist_uncategorized_transactionssearch_merchantslist_categoriesandsearch_categorieslist_tagsandsearch_tagssuggest_categories_for_merchant
The server keeps an incremental local cache of transactions, categories, and tags. The first query that needs data performs a full sync; later queries use fresh cached data and sync as needed.
How authentication works
Copy
.env.exampleto.envand set the required Simplifi values.Run
npm run authdirectly in a terminal. If Simplifi asks for MFA, enter the code there.The command stores access and refresh tokens in the local cache.
Start the MCP server. It uses stored tokens only; it never falls back to a password login or prompts through stdio.
If a token is expired or revoked, the server explains that you need to run
npm run auth again. This avoids unattended background syncs requesting MFA
codes or sending repeated login attempts.
Requirements
Node.js 22 or newer
npm
A local Quicken Simplifi account and the account values required in
.env
Setup
Install dependencies:
npm installCreate the local configuration:
cp .env.example .envOn PowerShell:
Copy-Item .env.example .envAt minimum, set these values in .env:
SIMPLIFI_EMAILSIMPLIFI_PASSWORDSIMPLIFI_DATASET_IDSIMPLIFI_THREAT_METRIX_SESSION_ID(recommended and required by the current Simplifi authorization flow)
Complete the one-time interactive login:
npm run authBuild the server:
npm run buildConfigure your MCP host to run:
node /absolute/path/to/dist/index.jsThe host-specific part is only the executable path and arguments. No URL, browser redirect, or server-side OAuth configuration is needed.
Safety model
The important boundaries are tested rather than documented only:
Boundary | How it is enforced |
No record changes | Snapshot of registered MCP tools and an allowlist of Simplifi request methods/paths |
No login from MCP | Server-side token access cannot call the credential-login path |
No accidental network in tests | Global |
No real household data in tests | Synthetic-fixture and whole-tree privacy checks |
One process per cache | A local cache lease prevents competing MCP hosts or auth commands |
No software can guarantee the behavior of an upstream service or protect data
after you give another local process access to your account. Review the code,
protect .env and the cache file, and use this at your own risk.
Development
npm run typecheck
npm test -- --run
npm run buildThe repository uses Given/When/Then test names and expects every acceptance
criterion to have an executable assertion. Run npm run setup-hooks once to
enable the matching pre-commit checks locally.
Privacy when contributing
Never commit .env, SQLite caches, exports, screenshots, transaction samples,
or real merchant/institution names. Fixtures must be synthetic. The repository
includes a local-only institution-name scanner configuration template at
.secret-scan.local.example.json; copy it to the gitignored
.secret-scan.local.json and populate it only on your machine.
License and provenance
This project is based on krconv/quicken-simplifi-mcp and retains its MIT license. The public release should preserve the license and attribution.
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.
Related MCP Servers
- Alicense-qualityBmaintenanceProvides an MCP server for querying and managing Monarch Money personal finance data through a local SQLite mirror with read-only SQL access. It enables users to sync transaction history from the Monarch API and analyze accounts, categories, and tags.Last updated1MIT
- AlicenseAqualityAmaintenanceProvides read-only access to Monzo banking accounts, balances, pots, and transactions with automatic OAuth token refresh and persistent local SQLite caching. Enables spending analysis with category breakdowns and transaction search across cached historical data beyond Monzo's 90-day access window.Last updated72GPL 3.0
- AlicenseAqualityDmaintenanceA read-only MCP server that enables users to analyze their real bank, credit card, loan, and brokerage data through Plaid. It provides financial analysis tools for transactions, balances, investments, liabilities, and debt while keeping all access tokens and data locally stored.Last updated24MIT
- Alicense-qualityCmaintenanceA local MCP server that provides read-only SQL access to financial accounts via Plaid, enabling natural language queries about transactions, balances, and holdings.Last updatedMIT
Related MCP Connectors
UN FAOSTAT global food & agriculture statistics over a local SQLite mirror, via MCP.
Query SEC EDGAR filings, XBRL financials, and company data through MCP. STDIO & Streamable HTTP.
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
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/SudSampath/simplifi-local-readonly-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server