SqlDb-MCP-Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DB_NAME | Yes | Database name | |
| DB_USER | Yes | Database username | |
| DB_SERVER | Yes | Database server URL | |
| DB_ENCRYPT | No | Use encryption (recommended for Azure SQL) | true |
| DB_PASSWORD | Yes | Database password | |
| DB_TRUST_CERT | No | Trust self-signed certificates | false |
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 | {} |
| prompts | {} |
| resources | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| execute_queryB | Execute a SQL query on the database |
| get_schema_infoA | Retrieve database schema information, including tables and stored procedures |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| summarize_notes | Summarize all notes |
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 executes arbitrary SQL queries, the other retrieves schema metadata. There is no overlap or ambiguity between them.
Both tool names follow a consistent verb_noun pattern with snake_case (execute_query, get_schema_info), making them predictable and uniform.
With only two tools, the server feels minimal for a database-oriented MCP. While each tool is useful, the set is borderline thin for the apparent scope.
The execute_query tool can handle all SQL operations (including CRUD and DDL), and get_schema_info provides structural insight, covering core database needs. Minor gaps like dedicated transaction or table management tools exist but are not critical since they can be performed via SQL.