MSSQL MCP Server
Used for data validation and settings management in the MSSQL MCP server implementation
Powers the MSSQL MCP server implementation, allowing for database operations and business intelligence capabilities
Click on "Deploy 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 MCP Servershow me the top 10 customers by total sales this month"
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 Server
Overview
MSSQL MCP Server, provides database interaction and business intelligence capabilities. This server enables running SQL queries, analyzing business data, and automatically generating business insight memos.
Refer to the official website's SQLite for modifications to adapt to MSSQL.
Built on the official MCP Python SDK (FastMCP), supporting the MCP 2025-06-18 specification: structured tool output (structuredContent), tool annotations, resource templates, and elicitation-based write confirmation.
Highlights:
Multi-database — mount dev/staging/prod connections in one server; every tool takes an optional
databaseparameter, each connection with its ownreadonly/query_timeout/max_rows/confirm_writessettingsStored procedures — list signatures and execute procedures with full multi-result-set harvesting
Resource templates —
schema://{database}/{schema}/{table}serves table structures on demand without burning tool-schema tokens every turnSafety guardrails — SQL whitelisting, read-only mode, row limits, query timeouts, optional elicitation confirmation before writes
Related MCP server: SQLite MCP Server
Components
read_queryExecute SELECT / WITH queries with structured output (columns / rows / row_count / truncated), limited by
max_rows
write_queryExecute INSERT, UPDATE, DELETE or MERGE queries, returns affected row count
create_tableCreate new tables in the database
list_tablesGet a list of all tables in the database (schema + table name)
list_viewsGet a list of all views in the database
describe_tableView full schema for a specific table (type, nullable, default, primary key, identity, foreign keys, indexes)
list_databasesList configured database connections (name, readonly, is_default)
list_proceduresList stored procedures with parameter signatures
execute_procedureExecute a stored procedure (supports multiple result sets)
append_insightAdd new business insights to the memo resource
Resources
memo://insights— a living business-insights memo, updated in real time viaappend_insightschema://{schema}/{table}— table structure of the default database (JSON: columns / PK / identity / FKs / indexes)schema://{database}/{schema}/{table}— table structure of a named database connection
Resource templates are fetched on demand: unlike tool schemas they are not resent to the LLM every turn, which keeps long conversations lean.
Security
All SQL goes through static validation before execution:
read_queryonly accepts a single SELECT / WITH statement and rejects any write or EXEC keyword (blocks e.g.WITH c AS (...) DELETE FROM t)write_queryuses a whitelist (INSERT / UPDATE / DELETE / MERGE only);EXEC,DROP,TRUNCATE,ALTERare rejectedMulti-statement batches (separated by
;) are rejectedtrusted_connection: trueswitches to Windows integrated auth (the connection string usesTrusted_Connection=yes, no username/password needed);falsekeeps the configured SQL account loginreadonly: truedisables all write operations, including stored procedures (they are black boxes that may write)Stored procedure names are strictly validated as 1–3 dotted identifier parts before being embedded into
{CALL ...}Results are truncated at
max_rowsrows; queries are aborted afterquery_timeoutsecondsWith
confirm_writes: true, all state-changing operations (write_querywrites,create_table,execute_procedure) first ask the user for confirmation via MCP elicitation⚠️ Important limitation: the confirmation relies on the client implementing the MCP Elicitation protocol. Clients without elicitation support (e.g. TraeWork / Cursor ...) skip the confirmation and execute writes directly — meaning
confirm_writes: trueprovides no protection on such clients (a skip warning is logged server-side). For reliable write protection on any client, usereadonly: trueinstead (hard-blocks all writes regardless of client capabilities)Comments and string literals are stripped before validation, so they cannot be used to bypass checks
Demo
The database table is as follows. The column names are not standardized, and AI will match them on its own. Errors during SQL execution will self correct.

The following is the demo.

Operating environment
Python 3.10+Packagespyodbc>=4.0.39
pydantic>=2.0.0
mcp>=1.9.0,<2.0.0
ODBC Driver 17 / 18 for SQL Server
Usage
Install packages
From source:
git clone <this repo>
CD /d ~/mssql-mcp
pip install -r requirements.txt Or as a package (pip >= 21.3):
pip install .config
Create config.json. Single-database format:
{
"database": {
"driver": "ODBC Driver 17 for SQL Server",
"server": "server ip",
"database": "db name",
"username": "username",
"password": "password",
"trusted_connection": false,
"readonly": false,
"query_timeout": 30,
"max_rows": 200,
"confirm_writes": false
},
"server": {
"name": "mssql-manager",
"version": "0.2.0"
}
}Multi-database format (recommended — each connection has independent settings, e.g. prod stays read-only):
{
"databases": {
"default": { "server": "localhost", "database": "dev_db", "...": "..." },
"prod": { "server": "10.0.0.5", "database": "prod_db", "readonly": true, "...": "..." }
},
"default_database": "default",
"server": { "name": "mssql-manager", "version": "0.2.0" }
}Connection names and the default connection: the keys in databases are the connection names — the LLM passes one of them as the database parameter to switch connections. Keys are arbitrary (you do not have to call one of them default). default_database decides which connection is used when database is not passed, resolved in this order:
If
default_database: "xxx"is explicitly set, use the connection namedxxxOtherwise, if a connection named
defaultexists, use itOtherwise, use the first connection in the dictionary
Recommended: explicitly set default_database and also keep a connection literally named default as a safety net — this way adding new connections (which may end up first in iteration order) won't silently change the default.
Config file lookup order: MSSQL_MCP_CONFIG env var → config.json next to server.py → config.json in the working directory.
Optional fields (per connection):
Field | Default | Description |
|
| Read-only mode: blocks all write operations (incl. procedures) |
|
| Query timeout in seconds |
|
| Max rows per result set; extra rows are truncated |
|
| Ask for user confirmation (elicitation) before all state-changing operations (writes / CREATE TABLE / procedures); requires client Elicitation support — unsupported clients (e.g. TraeWork / Cursor) execute directly; for hard protection use |
| (none) | ODBC encryption, for Driver 18 ( |
|
| Trust self-signed certificates, useful with Driver 18 |
Environment variables:
Variable | Default | Description |
| (none) | Path to an alternative config file |
|
| Log level ( |
Client Configuration (Claude Desktop / Cursor / Windsurf, etc.)
Mainstream stdio clients (Claude Desktop, Cursor, Windsurf, Cline, etc.) share the same mcpServers JSON format. Take Claude Desktop as an example — for other clients, add the same entry to their MCP config file:
# add to claude_desktop_config.json. Note:use your path
{
"mcpServers": {
"mssql": {
"command": "python",
"args": [
# your path,e.g.:"C:\\mssql-mcp\\src\\server.py"
"~/server.py"
]
}
}
}If installed as a package, the command can simply be mssql-mcp (no args needed).
MCP Inspector
# Note:use your path
npx -y @modelcontextprotocol/inspector python C:\\mssql-mcp\\src\\server.pyRun tests
pip install pytest
python -m pytest tests -qtests/test_validation.py— SQL / procedure-name validation (no database needed)tests/test_config.py— config parsing: legacy single-db compatibility, multi-db, error cases (no database needed)tests/test_integration.py— end-to-end against the database insrc/config.json(writes only touch dedicatedmcp_upgrade_*test objects, cleaned up automatically)
Project Structure
mssql-mcp
├── .git
├── .gitignore
├── LICENSE
├── README.md
├── README_en.md
├── README_zh.md
├── imgs
│ ├── table.png
│ └── demo.gif
├── pyproject.toml (packaging: src/ is installed as the mssql_mcp package)
├── requirements.txt
├── src
│ ├── __init__.py
│ ├── config.json (gitignored, local database config)
│ └── server.py
└── tests
├── test_validation.py
├── test_config.py
└── test_integration.pyLicense
MIT License
This server cannot be deployed
Maintenance
Related MCP Connectors
- RumboOAuthcom.rumboar
Securely query and analyze business data, dashboards, projections, alerts, and knowledge.
Ask questions in plain language, get answers from your business database. No SQL required.
Ask business questions in plain English. Get instant answers from your database, no SQL needed.
Ask data questions in natural language. Get SQL, insights, and charts from your databases.
Related MCP Servers
- -licenseNot gradedqualityAmaintenanceA Model Context Protocol (MCP) server implementation that provides database interaction and business intelligence capabilities through SQLite. This server enables running SQL queries, analyzing business data, and automatically generating business insight memos.90,399MIT
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that provides database interaction capabilities through SQLite, enabling users to run SQL queries, analyze business data, and automatically generate business insight memos.19MIT
- AlicenseAqualityBmaintenanceEnables interaction with Microsoft SQL Server and Azure SQL databases through natural language, supporting queries, schema exploration, stored procedures, and complete database operations with connection pooling and security features.143,162 npm13MIT
- AlicenseBqualityFmaintenanceEnables users to analyze, query, and modernize Microsoft SQL Server databases through natural language, supporting multi-database connections, schema discovery, performance analysis, and legacy system migration planning.332,441 npm2MIT