MSSQL MCP Server
A Model Context Protocol (MCP) server for connecting to Microsoft SQL Server databases. This server provides tools for executing SQL queries and managing database connections.
Version Notice: This project has been upgraded to use Model Context Protocol SDK 1.9.0. See UPGRADE.md for details.
Installation
Installing via Smithery
To install MSSQL MCP Server for Claude Desktop automatically via Smithery:
Manual Installation
Related MCP server: MySQL-MCP
Usage
Add the server to your MCP settings configuration file:
Tools
query
Execute a SQL query on a MSSQL database.
Parameters
connectionString(string, optional): Full connection string (alternative to individual parameters)host(string, optional): Database server hostnameport(number, optional): Database server port (default: 1433)database(string, optional): Database name (default: master)username(string, optional): Database usernamepassword(string, optional): Database passwordquery(string, required): SQL query to executeencrypt(boolean, optional): Enable encryption (default: false)trustServerCertificate(boolean, optional): Trust server certificate (default: true)
Either connectionString OR (host + username + password) must be provided.
Example
Running the Server
Local Development
Using Docker
Testing
Security
The server includes safeguards against dangerous SQL operations:
Blocks potentially harmful commands like DROP, TRUNCATE, ALTER, CREATE, EXEC, etc.
Validates all input parameters and database names
Sets reasonable limits on query length and timeout
Uses connection pooling for better performance and security
License
MIT