mssql-mcp
This is a read-only Microsoft SQL Server MCP server that connects via AWS Secrets Manager credentials, enabling safe database exploration and querying without exposing credentials in config files. It runs cross-platform (macOS, Linux, Windows) with no native or ODBC dependencies.
Schema Discovery
list_schemas— List all user-defined schemas in the databaselist_tables— List tables, optionally filtered by schemadescribe_table— Inspect columns, data types, nullability, identity flags, primary keys, and defaultslist_indexes— View indexes on a table (one row per index/column combination)list_foreign_keys— View foreign key relationships originating from a table
View & Procedure Inspection
list_views— List views, optionally filtered by schemaget_view_definition— Retrieve the SQL source of a viewlist_procedures— List stored procedures, optionally filtered by schemaget_procedure_definition— Retrieve the SQL source of a stored procedure (does not execute it)
Data Querying
sample_rows— Preview up to 100 rows from any table (default: 10)run_select— Execute a customSELECTorWITH(CTE) query, capped at 1000 rows; DML/DDL/EXEC statements are strictly rejected
Credential Management
refresh_secret— Re-fetch credentials from AWS Secrets Manager and reconnect, useful after an SSO session expires or a secret is rotated — no server restart needed
Enables the MCP server to retrieve SQL Server connection secrets from AWS Secrets Manager, supporting read-only database exploration and querying.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mssql-mcplist all tables in the database"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mssql-mcp
A read-only Microsoft SQL Server MCP server using connection details from AWS Secrets Manager at tool-call time — nothing is read from disk or environment variables except the secret reference itself.
This is a light-weight mcp meant for local development use. It avoids database credentials in your agent config, works nicely with a credential process and tools like aws-vault, and allows for readonly database access and schema discovery.
Cross-platform: it's a pure-JavaScript MCP server (no native or ODBC
dependencies), so it runs identically on macOS, Linux, and Windows via
npx.
Configure in .claude.json
{
"mcpServers": {
"my-db": {
"command": "npx",
"args": ["-y", "@dhipskind253/mssql-mcp"],
"env": {
"AWS_ACCOUNT_ID": "123456789012",
"SECRET_NAME": "my-aws-secret",
"AWS_REGION": "us-east-1",
"TRUST_SERVER_CERTIFICATE": "false"
}
}
}
}Env var | Required | Default | Description |
| yes | — | The AWS account where the secret lives. Combined with name + region into a full ARN. |
| yes | — | The Secrets Manager secret name (no ARN suffix needed). |
| yes | — | AWS region the secret is in (e.g. |
| no |
| Skip TLS cert validation to the SQL Server. Accepts |
Standard AWS SDK env vars (AWS_PROFILE, AWS_ACCESS_KEY_ID, etc.) are
honored via the default credential provider chain. Most users just need
aws sso login to be current.
Related MCP server: SQL Server MCP
Required secret JSON
The secret value must be a JSON document with at least these fields:
{
"host": "myserver.database.windows.net",
"port": 1433,
"database": "mydb",
"username": "ro_user",
"password": "..."
}database may also be supplied as dbname — the field name AWS uses
in its built-in RDS-credentials secret template. If both are present,
database wins.
Optional fields (with defaults shown):
Field | Default | Notes |
|
| |
|
| TLS to the server. |
TLS cert trust is not read from the secret — set
TRUST_SERVER_CERTIFICATEin the MCP server'senvblock instead. AnytrustServerCertificatefield in the secret JSON is ignored.
Read-only by design
This server cannot insert, update, or delete data. Two layers enforce that:
The
run_selecttool lexically rejects anything that isn't a singleSELECTorWITH(CTE) statement — includingINSERT,UPDATE,DELETE,EXEC,MERGE,DROP,ALTER,SELECT INTO, etc.No other tool emits write SQL.
get_procedure_definitionreturns procedure source — it does not run procedures.
Courtesy note: treat the lexical check as UX, not a security boundary. As a courtesy to your future self, configure the credentials you put in Secrets Manager to be a read-only database login — one with
SELECTandVIEW DEFINITIONonly. That way an accidental write (or a future bug here) is rejected by SQL Server itself.
Refreshing AWS credentials without restarting
Because the server uses the default AWS credential chain, an expired SSO session can be recovered without restarting Claude or the MCP server:
Run
aws sso loginin any terminal.Ask Claude to call the
refresh_secrettool.Continue working.
If a tool call fails because of AWS auth, the error message will tell you exactly that and prompt the same flow. Errors are tagged with stable prefixes:
Prefix | Meaning |
| SSO session expired or no credentials available. |
| Principal lacks |
| Secret name / account / region mismatch. |
| Secret JSON is missing fields or malformed. |
| Could not reach the SQL Server instance. |
| SQL Server returned an error executing the query. |
| The submitted query violated the read-only rules. |
Tools
Tool | Purpose |
| User schemas in the database. |
| Tables, optionally filtered by schema. |
| Columns, types, nullability, identity, PK, defaults. |
| Indexes on a table (one row per index/column). |
| Outgoing FKs from a table. |
| Views, optionally filtered by schema. |
| View source SQL. |
| Stored procedures, optionally filtered by schema. |
| Procedure source SQL (does not execute). |
|
|
| Single SELECT/CTE, capped at |
| Re-fetch the secret and reconnect. |
Local development
npm install
npm run build
# point your .claude.json command at the local build:
# "command": "node",
# "args": ["/absolute/path/to/mssql-mcp/dist/index.js"]Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceA read-only MCP server for SQL Server database introspection that enables Claude to explore and query databases via tools like listing objects and executing SELECT queries.Last updated201MIT
- Alicense-qualityDmaintenanceAn MCP server that connects AI assistants to Microsoft SQL Server databases, enabling schema exploration and read-only queries safely.Last updated2964MIT
- Alicense-qualityCmaintenanceRead-only SQL Server MCP server enabling safe database queries, table listing, and schema inspection with built-in security protections.Last updatedMIT
- Alicense-qualityBmaintenanceMCP server for safely exposing SQL Server database capabilities to LLM clients, with read-only mode, security features, and observability.Last updated28MIT
Related MCP Connectors
Official Microsoft MCP Server to query Microsoft Entra data using natural language
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
GibsonAI MCP server: manage your databases with natural language
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dhipskind253/mssql-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server