QualigenAI Oracle Bridge (MCP)
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DB_USER | Yes | Oracle database username | |
| DB_PASSWORD | Yes | Oracle database password | |
| DB_CONNECTION_STRING | Yes | Oracle database connection string (host:port/service_name) |
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
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_oracle_tablesB | Lists all tables in the Oracle database. |
| execute_queryC | Execute any SQL command. |
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 2 tools
The two tools have clearly distinct purposes: one lists database tables, the other executes arbitrary SQL commands. Although execute_query could technically be used to list tables, the descriptions and intended use cases are unambiguous.
Both tool names follow a consistent verb_noun pattern using snake_case: 'list_oracle_tables' and 'execute_query'. This makes the toolset predictable and easy to navigate.
With only two tools, the server feels slightly thin, but the scope is narrow—a database bridge. The pair of listing tables and executing queries covers the core needs, and each tool serves a distinct role, so the count is reasonable.
The execute_query tool accepts any SQL command, enabling full CRUD, DDL, and metadata operations. list_oracle_tables provides a convenient starting point for exploration. Together, they cover the domain without dead ends.