MCPSqlServer

MCPSqlServerは、C#を使用してSQL Serverと連携するためのライブラリです。データベース操作を簡素化し、CRUD機能を提供します。エラーハンドリングやトランザクション管理もサポートしており、開発者が効率的にデータベースアプリケーションを構築できるように設計されています。

GitHubスター

14

ユーザー評価

未評価

お気に入り

0

閲覧数

17

フォーク

5

イシュー

0

インストール方法
難易度
中級
推定所要時間
10-20

インストール方法

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

追加リソース