SQLsaber is an open-source agentic SQL assistant. Think Claude Code but for SQL.
Stop fighting your database.
Ask your questions in natural language and sqlsaber will gather the right context automatically and answer your query by writing SQL and analyzing the results.
-
Automatic database schema introspection
-
Safe query execution (read-only by default)
-
Memory management
-
Interactive REPL mode
-
Conversation threads (store, display, and resume conversations)
-
Support for PostgreSQL, MySQL, SQLite, DuckDB, and CSVs
-
Extended thinking mode for select models (Anthropic, OpenAI, Google, Groq)
-
Beautiful formatted output
uv tool install sqlsaberpipx install sqlsaberbrew install uv
uv tool install sqlsaberSet your database connection URL:
saber db add DB_NAMEThis will ask you some questions about your database connection
SQLSaber uses Sonnet-4 by default. You can change it using:
saber models set
# for more model settings run:
saber models --helpYou can add specific context about your database to the model using the memory feature. This is similar to how you add memory/context in Claude Code.
saber memory add 'always convert dates to string for easier formating'View all memories
saber memory listYou can also add memories in an interactive query session by starting with the
#sign
For complex queries that require deeper reasoning, sqlsaber supports extended thinking mode. When enabled, you will see the model's reasoning process as it generates SQL queries and arrives at conclusions.
Enable/disable via CLI flags:
# Enable thinking for a single query
saber --thinking "analyze sales trends across regions"
# Disable thinking for a single query
saber --no-thinking "show me all users"Toggle in interactive mode:
# In interactive mode, use slash commands
/thinking on # Enable thinking
/thinking off # Disable thinkingConfigure default setting:
Thinking is disabled by default. To change the default, edit your config file at ~/.config/sqlsaber/model_config.json:
{
"model": "anthropic:claude-sonnet-4-20250514",
"thinking_enabled": true
}Start an interactive session:
saberYou can also add memories in an interactive session by starting your message with the
#sign
Execute a single natural language query:
saber "show me all users created this month"You can also pipe queries from stdin:
echo "show me all users created this month" | saber
cat query.txt | saberContinue a previous conversation thread:
saber threads resume THREAD_IDUse a specific database connection:
# Interactive mode with specific database
saber -d mydb
# Single query with specific database
saber -d mydb "count all orders"
# You can also pass a connection string
saber -d "postgresql://user:password@localhost:5432/mydb" "count all orders"
saber -d "duckdb:///path/to/data.duckdb" "top customers"# Start interactive mode
saber
# Non-interactive mode
saber "show me orders with customer details for this week"
saber "which products had the highest sales growth last quarter?"SQLsaber uses a multi-step agentic process to gather the right context and execute SQL queries to answer your questions:
- List Tables Tool: Quickly discovers available tables with row counts
- Pattern Matching: Identifies relevant tables based on your query
- Smart Schema Introspection: Analyzes only the specific table structures needed for your query
- SQL Generation: Creates optimized SQL queries based on natural language input
- Safe Execution: Runs read-only queries with built-in protections against destructive operations
- Result Formatting: Presents results with explanations in tables
If you like the project, starring the repo is a great way to show your support!
Other contributions are welcome! Please feel free to open an issue to discuss your ideas or report bugs.
This project is licensed under Apache-2.0 License - see the LICENSE file for details.
