Main
Safer workflow for agents: README describes cloning MongoDB/Postgres via dump/restore into an isolated Docker container before letting an agent query it.
Field-level data control: README highlights hidden fields are stripped from every response and agents never learn hidden fields exist.
Fast VPS install: README includes a one-liner installer for Ubuntu/Debian that sets up Docker (if missing) and brings up the stack with HTTPS.
Multiple deployment modes: README mentions proxyless and Cloudflare Tunnel options depending on your network constraints.
Source-backed notes
- README includes a VPS installer:
curl -fsSL .../install.sh | sudo bashfor Ubuntu/Debian. - README explains the clone flow:
mongodump/mongorestorefor Mongo andpg_dump/pg_restorefor Postgres inside Docker. - README mentions hidden fields are stripped from every response so agents can’t exfiltrate unseen columns/fields.
FAQ
- Does it connect to production directly?: README frames it as a clone-then-query workflow; agents query the isolated clone, not prod.
- Which databases are supported?: README explicitly mentions MongoDB and PostgreSQL with dump/restore per engine.
- How fast is setup?: README claims a fresh VPS can be ready in a few minutes; budget extra time for DNS/ports.