Database operations including querying, schema exploration, and data analysis. Activates for tasks involving PostgreSQL, MySQL, MariaDB, SQLite, MongoDB, Redis, Elasticsearch, or ClickHouse databases.
You have access to WhoDB for database operations. Use these tools and commands to help users with database tasks.
When the WhoDB MCP server is available, use these tools directly:
List all available database connections.
No parameters required.
Returns: List of connection names with type and source (env/saved).
Execute SQL queries against a database.
Parameters:
- connection: Connection name (optional if only one connection exists)
- query: SQL query to execute
Example: whodb_query(connection="mydb", query="SELECT * FROM users LIMIT 10")
List all schemas in a database.
Parameters:
- connection: Connection name (optional if only one connection exists)
Example: whodb_schemas(connection="mydb")
List all tables in a schema.
Parameters:
- connection: Connection name (optional if only one connection exists)
- schema: Schema name (optional, uses default if not specified)
Example: whodb_tables(connection="mydb", schema="public")
Describe columns in a table.
Parameters:
- connection: Connection name (optional if only one connection exists)
- table: Table name (required)
- schema: Schema name (optional)
Example: whodb_columns(connection="mydb", table="users")
If MCP tools are unavailable, use the CLI directly via Bash:
whodb query "SELECT * FROM users LIMIT 10" --connection mydb --format json
# List schemas
whodb schemas --connection mydb --format json
# List tables
whodb tables --connection mydb --schema public --format json
# Describe columns
whodb columns --connection mydb --table users --format json
# List connections
whodb connections list --format json
# Test connection
whodb connections test mydb
# Add new connection (interactive)
whodb connections add --name mydb --type Postgres --host localhost --database mydb
# Export to CSV
whodb export --connection mydb --table users --output users.csv
# Export query results
whodb export --connection mydb --query "SELECT * FROM orders" --output orders.xlsx
whodb_connectionswhodb_schemas(connection="name")whodb_tables(connection="name", schema="public")whodb_columns(connection="name", table="users")whodb_query(connection="name", query="SELECT * FROM users LIMIT 5")iMessage/SMS CLI for listing chats, history, and sending messages via Messages.app.
Delegate coding tasks to Codex, Claude Code, or Pi agents via background process. Use when: (1) building/creating new features or apps, (2) reviewing PRs (spawn in temp dir), (3) refactoring large codebases, (4) iterative coding that needs file exploration. NOT for: simple one-liner fixes (just edit), reading code (use read tool), thread-bound ACP harness requests in chat (for example spawn/run Codex or Claude Code in a Discord thread; use sessions_spawn with runtime:"acp"), or any work in ~/clawd workspace (never spawn agents here). Claude Code: use --print --permission-mode bypassPermissions (no PTY). Codex/Pi/OpenCode: pty:true required.
Gemini CLI for one-shot Q&A, summaries, and generation.
Notion API for creating and managing pages, databases, and blocks.
ElevenLabs text-to-speech with mac-style say UX.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Category:developer