OpenCoffer
БесплатноНе проверенEnables querying personal finance data including accounts, transactions, spending, holdings, net worth, and budgets from your self-hosted OpenCoffer instance. S
Описание
Enables querying personal finance data including accounts, transactions, spending, holdings, net worth, and budgets from your self-hosted OpenCoffer instance. Supports natural language queries through any MCP-compatible client.
README

OpenCoffer
Self-hosted personal finance with bank sync, dashboards, and a BYO-LLM chat that actually reads your numbers.
License: MIT Next.js Postgres Docker MCP
Quick start · Features · MCP · Configuration · Security
OpenCoffer is read-only against your financial accounts. It syncs through SimpleFIN, stores everything in a Postgres database you own, encrypts sensitive tokens and model keys at rest, and lets you ask finance questions through the in-app chat or any MCP-compatible client. Bring any model you want — OpenAI, Anthropic, OpenRouter, Groq, Together, Ollama, Hermes, ChatGPT subscription auth, or any OpenAI-compatible endpoint.
Features
- Bank & brokerage sync via SimpleFIN — one-token setup, encrypted access URLs.
- Net worth, cash flow, spending, subscriptions, holdings, real assets, budgets, alerts, saved charts — all deterministic, all generated from your database.
- Deterministic transaction rules — create merchant/name matching rules from transactions before AI categorization runs.
- Alert push notifications — deliver in-app alerts to ntfy, Discord, Slack, or a generic webhook.
- Bring your own LLM — OpenAI, Anthropic, any OpenAI-compatible provider, ChatGPT subscription auth, local Ollama, or a self-hosted endpoint.
- Persistent chat with finance tools — model picker, conversation history, category fixes, deterministic chart tools the LLM can call.
- Background worker — automatic sync, categorization, insight refresh, and net-worth snapshots on a cron you control.
- MCP server at
/api/mcpexposing the same finance tools used by chat, so any MCP client (Claude Desktop, Hermes, custom agents) can query your data with a bearer token. - Docker Compose deployment with Postgres, web, worker, and optional Ollama.
Screenshots
![]() Overview — net worth, cash flow, intelligence |
![]() Charts — deterministic, regenerated on sync |
![]() Chat — BYO model, persistent history |
Quick start (Docker)
The fastest path — Postgres, web, and worker running in three commands.
# 1. Generate secrets
cp .env.example .env
echo "NEXTAUTH_SECRET=$(openssl rand -base64 32)" >> .env
echo "APP_ENCRYPTION_KEY=$(openssl rand -base64 32)" >> .env
# 2. Start Postgres, run migrations, then bring up the full stack
docker compose up -d postgres
docker compose run --rm web pnpm db:migrate
docker compose up -d --build
Open http://localhost:3000, create an account, then add a SimpleFIN setup token in Settings → Connections.
[!IMPORTANT]
APP_ENCRYPTION_KEYencrypts your SimpleFIN access URLs and LLM API keys at rest. Back it up. Rotating it makes existing encrypted secrets unreadable.
Local development
Requirements: Node.js 22, pnpm (via Corepack), Postgres 16+.
corepack enable
pnpm install
cp .env.example .env.local
# Point DATABASE_URL at your local Postgres, then:
pnpm db:migrate
pnpm dev # web on :3000
pnpm worker # background sync + categorization (second terminal)
For production-mode testing (recommended for mobile / LAN testing — next dev compiles on demand and is slow over the network):
pnpm build
pnpm start
pnpm worker
Architecture
┌──────────────┐ ┌──────────────┐ ┌──────────────┐
│ Next.js │ │ Postgres 16 │ │ Worker │
│ (web) │◄───►│ (drizzle) │◄───►│ (cron) │
│ │ │ │ │ │
│ /dashboard │ │ accounts │ │ • sync │
│ /chat │ │ txns │ │ • categorize│
│ /settings │ │ insights │ │ • insights │
│ /api/mcp ───┼──┐ │ snapshots │ │ • snapshots │
└──────────────┘ │ │ budgets │ └──────┬───────┘
│ │ chat_msgs │ │
│ │ llm_creds* │ │
│ │ mcp_tokens* │ ▼
│ └──────────────┘ ┌──────────────┐
│ │ SimpleFIN │
▼ │ bridge │
┌─────────────────┐ └──────────────┘
│ MCP client │
│ (Claude / │ * encrypted with
│ Hermes / etc) │ APP_ENCRYPTION_KEY
└─────────────────┘
The worker is part of the release runtime, not optional dev tooling. It syncs SimpleFIN connections, categorizes new transactions with your chosen analysis model, refreshes AI insights, writes net-worth snapshots, and purges disconnected connections after their retention window.
Configuration
All configuration lives in .env (Docker) or .env.local (dev). See .env.example for the full list.
| Variable | Required | Description |
|---|---|---|
DATABASE_URL |
Yes | Postgres connection string |
NEXTAUTH_SECRET |
Yes | Auth.js session secret — openssl rand -base64 32 |
NEXTAUTH_URL |
Yes | Public URL of the web app |
DISABLE_REGISTRATION |
No | Set to 1 to block new registrations after the first user exists |
APP_ENCRYPTION_KEY |
Yes | 32-byte base64 key for at-rest encryption of secrets |
APP_URL |
Yes | Used in MCP setup snippets shown in the UI |
OPENCOFFER_SYNC_CRON |
No | Worker sync cadence (default */30 * * * *) |
OPENCOFFER_ASSET_REFRESH_CRON |
No | Real-asset market valuation cadence (default weekly) |
RENTCAST_API_KEY |
No | Home/land market estimates through RentCast AVM |
AUTO_DEV_API_KEY |
No | Vehicle comparable-listing estimates through Auto.dev |
MARKETCHECK_API_KEY |
No | Optional direct vehicle valuation through MarketCheck; may incur provider data fees |
OLLAMA_BASE_URL |
No | Pre-seeded base URL when using the bundled Ollama profile |
LLM setup
- Open Settings → Models.
- Add at least one credential. Any OpenAI-compatible endpoint works — provider, base URL, API key, model name.
- Mark one model as the analysis model. It's used for background categorization and generated insights. Chat lets you pick per-message.
To run Ollama inside the compose network:
docker compose --profile ollama up -d ollama
Then point the app at http://ollama:11434/v1 (inside Docker) or http://host.docker.internal:11434/v1 (host Ollama from a container).
Use your ChatGPT Plus/Pro subscription instead of an API key
OpenCoffer can talk to the same backend the official codex CLI uses, so a ChatGPT Plus/Pro/Business subscription works as a model credential — no extra OpenAI API spend.
Install the official Codex CLI and sign in with your ChatGPT account:
npm install -g @openai/codex codex loginThis opens a browser, completes the OAuth flow, and writes a token bundle to
~/.codex/auth.json.In OpenCoffer, go to Settings → Models → Add credential and pick ChatGPT Plus/Pro subscription as the provider.
Paste the entire contents of
~/.codex/auth.jsoninto the credential field and pick a model (e.g. one of the GPT-5.x options exposed via the codex backend). Leave the base URL blank — OpenCoffer defaults tohttps://chatgpt.com/backend-api/codex.Save. OpenCoffer encrypts the token bundle with
APP_ENCRYPTION_KEYand automatically refreshes the access token againstauth.openai.comwhen it's within 60 seconds of expiry. If a refresh ever fails (you signed out elsewhere, the refresh token rotated, etc.), re-runcodex loginand paste the newauth.json.
This works for both the in-app chat and the background analysis model (categorization, insights, snapshots). Same auth, same provider config.
SimpleFIN
OpenCoffer uses SimpleFIN for read-only bank and brokerage data. There are no app-wide credentials — each user pastes their own setup token in Settings → Connections. The token is claimed once; the resulting access URL is encrypted with APP_ENCRYPTION_KEY.
Disconnecting a connection marks it for purge after 30 days. Hard-delete removes it immediately.
Notifications and rules
Open Transactions → Rules to create deterministic category rules from existing transactions. Rules run before background AI categorization, and matching transactions receive manual override categories.
Open Settings → Notifications to add per-user ntfy, Discord, Slack, or webhook channels for alerts. Channel URLs and tokens are encrypted with APP_ENCRYPTION_KEY; no extra environment variables are required.
Real assets
Open Dashboard → Assets to add homes, vehicles, land, or other property. Manual values are always supported and are included in net worth immediately. If provider keys are configured, homes and land can refresh from RentCast, vehicles can decode VIN metadata from NHTSA, and vehicle values can refresh from Auto.dev listing comparables or MarketCheck direct valuation.
MCP
OpenCoffer exposes its finance tools to MCP-compatible clients at /api/mcp.
# 1. Create a token in Settings → MCP
# 2. Wire it into your MCP client (Hermes example):
hermes mcp add opencoffer \
--transport http \
--url http://localhost:3000/api/mcp \
--header "Authorization: Bearer oc_<your-token>"
Tool families available over MCP:
accounts recent_transactions transaction_search
spending_by_category holdings recurring_streams
upcoming_payments net_worth budgets
alerts chart_data category_fixes
The LLM writes the commentary; finance totals come from deterministic database-backed tools. No hallucinated balances.
Security
- SimpleFIN access URLs and LLM API keys are encrypted at rest with
APP_ENCRYPTION_KEY. - MCP bearer tokens are stored as hashes — you see them once at creation.
- Dashboard and settings routes require Auth.js sessions;
/api/mcpuses bearer auth instead of session cookies. - Keep
NEXTAUTH_SECRET,APP_ENCRYPTION_KEY,.env, database backups, and SimpleFIN setup/access URLs private.
See SECURITY.md for the full policy and disclosure channel.
Operations
docker compose logs -f web
docker compose logs -f worker
docker compose run --rm web pnpm db:migrate # apply new migrations
docker compose pull && docker compose up --build -d
Back up Postgres before upgrades:
docker compose exec postgres pg_dump -U opencoffer opencoffer > opencoffer.sql
docker compose exec -T postgres psql -U opencoffer opencoffer < opencoffer.sql
Demo GIF
The hero GIF lives at public/demo.gif. It's rendered from real app screenshots captured with fake demo data — never real account data.
# Remotion source (preferred — produces the higher-res GIF)
cd demo/remotion
pnpm install
pnpm run render:gif # writes ../../public/demo.gif
# Deterministic Python fallback (no Remotion / Chromium required)
python3 scripts/generate-demo-gif.py
Contributing
PRs welcome. See CONTRIBUTING.md for the local setup and the checks that should pass before opening a PR:
npx --no-install tsc --noEmit
pnpm lint
pnpm build
License
MIT © OpenCoffer contributors.
Установка OpenCoffer
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/osirishorus/opencofferFAQ
OpenCoffer MCP бесплатный?
Да, OpenCoffer MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для OpenCoffer?
Нет, OpenCoffer работает без API-ключей и переменных окружения.
OpenCoffer — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить OpenCoffer в Claude Desktop, Claude Code или Cursor?
Открой OpenCoffer на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Stripe
Payments, customers, subscriptions
автор: Stripemalamutemayhem/unclick-agent-native-endpoints
110+ tools for AI agents spanning social media, finance, gaming, music, AU-specific services, and utilities. Zero-config local tools plus platform connectors. n
автор: malamutemayhemwhiteknightonhorse/APIbase
Unified API hub for AI agents with 56+ tools across travel (Amadeus, Sabre), prediction markets (Polymarket), crypto, and weather. Pay-per-call via x402 micropa
автор: whiteknightonhorsetrackerfitness729-jpg/sitelauncher-mcp-server
Deploy live HTTPS websites in seconds. Instant subdomains ($1 USDC) or custom .xyz domains ($10 USDC) on Base chain. Templates for crypto tokens and AI agent pr
Compare OpenCoffer with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории finance



