@bytebase/dbhub 0.12.0 → 0.13.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -30,25 +30,26 @@
30
30
  MCP Clients MCP Server Databases
31
31
  ```
32
32
 
33
- DBHub is a Universal Database MCP Server implementing the Model Context Protocol (MCP) server interface. This gateway allows MCP-compatible clients to connect to and explore different databases:
33
+ DBHub is a Minimal Database MCP Server implementing the Model Context Protocol (MCP) server interface. This lightweight gateway allows MCP-compatible clients to connect to and explore different databases:
34
34
 
35
- - **Universal Gateway**: Single interface for PostgreSQL, MySQL, MariaDB, SQL Server, and SQLite
35
+ - **Minimal Design**: Just two general MCP tools (execute_sql, search_objects) for token-efficient operations, plus support for custom tools
36
+ - **Multi-Database Support**: Single interface for PostgreSQL, MySQL, MariaDB, SQL Server, and SQLite
36
37
  - **Secure Access**: Read-only mode, SSH tunneling, and SSL/TLS encryption support
37
- - **Multi-Database**: Connect to multiple databases simultaneously with TOML configuration
38
+ - **Multiple Connections**: Connect to multiple databases simultaneously with TOML configuration
38
39
  - **Production-Ready**: Row limiting, lock timeout control, and connection pooling
39
- - **MCP Native**: Full implementation of Model Context Protocol with resources, tools, and prompts
40
+ - **MCP Native**: Full implementation of Model Context Protocol with comprehensive tools
40
41
 
41
42
  ## Supported Databases
42
43
 
43
44
  PostgreSQL, MySQL, SQL Server, MariaDB, and SQLite.
44
45
 
45
- ## MCP Components
46
+ ## MCP Tools
46
47
 
47
- DBHub implements MCP Resources, Tools, and Prompts for database operations:
48
+ DBHub implements MCP tools for database operations:
48
49
 
49
- - **[Resources](https://dbhub.ai/components/resources)**: Database schema exploration (schemas, tables, indexes, procedures)
50
- - **[Tools](https://dbhub.ai/components/tools)**: SQL execution with transaction support
51
- - **[Prompts](https://dbhub.ai/components/prompts)**: AI-assisted SQL generation and database explanation
50
+ - **[execute_sql](https://dbhub.ai/tools/execute-sql)**: Execute SQL queries with transaction support and safety controls
51
+ - **[search_objects](https://dbhub.ai/tools/search-objects)**: Search and explore database schemas, tables, columns, indexes, and procedures with progressive disclosure
52
+ - **[Custom Tools](https://dbhub.ai/tools/custom-tools)**: Define reusable, parameterized SQL operations in your `dbhub.toml` configuration file
52
53
 
53
54
  ## Installation
54
55