Bug Fixes
- Adjust database connection handling
([`060354a`](https://github.com/donghao1393/mcp-dbutils/commit/060354a5f681ba67da46488705f877a8ac9fc45f))
- Split connection parameters to fix VPN connection issue - Refactor connection pool creation based
on working example - Add better error logging for connection failures - Remove trailing spaces
- Correct logger function usage
([`cbace7c`](https://github.com/donghao1393/mcp-dbutils/commit/cbace7cf8226d87c36bc5bf3aadda383e0f1abff))
- Fix logger function calls to match the custom logger implementation - Change logger.warning/warn
to direct function calls with level parameter - Maintain consistent logging format across the
application
This fixes the AttributeError related to logger function calls
- Correct package installation and command line args
([`dfba347`](https://github.com/donghao1393/mcp-dbutils/commit/dfba34759393090c4fa728b4a72ad2d34d18f70c))
- Add proper pyproject.toml configuration - Fix module import path issues - Update argument handling
in server
- Remove required db-name parameter and add auto-selection
([`482cfa3`](https://github.com/donghao1393/mcp-dbutils/commit/482cfa336e31f417187c255ebbcaa45c1a8ba4e9))
- Remove required flag from db-name argument - Add auto-selection of first available database when
db-name not specified - Keep connection check for all configured databases - Add logging for
database connection status - Maintain backwards compatibility with manual db selection
Features
- Add connection check for all configured databases
([`162b5ba`](https://github.com/donghao1393/mcp-dbutils/commit/162b5baabe851f690406a60b4f349abb402bfc7d))
- Add connection check for all databases at startup - Continue if some databases fail but at least
one succeeds - Add detailed connection status logging - Make database name parameter required -
Improve error messages with connection status details
- Initialize Postgres MCP server
([`f91a8bc`](https://github.com/donghao1393/mcp-dbutils/commit/f91a8bc6d16a2d53bdf53ccc05229cade8e9e573))
- Support local host override for VPN environments - Add connection pool management - Implement
schema inspection and read-only query tools - Add configuration separation for better
maintainability
- Support multiple database configurations in YAML
([`cdeaa02`](https://github.com/donghao1393/mcp-dbutils/commit/cdeaa024eac5469caeb978d0ab455bb264006c4b))
- Restructure YAML format to support multiple database targets - Add database selection by name
(dev-db, test-db etc) - Support default database configuration - Add validation for database
configuration selection
Refactoring
- Combine database tools into single query_db tool
([`78437c7`](https://github.com/donghao1393/mcp-dbutils/commit/78437c79ec3f1da65e3e96622f1df02c9b7d56da))
- Merge database profile selection and SQL query into one tool - Add database_profile as required
parameter for query_db tool - Remove separate profile selection step - Simplify tool interaction
flow - Add proper error handling and validation
- Combine database tools into single query_db tool
([`602cbd8`](https://github.com/donghao1393/mcp-dbutils/commit/602cbd88407d7faf86ec97d18665ee449f500e61))
- Merge database profile selection and SQL query into one tool - Add database_profile as required
parameter for query_db tool - Remove separate profile selection step - Simplify tool interaction
flow - Add proper error handling and validation
This change simplifies the tool interface while maintaining explicit database selection requirement.
- Remove default database config
([`9ceaa2f`](https://github.com/donghao1393/mcp-dbutils/commit/9ceaa2f7eefceb0b423325f30b6ec181126cd91f))
- Remove default database configuration from YAML - Make database name parameter mandatory - Add
available database names in error message - Simplify configuration structure
This change enforces explicit database selection for better clarity and prevents accidental use of
wrong database environments.
- Reorganize project structure
([`dc2eace`](https://github.com/donghao1393/mcp-dbutils/commit/dc2eace23b0a5f23227a7d7599d2bec2836a6338))
- Rename package from 'postgres' to 'mcp_postgres' - Add logging support - Improve code organization
- Simplify and improve server code
([`c56a0a0`](https://github.com/donghao1393/mcp-dbutils/commit/c56a0a011052d4419e5dd4ed1b9173a37fff35c1))
- Merge duplicate tool handlers into a single unified handler - Add YAML configuration support with
multiple database profiles - Improve connection management with proper pool handling - Add masked
logging for sensitive connection information - Refactor command line arguments for better
usability
- Split database tools and enforce explicit database selection
([`2d6bfa3`](https://github.com/donghao1393/mcp-dbutils/commit/2d6bfa3e0779ef42e07dbc8884f2153230ad4f5c))
- Add set_database_profile tool with proper decorator - Split handle_call_tool into separate
handlers for each tool - Add validation for database selection before SQL execution - Update tool
handlers to return proper MCP response types - Add current database profile tracking
- Support YAML config for database connection
([`35ac49c`](https://github.com/donghao1393/mcp-dbutils/commit/35ac49c7d9a93e0d5bbd9d741a5660cbc73004d0))
- Add YAML config support as an alternative to database URL - Implement PostgresConfig class with
both YAML and URL parsing - Use anyio for better async compatibility - Keep backward compatibility
with URL-based configuration - Improve connection parameter handling for special characters