Mssql Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mssql Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
<div align="center"> <img src="./src/img/logo.png" alt="MSSQL Database MCP server logo" width="400"/> </div>
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.
You: "Show me all customers from New York"
Claude: *queries your MSSQL Database database and gives you the answer in plain English*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.
Run the following command in the root folder to install all necessary dependencies:
npm installCompile the project by running:
npm run build.vscode/mcp.json file in your workspace {
"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"
}
}
}
} {
"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"
}
}
}
}
}claude_desktop_config fileReplace 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"
}
}
}
}my-server.database.windows.net)"true" to restrict to read-only operations, "false" for full accessargs to point to your actual project location.30 if not set."true" to trust self-signed server certificates (useful for development or when connecting to servers with self-signed certs). Defaults to "false".You can find sample configuration files in the src/samples/ folder:
claude_desktop_config.json - For Claude Desktopvscode_agent_config.json - For VS Code AgentOnce configured, you can interact with your database using natural language:
READONLY: "true" in production environments if you only need read accessYou 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!
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.