MCP.so
登录

MCP SQL Server

@dennismartis

关于 MCP SQL Server

暂无概览

基本信息

分类

数据库

运行时

python

传输方式

stdio

发布者

dennismartis

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "sql_mcp_server": {
      "command": "python",
      "args": [
        "mcp_sql_server.py"
      ]
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is MCP SQL Server?

MCP SQL Server is a FastMCP server that exposes Microsoft SQL Server database operations through a conversational AI interface, allowing users to query and manipulate data using natural language.

How to use MCP SQL Server?

Install Python dependencies (pip install pyodbc asyncio fastmcp), ensure Microsoft SQL Server and ODBC Driver 17 for SQL Server are available, then configure the connection parameters (SERVER and DATABASE) in the script. Run the server with python mcp_sql_server.py.

Key features of MCP SQL Server

  • Execute SQL queries and view results
  • List available tables in the database
  • Describe table structure with column names and data types
  • Execute INSERT, UPDATE, DELETE operations
  • List all ODBC drivers on the system
  • Display database information and server version

Use cases of MCP SQL Server

  • Interact with SQL Server databases through a conversational AI interface
  • Quickly explore database schema without manual SQL queries
  • Perform CRUD operations via natural language instructions
  • Retrieve server and database metadata for administration

FAQ from MCP SQL Server

What are the system requirements for MCP SQL Server?

Python 3.7+, pyodbc, asyncio, FastMCP, Microsoft SQL Server, and ODBC Driver 17 for SQL Server.

How does MCP SQL Server handle database connections?

The server uses Windows Authentication ("Trusted_Connection=yes") and manages the connection via a lifecycle context manager that handles setup and teardown.

What should I do if I get a connection error?

Verify the SQL Server instance name, ensure the server is running, and confirm that ODBC Driver 17 for SQL Server is installed.

Does MCP SQL Server support any authentication besides Windows Authentication?

The README only documents Windows Authentication; no other authentication methods are mentioned.

How does MCP SQL Server prevent blocking during database operations?

Database operations run in a separate thread using asyncio.get_event_loop().run_in_executor() to avoid blocking the main event loop.

评论

数据库 分类下的更多 MCP 服务器