whodb-cli
WhoDB CLI - a powerful database management tool with interactive TUI, programmatic commands, and MCP server for AI assistants.
README
<div align="center">
<img src="./docs/logo/logo.svg" width="30px" height="auto" /> WhoDB
Lightweight, Fast, and Beautiful Database Management
Available on
๐ Quick Start โข ๐ Documentation โข ๐ฎ Live Demo โข ๐ฌ Community
</div>
<p align="center"><img src="./docs/images/06-storage-unit-list-with-sidebar.png" alt="WhoDB Interface" width="100%" height="auto" /></p>
๐ฏ What is WhoDB?
WhoDB is the modern database management tool that developers actually want to use.
Built with GoLang and React, WhoDB is a lightweight (<50MB) yet powerful database client that combines blazing-fast performance with an intuitive, beautiful interface. Whether you're debugging a production issue, exploring a new database schema, or managing data for your next feature, WhoDB makes database management feel effortless.
Why WhoDB?
<table> <tr> <td width="50%">
๐ Lightning Fast
- Instant startup (<1s)
- Real-time query results
- Efficient table virtualization
- 90% less resource usage than traditional tools
๐จ Beautiful & Intuitive
- Clean, modern interface
- Spreadsheet-like data grid
- Interactive schema visualization
- No training required
</td> <td width="50%">
๐ค AI-Powered
- Natural language to SQL
- Talk to your data conversationally
- Supports Ollama, OpenAI, Anthropic, and any OpenAI-compatible provider
- No complex query writing needed
๐ง Developer-Friendly
- Multi-database support
- Query history & management
- Mock data generation
- Flexible export options
</td> </tr> </table>
โจ Key Features
๐ Visual Data Management
<table> <tr> <td width="50%"> <img src="./docs/images/09-data-view-users-table.png" alt="Data Grid View" width="100%"/> </td> <td width="50%">
Spreadsheet-Like Data Grid
- View, edit, and manage data intuitively
- Sort, filter, and search with ease
- Inline editing with real-time updates
- Bulk operations for efficiency
</td> </tr> </table>
๐ Interactive Schema Explorer
<table> <tr> <td width="50%">
Visual Schema Topology
- Interactive graph visualization
- Explore table relationships
- Understand foreign keys instantly
- Pan, zoom, and navigate easily
</td> <td width="50%"> <img src="./docs/images/24-graph-view-schema-topology.png" alt="Schema Graph" width="100%"/> </td> </tr> </table>
๐ป Powerful Query Interface
<table> <tr> <td width="50%"> <img src="./docs/images/27-scratchpad-main-view.png" alt="Scratchpad" width="100%"/> </td> <td width="50%">
Scratchpad Query Editor
- Jupyter-like notebook interface
- Syntax highlighting & auto-completion
- Query history & reuse
- Multi-cell organization
</td> </tr> </table>
๐๏ธ Multi-Database Support
Community Edition (CE): PostgreSQL, MySQL, SQLite3, MongoDB, Redis, MariaDB, ElasticSearch
Enterprise Edition (EE): All CE databases plus Oracle, SQL Server, DynamoDB, Athena, Snowflake, Cassandra, and more
๐ฏ Advanced Capabilities
- Mock Data Generation - Generate realistic test data for development
- Flexible Export Options - Export to CSV, Excel, JSON, or SQL
- Advanced Filtering - Build complex WHERE conditions visually
- AI-Powered Queries - Convert natural language to SQL with Ollama, OpenAI, Anthropic, or any OpenAI-compatible provider
๐ฎ Try WhoDB Now
<div align="center">
Experience WhoDB in action without any setup
<table> <tr> <td align="center" width="50%"> <h3>๐ Live Demo</h3> <p>Try WhoDB instantly with our sample database</p> <a href="https://whodb.com/demo/login?host=quick-container-491288b0-3138-48fa-93b4-1e730296c0b7.hello.svc.cluster.local&username=user&password=password&database=Adventureworks"> <img src="./docs/images/01-login-page.png" alt="Login Page" width="80%"/> </a> <p><a href="https://whodb.com/demo/login?host=quick-container-491288b0-3138-48fa-93b4-1e730296c0b7.hello.svc.cluster.local&username=user&password=password&database=Adventureworks"><strong>Launch Demo โ</strong></a></p> <p><em>Pre-filled with sample PostgreSQL database</em></p> </td> <td align="center" width="50%"> <h3>๐ฅ Video Demo</h3> <p>Watch WhoDB in action</p> <a href="https://youtu.be/hnAQcYYzcLo"> <img src="https://img.youtube.com/vi/hnAQcYYzcLo/maxresdefault.jpg" alt="WhoDB Demo Video" width="80%"/> </a> <p><a href="https://youtu.be/hnAQcYYzcLo"><strong>Watch Video โ</strong></a></p> <p><em>Complete walkthrough of features</em></p> </td> </tr> </table>
</div>
๐ Quick Start
Option 1: Docker (Recommended)
The fastest way to get started with WhoDB:
docker run -it -p 8080:8080 clidey/whodb
Then open http://localhost:8080 in your browser.
Option 2: Docker Compose
For more control and configuration:
version: "3.8"
services:
whodb:
image: clidey/whodb
ports:
- "8080:8080"
environment:
# AI Integration (Optional)
# Ollama Configuration
- WHODB_OLLAMA_HOST=localhost
- WHODB_OLLAMA_PORT=11434
# Anthropic Configuration
- WHODB_ANTHROPIC_API_KEY=your_key_here
# - WHODB_ANTHROPIC_ENDPOINT=https://api.anthropic.com/v1
# OpenAI Configuration
- WHODB_OPENAI_API_KEY=your_key_here
# - WHODB_OPENAI_ENDPOINT=https://api.openai.com/v1
# Generic AI Providers (OpenAI-compatible endpoints)
# Use WHODB_AI_GENERIC_<ID>_* to add any OpenAI-compatible provider.
# <ID> can be any unique identifier (e.g., LMSTUDIO, OPENROUTER).
#
# LM Studio example:
# - WHODB_AI_GENERIC_LMSTUDIO_NAME=LM Studio
# - WHODB_AI_GENERIC_LMSTUDIO_BASE_URL=http://host.docker.internal:1234/v1
# - WHODB_AI_GENERIC_LMSTUDIO_MODELS=mistral-7b,llama-3-8b
#
# OpenRouter example:
# - WHODB_AI_GENERIC_OPENROUTER_NAME=OpenRouter
# - WHODB_AI_GENERIC_OPENROUTER_BASE_URL=https://openrouter.ai/api/v1
# - WHODB_AI_GENERIC_OPENROUTER_API_KEY=your_key_here
# - WHODB_AI_GENERIC_OPENROUTER_MODELS=google/gemini-2.0-flash-001,anthropic/claude-3.5-sonnet
# volumes: # (Optional for SQLite)
# - ./sample.db:/db/sample.db
What's Next?
- Connect to your database - Enter your database credentials on the login page
- Explore your schema - Browse tables and visualize relationships
- Run queries - Use the Scratchpad to execute SQL queries
- Manage data - Edit, add, and delete records with ease
๐ For detailed installation options and configuration, see our Documentation
๐ป WhoDB CLI
WhoDB also offers a powerful command-line interface with an interactive TUI (Terminal User Interface) and MCP server support for AI assistants.
Features
- Interactive TUI - Full-featured terminal interface for database management
- MCP Server - Model Context Protocol support for Claude, Cursor, and other AI tools
- Cross-Platform - Available for macOS, Linux, and Windows
Quick Install
# macOS/Linux
curl -fsSL https://raw.githubusercontent.com/clidey/whodb/main/cli/install/install.sh | bash
# Homebrew (coming soon)
brew install whodb-cli
# npm
npm install -g @clidey/whodb-cli
Usage
# Launch interactive TUI
whodb-cli
# Run as MCP server for AI assistants
whodb-cli mcp serve
๐ For full CLI documentation, see the CLI README
๐ ๏ธ Development Setup
Prerequisites
- GoLang - Latest version recommended
- PNPM - For frontend package management
- Node.js - Version 16 or higher
Editions
<table> <tr> <td width="50%">
Community Edition (CE)
- PostgreSQL
- MySQL / MariaDB
- SQLite3
- MongoDB
- Redis
- ElasticSearch
</td> <td width="50%">
Enterprise Edition (EE)
- All CE databases
- Oracle
- SQL Server
- DynamoDB
- Athena
- Snowflake
- Cassandra
- And more...
</td> </tr> </table>
๐ See BUILD_AND_RUN.md for detailed build instructions and ARCHITECTURE.md for architecture details.
Frontend Development
Navigate to the frontend/ directory and start the development server:
cd frontend
pnpm i
pnpm start
Backend Development
1. Build Frontend (First-Time Setup)
If the core/build/ directory doesn't exist, build the frontend first:
cd frontend
pnpm install
pnpm run build
rm -rf ../core/build/
cp -r ./build ../core/
cd ..
Note: This is only required once, as Go embeds the
build/folder on startup.
2. Setup AI Integration (Optional)
To enable natural language queries:
-
Ollama - Download from ollama.com
# Install Llama 3.1 8b model ollama pull llama3.1WhoDB will auto-detect installed models and show a Chat option in the sidebar.
-
OpenAI/Anthropic - Set environment variables (see Docker Compose example above)
-
Any OpenAI-compatible provider - Use
WHODB_AI_GENERIC_<ID>_*environment variables to connect to LM Studio, OpenRouter, or any provider with an OpenAI-compatible API (see Docker Compose example above)
3. Start Backend Service
cd core
go run ./cmd/whodb
The backend will start on http://localhost:8080
๐ผ Use Cases
๐จโ๐ป For Developers
<table> <tr> <td width="50%">
Local Development
- Quick database inspection during development
- Debug production issues with read-only access
- Test API endpoints with real data
- Explore schema changes
</td> <td width="50%">
API Development
- Validate data transformations
- Test query performance
- Generate mock data for testing
- Export data for integration tests
</td> </tr> </table>
๐ For Data Analysts
- Run ad-hoc SQL queries quickly
- Export data to Excel for analysis
- Build complex filters visually
- Visualize table relationships
๐งช For QA Engineers
- Generate realistic test data
- Verify database state during testing
- Debug test failures quickly
- Validate data migrations
๐ ๏ธ For Database Administrators
- Monitor table structures and indexes
- Manage user data efficiently
- Quick schema exploration
- Emergency data fixes
โ Frequently Asked Questions
<details> <summary><strong>What makes WhoDB different from other database tools?</strong></summary> <br>
WhoDB combines the lightweight nature of tools like Adminer with modern UX, powerful visualizations, and AI capabilities. Unlike resource-heavy tools like DBeaver, WhoDB uses 90% less memory while providing a faster, more intuitive experience.
</details>
<details> <summary><strong>Is WhoDB suitable for production use?</strong></summary> <br>
Yes, WhoDB is production-ready and used by thousands of developers. For production environments, we recommend:
- Using read-only database accounts when possible
- Enabling SSL/TLS connections
- Consider Enterprise Edition for audit logging and advanced security features
</details>
<details> <summary><strong>How does WhoDB handle large datasets?</strong></summary> <br>
WhoDB implements several performance optimizations:
- Table virtualization for efficient rendering
- Lazy loading for large result sets
- Pagination controls
- Query result streaming
</details>
<details> <summary><strong>Which databases are supported?</strong></summary> <br>
Community Edition: PostgreSQL, MySQL, MariaDB, SQLite3, MongoDB, Redis, ElasticSearch
Enterprise Edition: All CE databases plus Oracle, SQL Server, DynamoDB, Athena, Snowflake, Cassandra, and more
</details>
<details> <summary><strong>How do I deploy WhoDB?</strong></summary> <br>
WhoDB can be deployed in multiple ways:
- Docker - Single command deployment
- Docker Compose - For production setups
- Kubernetes - For enterprise environments
- Binary - Direct installation on servers
See our Quick Start section for details.
</details>
<details> <summary><strong>Does WhoDB store my credentials?</strong></summary> <br>
No. WhoDB does not store database credentials by default. Connections are temporary and credentials are cleared when you close the browser. You can optionally configure connection profiles stored locally in your browser.
</details>
<details> <summary><strong>Can I use WhoDB with AI features?</strong></summary> <br>
Yes! WhoDB integrates with:
- Ollama - For local, private AI models
- OpenAI - GPT-4 and other OpenAI models
- Anthropic - Claude models
- Any OpenAI-compatible provider - LM Studio, OpenRouter, vLLM, and more via
WHODB_AI_GENERIC_<ID>_*environment variables
These integrations allow you to query your database using natural language instead of SQL.
</details>
๐ค Contributing
We welcome contributions from the community! Whether it's bug reports, feature requests, or code contributions, we appreciate your help in making WhoDB better.
How to Contribute
- Report Issues - Found a bug? Open an issue
- Request Features - Have an idea? Start a discussion
- Submit PRs - Want to contribute code? Check our Contributing Guide
- Improve Docs - Help us improve documentation
Development Resources
- Contributing Guide - Detailed contribution guidelines
- Architecture - Understanding the codebase
- Build & Run - Development setup instructions
๐ธ Screenshots
<details> <summary><strong>View More Screenshots</strong></summary>
Data Management
<img src="./docs/images/09-data-view-users-table.png" alt="Data View" width="100%"/>
Add/Edit Records
<img src="./docs/images/11-data-view-add-row-dialog.png" alt="Add Row" width="100%"/>
Advanced Filtering
<img src="./docs/images/16-data-view-where-conditions-popover.png" alt="Where Conditions" width="100%"/>
Export Options
<img src="./docs/images/20-data-view-export-dialog.png" alt="Export Dialog" width="100%"/>
Schema Graph Visualization
<img src="./docs/images/25-graph-view-with-controls.png" alt="Graph View" width="100%"/>
Scratchpad Query Editor
<img src="./docs/images/28-scratchpad-code-editor.png" alt="Scratchpad" width="100%"/>
Query Results
<img src="./docs/images/29-scratchpad-query-results.png" alt="Query Results" width="100%"/>
Multiple Database Support
<img src="./docs/images/51-login-database-types-all-options.png" alt="Database Types" width="100%"/>
</details>
๐ข Infrastructure & Support
WhoDB's deployment and CI/CD are powered by Clidey, a no-code DevOps platform.
Contact & Support
- Email: support@clidey.com
- GitHub Issues: Report a bug
- Discussions: Join the conversation
- Documentation: docs.whodb.com
<div align="center">
โญ Star Us on GitHub!
If you find WhoDB useful, please consider giving us a star on GitHub. It helps us grow the community and continue improving WhoDB.
Built with โค๏ธ by the Clidey team
"Is it magic? Is it sorcery? No, it's just WhoDB!"
</div>
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.