Azure SQL MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DATABASE | Yes | The name of the database | |
| SERVER_NAME | Yes | The Azure SQL server name (e.g., your-server.database.windows.net) | |
| AZURE_CLIENT_ID | No | Optional Azure client ID for authentication via environment variables | |
| AZURE_TENANT_ID | No | Optional Azure tenant ID for authentication via environment variables | |
| AZURE_CLIENT_SECRET | No | Optional Azure client secret for authentication via environment variables |
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 | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| check_database_configA | Check if the database is properly configured. |
| execute_queryC | Execute a SQL query against the Azure SQL database. |
| get_tablesA | Get list of all tables in the Azure SQL database. |
| get_table_schemaB | Get schema information for a specific table. |
| get_sample_dataA | Get sample data from a table. |
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 5 tools
Each tool serves a distinct function: config check, arbitrary query execution, listing tables, getting schema, and retrieving sample data. No two tools overlap in purpose.
All tool names follow a consistent verb_noun pattern in snake_case (check_database_config, execute_query, get_sample_data, get_tables, get_table_schema), making the set predictable.
Five tools cover essential database introspection and querying capabilities without unnecessary clutter, appropriate for a focused Azure SQL server.
Core operations are covered, but dedicated tools for data manipulation (insert/update/delete) or schema modification are missing, though these can be performed via execute_query. Minor gap.