MySQL & MongoDB, fully managed
Create, browse, query, and export your databases without ever opening a terminal. Both MySQL and MongoDB supported.
Full database management in-browser
MySQL & MongoDB
Both major database engines in one console. Switch between relational and document-based storage per project.
Visual CRUD
Create, read, update, and delete records through a clean table UI — no SQL knowledge required.
Query Runner
Run raw SQL queries or MongoDB operations directly in the browser. Great for one-off data fixes.
Export & Import
Download full SQL dumps or upload and restore existing databases in one click.
Local Socket Binding
Databases are bound to the local socket by default — not publicly exposed to the internet.
Per-Project Isolation
Each project has its own database namespace. No accidental cross-project data access.
MySQL and MongoDB
MySQL
Industry-standard relational database. Perfect for structured data, complex joins, and transactional workloads.
- ✓ Create / drop databases & tables
- ✓ INSERT, UPDATE, DELETE, SELECT
- ✓ Raw SQL query execution
- ✓ Export as SQL dump
- ✓ Import .sql files
MongoDB
Flexible document database for unstructured or dynamic data. Great for APIs, content, and rapid prototyping.
- ✓ Create / drop collections
- ✓ Insert, find, update, delete documents
- ✓ JSON document viewer
- ✓ Export as JSON dump
- ✓ Import collections
Run queries from the browser
No Sequel Pro, no DBeaver, no SSH tunnel needed. Open the Query Runner, type your SQL or MongoDB operation, and see results instantly.
- Syntax highlighting
- Tabular results view
- Error messages shown inline
- Works for both MySQL & MongoDB
FROM users
WHERE active = 1
ORDER BY created_at DESC
LIMIT 10;
Databases are not publicly exposed
By default, all databases are bound to the local Unix socket on your server — not accessible from the internet. Connections only work from your server's own processes.
Manage your data without leaving your console
MySQL and MongoDB, full CRUD, query runner — all in one place.