MCPSqlServer

SQL Server MCP Server for Windsurf IDE - A standalone MCP server providing SQL Server integration capabilities

GitHub Stars

14

User Rating

Not Rated

Favorites

0

Views

27

Forks

5

Issues

0

Installation
Difficulty
Intermediate
Estimated Time
10-20 minutes

Installation

1Build the project:
cmd
dotnet build
2Configure the application:
- Copy appsettings.example.json to appsettings.json - Update the connection string and other settings in appsettings.json with your SQL Server details
json
   {
     "ConnectionStrings": {
       "DefaultConnection": "Server=your-server;Database=master;User ID=your-username;Password=your-password;TrustServerCertificate=True"
     },
     "LogPath": "C:\\Path\\To\\Your\\LogDirectory\\",
     "DebugMode": "false"
   }
   
3Configure the MCP server in Windsurf:
- Copy the contents of windsurf_mcp_config.json to your Windsurf MCP configuration file (typically located at ~/.codeium/windsurf/mcp_config.json) - Update the path to point to your built executable: ```json

Additional Resources