MsSqlMCP

MsSqlMCP

3.3

If you are the rightful owner of MsSqlMCP and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

MsSqlMCP is a Model Context Protocol server designed to query SQL Server database schema, including tables, columns, and relationships.

MsSqlMCP

MCP to query SQL Server database schema, such as tables, columns, and relationships

Prerequisites:

  • .NET 9
  • SQL

Configuration

To configure Copilot in Visual Studio Code, add the MCP server configuration to the settings.json file:

"mcp": {
    "inputs": [],
    "servers": {
        "MsSqlMCP": {
            "type": "stdio",
            "command": "dotnet",
            "args": [
                "run",
                "--project",
                "c:\\{path of repository}\\MsSqlMCP\\MsSqlMCP.csproj"
            ]
        }
    }
}