Skip to main content

Jewei MSSQL MCP 服务器

项目简介

这是一个连接mssql的MCP服务器,专门用于执行Microsoft SQL Server的数据查询和表结构查询操作。该服务器提供了一系列工具,使客户端能够方便地与SQL Server数据库进行交互。

功能特点

  • 数据查询:执行SQL查询并返回结果集
  • 表结构查询:获取数据库表的结构信息
  • 简单易用:通过MCP协议提供标准化的接口
  • 高效可靠:优化的数据库连接管理

MCP 配置

本项目支持通过多种客户端配置 MCP 服务器,以便与各种 IDE 或工具集成。以下是一些常见客户端的配置示例:

Windsurf / Cursor / Claude

对于基于 Windsurf 框架的客户端(如 Cursor 和 Claude),您可以在 ~/.codeium/windsurf/mcp_config.json 文件中配置 MCP 服务器。以下是一个示例配置:

{
  "mcpServers": {
    "jewei-mssql": {
      "disabled": false,
      "command": "uvx",
      "args": [
        "jewei-mssql-mcp-server"
      ],
      "env": {
        "DB_HOST": "your_db_host",
        "DB_USER": "your_db_user",
        "DB_PASSWORD": "your_db_password",
        "DB_NAME": "your_db_name",
        "DB_PORT": "your_db_port"
      }
    }
  }
}

请将 your_db_host, your_db_user, your_db_password, 和 your_db_name 替换为您的实际数据库连接信息。

Cline

对于 Cline 客户端,您可以在其配置文件中添加类似的 MCP 服务器配置。具体的配置方式请参考 Cline 的官方文档。通常,您需要指定服务器的名称、命令、参数和环境变量。

// Cline 配置文件示例 (具体格式请参考 Cline 文档)
{
  "mcpServers": {
    "jewei-mssql": {
      "command": "uvx",
      "args": [
        "jewei-mssql-mcp-server"
      ],
      "env": {
        "DB_HOST": "your_db_host",
        "DB_USER": "your_db_user",
        "DB_PASSWORD": "your_db_password",
        "DB_NAME": "your_db_name",
        "DB_PORT": "your_db_port"
      }
    }
  }
}

请将示例中的占位符替换为您的实际数据库连接信息,并根据 Cline 的具体配置格式进行调整。

其他方式安装与配置

前提条件

  • Python 3.7+
  • 访问Microsoft SQL Server的权限
  • FastMCP库

安装步骤

方法一:通过PyPI安装(推荐)

pip install jewei-mssql-mcp-server

方法二:从源码安装

  1. 克隆本仓库

    git clone [仓库URL]
    cd jewei-mssql-mcp-server
    
  2. 安装依赖

    pip install -r requirements.txt
    
  3. 配置数据库连接

    • 创建配置文件或设置环境变量(具体配置方法见下文)

使用方法

启动服务器

python server.py

默认情况下,服务器使用STDIO传输机制。如需使用HTTP传输,可修改server.py中的相关配置。

客户端调用示例

使用任何支持MCP协议的客户端都可以连接到此服务器。以下是一个基本的调用示例:

from fastmcp import Client

# 连接到MCP服务器
client = Client("http://localhost:9000")

# 执行SQL查询
result = client.call("query_sql", sql="SELECT * FROM users LIMIT 10")
print(result)

# 获取表结构
structure = client.call("get_table_structure", table_name="users")
print(structure)

配置选项

服务器配置可以通过以下方式设置:

  1. 环境变量
  2. 配置文件
  3. 直接在代码中设置
  4. 通过uv配置MCP服务器

使用uv安装和管理依赖

本项目支持使用uv(一个快速的Python包管理器)来安装和管理依赖。使用uv可以显著提高包安装速度并确保环境一致性。

首先安装uv:

# 安装uv
pip install uv

然后使用uv创建虚拟环境并安装依赖:

# 创建虚拟环境
uv venv

# 激活虚拟环境
# Windows
.venv\Scripts\activate
# Linux/macOS
source .venv/bin/activate

# 使用uv安装依赖
uv pip install -r requirements.txt

安装完成后,您可以通过以下方式启动MCP服务器:

python server.py

您也可以在~/.codeium/windsurf/mcp_config.json文件中配置服务器,以便与Cascade集成。本项目支持使用uvx命令来配置MCP服务器:

{
  "mcpServers": {
    "jewei-mssql": {
      "disabled": false,
      "command": "uvx",
      "args": [
        "jewei-mssql-mcp-server"
      ],
      "env": {
        "DB_HOST": "your_db_host",
        "DB_USER": "your_db_user",
        "DB_PASSWORD": "your_db_password",
        "DB_NAME": "your_db_name"
      }
    }
  }
}

其中,uvx是用于运行已安装的Python包的命令,jewei-mssql-mcp-server是包名。这种方式可以确保使用正确的环境运行MCP服务器。

主要配置项

主要配置项包括:

  • 数据库连接信息(服务器地址、用户名、密码、数据库名)
  • 服务器监听地址和端口
  • 日志级别

贡献指南

欢迎贡献代码或提出改进建议!请遵循以下步骤:

  1. Fork本仓库
  2. 创建功能分支 (git checkout -b feature/amazing-feature)
  3. 提交更改 (git commit -m 'Add some amazing feature')
  4. 推送到分支 (git push origin feature/amazing-feature)
  5. 创建Pull Request

许可证

[指定许可证类型]

联系方式

如有问题或建议,请联系[联系人信息]。

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

iflow_mcp_jewei_jewei_mssql_mcp_server-0.1.6.tar.gz (10.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file iflow_mcp_jewei_jewei_mssql_mcp_server-0.1.6.tar.gz.

File metadata

  • Download URL: iflow_mcp_jewei_jewei_mssql_mcp_server-0.1.6.tar.gz
  • Upload date:
  • Size: 10.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for iflow_mcp_jewei_jewei_mssql_mcp_server-0.1.6.tar.gz
Algorithm Hash digest
SHA256 544674d0ca5ace2e24d93c449b798aa1e7a01feeecd5646ecb6256d6b010790e
MD5 aed13628eb9fa6e83a96e20f0daf5fcd
BLAKE2b-256 d18b660f3aee9db70f41bac615928e016b4490927f0672f168b6b695b13bbf2d

See more details on using hashes here.

File details

Details for the file iflow_mcp_jewei_jewei_mssql_mcp_server-0.1.6-py3-none-any.whl.

File metadata

  • Download URL: iflow_mcp_jewei_jewei_mssql_mcp_server-0.1.6-py3-none-any.whl
  • Upload date:
  • Size: 12.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for iflow_mcp_jewei_jewei_mssql_mcp_server-0.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 a91ba45b0591176a3ac481e7190e93aadd87556b2c23f9c0522258b53df316a6
MD5 8b9fdc1b712dcd5d120616f27df07659
BLAKE2b-256 ee1f679f73c53d561d0be12714c88b498de8830c121f1e73431600d39d4dbcfc

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.1.6 This release

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page