
SP Database MCP Server
A Model Context Protocol server that provides real-time database schema information to AI assistants, supporting both low-code system schema queries and traditional database metadata queries.
README
SP Database MCP Server
一个用于实时获取数据库表结构信息的 Model Context Protocol (MCP) 服务器。通过 MCP 协议,可以让 AI 助手实时获取数据库的表结构信息,解决信息不及时更新的问题。
功能特性
- 智能表结构查询:支持两种查询模式
- 低代码系统 Schema 查询:通过
da_logic_entity
和da_entity_attribute
表获取详细的业务字段信息 - 传统数据库元数据查询:直接从数据库系统表获取技术字段信息
- 低代码系统 Schema 查询:通过
- 🔄 实时获取数据库表结构信息
- 📊 支持多种数据库类型 (MySQL, PostgreSQL)
- 🚀 通过 API 接口动态获取最新的表字段信息
- 🔍 支持表信息查询和字段详情获取
- 📝 自动生成表结构文档
安装
从 PyPI 安装(推荐)
# 安装(包含 PostgreSQL 支持)
pip install "sp-database-mcp[postgresql]"
# 或使用 uv
uv add "sp-database-mcp[postgresql]"
# 安装特定数据库支持
pip install sp-database-mcp[mysql]
pip install sp-database-mcp[postgresql]
从源码安装
# 克隆仓库
git clone https://github.com/alexliu/sp-enterprise-mcp.git
cd sp-enterprise-mcp
# 安装依赖
uv sync
# 或使用 pip
pip install -e .
配置
环境变量
# 数据库连接配置
DATABASE_URL="postgresql://user:password@host:port/database"
# 或者
DATABASE_URL="mysql://user:password@host:port/database"
# API 接口配置(如果通过 API 获取)
API_BASE_URL="http://your-api-server.com"
MCP 客户端配置
Claude Desktop 配置(使用 uvx)
{
"mcpServers": {
"sp-database-mcp": {
"command": "uvx",
"args": ["sp-database-mcp[postgresql]"],
"env": {
"DATABASE_URL": "postgresql://user:password@host:port/database"
}
}
}
}
Windsurf 配置
{
"mcpServers": {
"sp-database-mcp": {
"command": "uvx",
"args": ["sp-database-mcp[postgresql]"],
"env": {
"DATABASE_URL": "postgresql://user:password@host:port/database"
}
}
}
}
开发版本配置
如果你想使用本地开发版本,可以使用以下配置:
{
"mcpServers": {
"sp-database-mcp-dev": {
"command": "uv",
"args": [
"--directory",
"/path/to/sp-database-mcp",
"run",
"python",
"-m",
"sp_database_mcp.server"
],
"env": {
"DATABASE_URL": "postgresql://user:password@host:port/database"
}
}
}
}
使用方式
启动 MCP 服务器
uv run sp-database-mcp[postgresql]
使用示例
查询表结构信息
现在支持两种查询模式,系统会自动优先使用低代码系统的 schema 查询:
# 通过 MCP 工具查询表信息
# 输入:请获取 activity_node 表的详细信息
# 输出示例(低代码系统 schema 查询结果):
# activity_node 表结构信息
#
# **表说明**: 活动
#
# ## 字段信息
#
# | 字段名 | 类型 | 可空 | 默认值 | 主键 | 说明 |
# |--------|------|------|--------|------|---------|
# | id | BIGINT | 否 | - | 是 | 主键ID |
# | name | VARCHAR(1000) | 是 | - | 否 | 活动名称 |
# | activity_code | VARCHAR(64) | 是 | - | 否 | 活动编码 |
# | business_object_id | BIGINT | 是 | - | 否 | 业务对象id |
# | ... | ... | ... | ... | ... | ... |
查询模式说明
-
低代码系统 Schema 查询(优先)
- 查询
da_logic_entity
表获取实体基本信息 - 查询
da_entity_attribute
表获取字段详细信息 - 提供中文字段名、业务描述、数据类型等丰富信息
- 支持外键关系解析
- 查询
-
传统数据库元数据查询(回退)
- 当低代码系统查询失败时自动回退
- 直接从数据库系统表获取技术字段信息
- 提供基础的字段类型、约束等信息
项目结构
sp-database-mcp/
├── sp_database_mcp/
│ ├── __init__.py
│ ├── server.py # MCP 服务器主文件
│ ├── database.py # 数据库连接和查询
│ ├── api_client.py # API 客户端
│ └── models.py # 数据模型
├── tests/
├── .env.example
├── pyproject.toml
└── README.md
开发
# 安装开发依赖
uv sync --dev
# 运行测试
uv run pytest
# 代码格式化
uv run black .
uv run isort .
# 类型检查
uv run mypy .
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.