@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 +10 -9
- package/dist/chunk-KBVJEDZF.js +1825 -0
- package/dist/index.js +738 -2286
- package/dist/public/assets/index-gVrYRID4.css +1 -0
- package/dist/public/assets/{index-CDt2HpUt.js → index-hd88eD9m.js} +11 -11
- package/dist/public/index.html +3 -3
- package/dist/registry-AWAIN6WO.js +10 -0
- package/package.json +20 -19
- package/dist/public/assets/index-C-kOl-8S.css +0 -1
package/README.md
CHANGED
|
@@ -30,25 +30,26 @@
|
|
|
30
30
|
MCP Clients MCP Server Databases
|
|
31
31
|
```
|
|
32
32
|
|
|
33
|
-
DBHub is a
|
|
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
|
-
- **
|
|
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
|
-
- **
|
|
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
|
|
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
|
|
46
|
+
## MCP Tools
|
|
46
47
|
|
|
47
|
-
DBHub implements MCP
|
|
48
|
+
DBHub implements MCP tools for database operations:
|
|
48
49
|
|
|
49
|
-
- **[
|
|
50
|
-
- **[
|
|
51
|
-
- **[
|
|
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
|
|