What problem does it solve?
Database administration across PostgreSQL, MongoDB, and Redis often requires switching between tools, duplicating workflows, and manual synchronization. This Skill consolidates routine tasks into a single CLI-driven workflow, reducing context switching and human error.
Core Features & Use Cases
- Unified CLI control for multiple databases enabling common tasks such as querying, schema discovery, backups, restore, and migrations.
- MCP server integration to orchestrate database services in local or CI environments.
- Use Case: During a deployment, quickly backup PostgreSQL, verify MongoDB collections, and warm Redis caches with a single command.
Quick Start
Install and configure environment variables POSTGRES_URL, MONGODB_URI, REDIS_URL, then run the included CLI tools (psql for PostgreSQL, mongosh for MongoDB, and redis-cli for Redis) to perform routine operations. For example: set POSTGRES_URL and run a simple query with psql "$POSTGRES_URL" -c "SELECT version();"