Mssql Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mssql Mcp Server (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.
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.
npm install mssql-mcp-serverAdd the server to your MCP settings configuration file:
{
"mcpServers": {
"mssql": {
"command": "mssql-mcp-server",
"env": {
"MSSQL_CONNECTION_STRING": "Server=localhost;Database=master;User Id=sa;Password=yourpassword;",
// Or individual connection parameters:
"MSSQL_HOST": "localhost",
"MSSQL_PORT": "1433",
"MSSQL_DATABASE": "master",
"MSSQL_USER": "sa",
"MSSQL_PASSWORD": "yourpassword",
"MSSQL_ENCRYPT": "false",
"MSSQL_TRUST_SERVER_CERTIFICATE": "true"
}
}
}
}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
const result = await use_mcp_tool({
server_name: 'mssql',
tool_name: 'query',
arguments: {
host: 'localhost',
username: 'sa',
password: 'yourpassword',
query: 'SELECT * FROM Users',
},
});# Install dependencies
npm install
# Run in development mode
npm run dev
# Build
npm run build
# Run tests
npm test
# Run linter
npm run lint
# Format code
npm run formatMIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.