{"id":50263366,"url":"https://github.com/canalesb93/breadbox","last_synced_at":"2026-05-27T12:05:15.232Z","repository":{"id":354110005,"uuid":"1173237053","full_name":"canalesb93/breadbox","owner":"canalesb93","description":"Self-hosted financial data aggregation for households","archived":false,"fork":false,"pushed_at":"2026-05-24T17:22:03.000Z","size":29473,"stargazers_count":1,"open_issues_count":7,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-24T17:26:47.812Z","etag":null,"topics":["golang","mcp","personal-finance","plaid","postgres","self-hosted","teller"],"latest_commit_sha":null,"homepage":"https://breadbox.sh","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/canalesb93.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"docs/agents.md","dco":null,"cla":null}},"created_at":"2026-03-05T06:32:20.000Z","updated_at":"2026-05-24T17:03:47.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/canalesb93/breadbox","commit_stats":null,"previous_names":["canalesb93/breadbox"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/canalesb93/breadbox","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/canalesb93%2Fbreadbox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/canalesb93%2Fbreadbox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/canalesb93%2Fbreadbox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/canalesb93%2Fbreadbox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/canalesb93","download_url":"https://codeload.github.com/canalesb93/breadbox/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/canalesb93%2Fbreadbox/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33564941,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-27T02:00:06.184Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["golang","mcp","personal-finance","plaid","postgres","self-hosted","teller"],"created_at":"2026-05-27T12:05:10.577Z","updated_at":"2026-05-27T12:05:15.219Z","avatar_url":"https://github.com/canalesb93.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Breadbox\n\nSelf-hosted financial data store with an MCP server.\n\n\u003cimg src=\"docs/images/dashboard.png\" alt=\"Breadbox dashboard\" width=\"840\"\u003e\n\n## What it is\n\nBreadbox aggregates bank transactions into a PostgreSQL database you\ncontrol and exposes them over a REST API and an MCP server. The intent\nis infrastructure: one normalized data store that AI agents, dashboards,\nand scripts can all query without each tool needing your bank credentials.\n\n- **MCP server** at `/mcp` (Streamable HTTP) and `breadbox mcp` (stdio),\n  scoped API keys with per-tool read/write permissions\n- **REST API** under `/api/v1/*`, specified in [`openapi.yaml`](openapi.yaml)\n- **Built-in agent runtime** — schedule [Claude Agent SDK](https://docs.claude.com/en/api/agent-sdk/overview)\n  runs on cron / sync-complete / on-demand, with per-run cost + turn caps\n  and full NDJSON transcripts. Bring your own Anthropic API key or OAuth\n  subscription token.\n- **Pluggable bank sync** — a normalized provider interface; integrations\n  and CSV import ship today, more on the roadmap\n- **Admin dashboard** — transaction review queue, rule engine, sync\n  monitoring, multi-user household support\n\n## Quick start\n\n```bash\ncurl -fsSL https://breadbox.sh/install.sh | bash\n```\n\nDetects OS, installs Docker if needed, prompts for an optional public\ndomain, generates secrets, and brings up the stack. Visit\n`http://localhost:8080/setup` (or your domain) to create the admin\naccount.\n\nFull install docs — binary download, Go source, manual Docker, daemon\nregistration: **[docs.breadbox.sh/install](https://docs.breadbox.sh/install)**.\n\n### Or deploy to a managed platform\n\n- **[Fly.io](deploy/fly-deploy.md)** — `flyctl deploy` against the\n  [`fly.toml`](fly.toml) at the repo root. Managed Postgres + persistent\n  volumes. ~5 minutes.\n- **[Railway](deploy/railway-deploy.md)** — Dockerfile build, public\n  HTTPS, attach Postgres in two clicks. ~5 minutes.\n\nBoth work without extra config thanks to Breadbox's 12-factor `$PORT`\nhandling — the platform-injected port flows through to the binary.\n\n## CLI\n\nThe same `breadbox` binary doubles as a `gh`-style CLI for driving any\nBreadbox instance — locally or remote — over its REST API. Per-host\ncredentials live in `~/.config/breadbox/hosts.toml`; switch hosts with\n`--host \u003cname\u003e` or `BREADBOX_HOST=\u003cname\u003e`.\n\nAlready have a Breadbox server somewhere and just want the CLI on your\nlaptop? Install only the 10 MB lite build — no Docker, no Postgres:\n\n```bash\ncurl -fsSL https://breadbox.sh/cli.sh | bash\n```\n\nDetects your OS, drops `breadbox` into `~/.local/bin` (or `/usr/local/bin`\nunder `sudo`), and prompts for the host URL to connect to.\n\n### Local (same machine as the server)\n\n```bash\nbreadbox auth bootstrap           # mint a full-access key, save to hosts.toml\nbreadbox doctor                   # readiness report\nbreadbox transactions list --limit 10\nbreadbox connections link --provider=plaid --user=\u003cshort_id\u003e --wait\n```\n\n### Remote (device-code login)\n\n```bash\nbreadbox auth login --host=https://breadbox.example.com\n# prints a verification URL + short code; approve on the server's /auth/device page\nbreadbox accounts list\n```\n\nOutput is a human table on a TTY and JSON when piped, so\n`breadbox transactions list | jq '.[].amount'` just works. Full command\ncatalog: [`docs/cli-commands.md`](docs/cli-commands.md).\n\nA 10 MB `breadbox-cli` lite build ships separately for remote agents and\nscripts that don't need the server packages.\n\n## AI agents\n\n\u003cimg src=\"docs/images/claude-desktop.png\" alt=\"Claude querying Breadbox via MCP\" width=\"840\"\u003e\n\nPoint any MCP client at `https://your-host/mcp` with an API key. Read\ntransactions, apply categories, write rules, surface anomalies — without\nthe agent ever touching bank credentials.\n\nClaude Desktop / Claude Code config:\n\n```json\n{\n  \"mcpServers\": {\n    \"breadbox\": {\n      \"command\": \"/path/to/breadbox\",\n      \"args\": [\"mcp\"],\n      \"env\": {\n        \"DATABASE_URL\": \"postgres://breadbox:breadbox@localhost:5432/breadbox?sslmode=disable\"\n      }\n    }\n  }\n}\n```\n\nOr let Breadbox run the agents itself: the built-in runtime ships with\nfive starter agents (Initial Setup, Bulk Review, Quick Review, Routine\nReview, Spending Report) and a prompt builder for your own. See the\n[multi-agent reviewer guide](https://docs.breadbox.sh/guides/multi-agent-reviewer).\n\n## Status\n\nPre-1.0. Breaking changes are documented in [`CHANGELOG.md`](CHANGELOG.md).\nProvider credentials are encrypted at rest with AES-256-GCM; the whole\nstack runs as a single Go binary alongside Postgres.\n\n## Documentation\n\n- **[docs.breadbox.sh](https://docs.breadbox.sh)** — install, providers, agents, API\n- [`docs/`](docs/) in this repo — engineering specs (data model, architecture, MCP tools, rule DSL)\n- [`CONTRIBUTING.md`](CONTRIBUTING.md) — development setup\n\n## License\n\n[AGPL-3.0](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcanalesb93%2Fbreadbox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcanalesb93%2Fbreadbox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcanalesb93%2Fbreadbox/lists"}