
MSSQL On-Premises MCP Server
Supports UIby dnldelarosa
Connect AI assistants to local on-premises SQL Server databases using natural language queries.
What it does
Enables AI models to interact with on-premises SQL Server instances. It removes cloud-specific dependencies (Azure AD), allowing direct connectivity to local databases using SQL Server authentication.
Tools
ReadData: Execute SELECT queries to retrieve dataInsertData: Add new records to tablesUpdateData: Modify existing database recordsCreateTable: Define new table schemasCreateIndexTool: Optimize query performance with indexesDescribeTable: Get schema information for a specific tableListTable: List all tables in the current database
Installation
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"mssql-onpremises": {
"command": "node",
"args": ["C:/path/to/your/project/dist/index.js"],
"env": {
"SERVER_NAME": "localhost",
"DATABASE_NAME": "your-database-name",
"DB_USER": "your-sql-username",
"DB_PASSWORD": "your-sql-password",
"READONLY": "false",
"TRUST_SERVER_CERTIFICATE": "true"
}
}
}
}
Supported hosts
- Claude Desktop
- VS Code Copilot
Quick install
npm install mssql-mcp-server-onpremisesInformation
- Pricing
- free
- Published
- 5/3/2026





