This MCP server implementation provides SQL Server integration capabilities for Windsurf IDE. Developed by MCPSqlServer Contributors, it offers tools for database schema exploration, query execution, and stored procedure management. The server uses a JSON-RPC protocol for communication and supports features like database switching, table inspection, and column metadata retrieval. It's designed for use cases requiring AI assistants to interact with SQL Server databases, such as natural language querying of relational data or AI-driven database analysis.
아직 리뷰가 없습니다. 첫 번째 리뷰를 작성해 보세요!
대화에 참여하려면 로그인하세요
Connect to a SQL Server using a connection string. Parameters: connectionString (string)
List all databases available on the connected SQL Server. Parameters: none
List all tables in a specified database. Parameters: database (string)
Get the columns of a specified table in a specified database. Parameters: database (string), schema (string), table (string)
List all stored procedures in a specified database. Parameters: database (string)
Execute a SQL query on a specified database. Parameters: database (string), query (string), parameters (object)
Execute a system query on the SQL Server. Parameters: query (string), parameters (object)
Execute a stored procedure in a specified database. Parameters: database (string), schema (string), procedure (string), parameters (object)