mssql-mcp
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-mcpShow me all customers from New York"
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 Database MCP Server
What is this? 🤔
This is a server that lets your LLMs (like Claude) talk directly to your MSSQL Database data! Think of it as a friendly translator that sits between your AI assistant and your database, making sure they can chat securely and efficiently.
Quick Example
You: "Show me all customers from New York"
Claude: *queries your MSSQL Database database and gives you the answer in plain English*Related MCP server: MSSQL Database MCP Server
How Does It Work? 🛠️
This server leverages the Model Context Protocol (MCP), a versatile framework that acts as a universal translator between AI models and databases. It supports multiple AI assistants including Claude Desktop and VS Code Agent.
What Can It Do? 📊
Run MSSQL Database queries by just asking questions in plain English
Create, read, update, and delete data
Manage database schema (tables, indexes)
Secure connection handling
Real-time data interaction
Quick Start 🚀
Prerequisites
Node.js 14 or higher
Claude Desktop or VS Code with Agent extension
Set up project
Install Dependencies
Run the following command in the root folder to install all necessary dependencies:npm installBuild the Project
Compile the project by running:npm run build
Configuration Setup
Option 1: VS Code Agent Setup
Install VS Code Agent Extension
Open VS Code
Go to Extensions (Ctrl+Shift+X)
Search for "Agent" and install the official Agent extension
Create MCP Configuration File
Create a
.vscode/mcp.jsonfile in your workspaceAdd the following configuration:
{ "servers": { "mssql-nodejs": { "type": "stdio", "command": "node", "args": ["q:\\Repos\\SQL-AI-samples\\MssqlMcp\\Node\\dist\\index.js"], "env": { "SERVER_NAME": "your-server-name.database.windows.net", "DATABASE_NAME": "your-database-name", "READONLY": "false" } } } }Alternative: User Settings Configuration
Open VS Code Settings (Ctrl+,)
Search for "mcp"
Click "Edit in settings.json"
Add the following configuration:
{
"mcp": {
"servers": {
"mssql": {
"command": "node",
"args": ["C:/path/to/your/Node/dist/index.js"],
"env": {
"SERVER_NAME": "your-server-name.database.windows.net",
"DATABASE_NAME": "your-database-name",
"READONLY": "false"
}
}
}
}
}Restart VS Code
Close and reopen VS Code for the changes to take effect
Verify MCP Server
Open Command Palette (Ctrl+Shift+P)
Run "MCP: List Servers" to verify your server is configured
You should see "mssql" in the list of available servers
Option 2: Claude Desktop Setup
Open Claude Desktop Settings
Navigate to File → Settings → Developer → Edit Config
Open the
claude_desktop_configfile
Add MCP Server Configuration Replace the content with the configuration below, updating the path and credentials:
{ "mcpServers": { "mssql": { "command": "node", "args": ["C:/path/to/your/Node/dist/index.js"], "env": { "SERVER_NAME": "your-server-name.database.windows.net", "DATABASE_NAME": "your-database-name", "READONLY": "false" } } } }Restart Claude Desktop
Close and reopen Claude Desktop for the changes to take effect
Configuration Parameters
SERVER_NAME: Your MSSQL Database server name (e.g.,
my-server.database.windows.net)DATABASE_NAME: Your database name
READONLY: Set to
"true"to restrict to read-only operations,"false"for full accessPath: Update the path in
argsto point to your actual project location.CONNECTION_TIMEOUT: (Optional) Connection timeout in seconds. Defaults to
30if not set.TRUST_SERVER_CERTIFICATE: (Optional) Set to
"true"to trust self-signed server certificates (useful for development or when connecting to servers with self-signed certs). Defaults to"false".
Sample Configurations
You can find sample configuration files in the src/samples/ folder:
claude_desktop_config.json- For Claude Desktopvscode_agent_config.json- For VS Code Agent
Usage Examples
Once configured, you can interact with your database using natural language:
"Show me all users from New York"
"Create a new table called products with columns for id, name, and price"
"Update all pending orders to completed status"
"List all tables in the database"
Security Notes
The server requires a WHERE clause for read operations to prevent accidental full table scans
Update operations require explicit WHERE clauses for security
Set
READONLY: "true"in production environments if you only need read access
You should now have successfully configured the MCP server for MSSQL Database with your preferred AI assistant. This setup allows you to seamlessly interact with MSSQL Database through natural language queries!
This server cannot be deployed
Maintenance
Related MCP Connectors
- dataOAuthco.thinair
PostgreSQL, MySQL, and SQL Server in one session. 26 read-only MCP tools for AI agents.
Ask data questions in natural language. Get SQL, insights, and charts from your databases.
Ask questions in plain language, get answers from your business database. No SQL required.
- mcpOAuthcom.gibsonai
GibsonAI MCP server: manage your databases with natural language
Related MCP Servers
- AlicenseAqualityCmaintenanceEnables AI assistants to interact with Microsoft SQL Server databases through query execution, schema discovery, CRUD operations, stored procedures, and data export with built-in safety controls.18Apache 2.0
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to securely interact with Microsoft SQL Server databases to query data, inspect schemas, and retrieve metadata with read-only operations by default and optional write capabilities.1MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to interact with Microsoft SQL Server databases through a standardized interface. Supports executing SQL queries, browsing database schemas, and viewing table data with flexible authentication options for both local and Azure SQL databases.6MIT
- 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.14628 npm13MIT