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
IntermediateEstimated 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:
```jsonAdditional Resources
Author Information
3
Followers
2
Repositories
0
Gists
0
Total Contributions
Related MCPs
mcp-sqlite-bun-server
17
mcp-sqlite-bun-server is a server solution for SQLite databases built with TypeScript. This project simplifies data management and access, enabling efficient data processing. It particularly allows database operations through a RESTful API, providing a user-friendly interface for developers.