HybridHub
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DSN | No | Database connection string | |
| DB_HOST | No | Database host | |
| DB_NAME | No | Database name | |
| DB_PORT | No | Database port | |
| DB_TYPE | No | Database type (postgres, mysql, sqlite, etc.) | |
| DB_USER | No | Database username | |
| DB_MAX_ROWS | No | Maximum rows per query | 1000 |
| DB_PASSWORD | No | Database password | |
| DB_READONLY | No | Enable read-only mode | false |
| STORAGE_TYPE | No | Storage provider type (s3, oss, obs, etc.) | |
| HYBRIDHUB_PORT | No | HTTP port | 8080 |
| STORAGE_REGION | No | Storage region | |
| STORAGE_ENDPOINT | No | Storage endpoint URL | |
| HYBRIDHUB_API_KEY | No | API key for authentication | |
| STORAGE_ACCESS_KEY | No | Access key ID | |
| STORAGE_PATH_STYLE | No | Use path-style URLs (for MinIO) | false |
| STORAGE_SECRET_KEY | No | Secret access key | |
| HYBRIDHUB_TRANSPORT | No | Transport mode | stdio |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| execute_sqlB | Execute SQL query on the 'sqlserver_local' database. Returns query results as JSON. |
| search_db_objectsB | Search database objects (schemas, tables, columns, procedures) on 'sqlserver_local'. Supports SQL LIKE patterns. |
| list_bucketsA | List all storage buckets available in the 'huawei_obs' source. Returns bucket names, creation dates, and locations. |
| list_objectsB | List objects in a bucket from the 'huawei_obs' source. Supports prefix filtering, delimiter for hierarchical listing, and pagination. |
| get_objectA | Retrieve the content of an object from the 'huawei_obs' source. Text files are returned as plain text, binary files as base64. Default max size: 10MB |
| get_object_metadataA | Get metadata for an object from the 'huawei_obs' source without downloading content. Returns content type, size, last modified date, ETag, storage class, and custom metadata. |
| search_objectsC | Search for objects in a bucket from the 'huawei_obs' source. Supports filtering by prefix, suffix, extensions, glob patterns, file size, and modification date. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
Most tools have distinct purposes, with clear separation between database operations (execute_sql, search_db_objects) and object storage operations (get_object, list_objects, etc.). However, search_objects and list_objects could potentially cause confusion as both involve listing objects in buckets, though search_objects offers more advanced filtering capabilities.
All tools follow a consistent verb_noun naming pattern (e.g., execute_sql, get_object, list_buckets). There are no deviations in style or convention, making the set predictable and easy to understand.
With 7 tools, the count is reasonable for a server handling two domains (database and object storage). It's slightly on the lower side for covering both areas comprehensively, but each tool appears purposeful and well-scoped.
For object storage, the tools cover retrieval, listing, and search well, but lack create, update, or delete operations, which are notable gaps. For database operations, execute_sql and search_db_objects provide query and search capabilities, but there's no direct CRUD for tables or schemas, leaving the surface incomplete for full database management.