dameng-mcp-server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@dameng-mcp-serverlist all tables in the database"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
DaMeng MCP Server
达梦数据库 的 MCP (Model Context Protocol) 实现,支持在 AI 助手中直接操作达梦数据库。
功能特性
执行 SQL 查询
列出数据库表
描述表结构
获取数据库模式信息
支持连接池管理
完整的输入验证
快速开始
安装
使用 npm 全局安装:
npm install -g dameng-mcp-server或使用 npx(无需安装):
npx dameng-mcp-server配置
创建 .env 文件并配置数据库连接信息:
cp .env.example .env编辑 .env 文件:
DAMENG_HOST=localhost
DAMENG_PORT=5236
DAMENG_USER=SYSDBA
DAMENG_PASSWORD=your_password
DAMENG_SCHEMA=SYSDBA
DAMENG_POOL_SIZE=10启动
dameng-mcp-server在 Trae IDE 中使用
打开 MCP 设置
手动添加 MCP
使用以下配置:
{
"mcpServers": {
"dameng-mcp-server": {
"command": "npx",
"args": ["dameng-mcp-server"],
"env": {
"DAMENG_HOST": "localhost",
"DAMENG_PORT": "5236",
"DAMENG_USER": "SYSDBA",
"DAMENG_PASSWORD": "your_password",
"DAMENG_SCHEMA": "SYSDBA",
"DAMENG_POOL_SIZE": "10"
}
}
}
}MCP 工具
execute_sql
执行 SQL 查询并返回结果。
参数:
参数 | 类型 | 必需 | 说明 |
sql | string | 是 | 要执行的 SQL 语句 |
示例:
{
"sql": "SELECT * FROM users LIMIT 10"
}list_tables
列出数据库中的所有表。
参数: 无
describe_table
描述指定表的结构,包括列名、数据类型等信息。
参数:
参数 | 类型 | 必需 | 说明 |
table_name | string | 是 | 要描述的表名 |
示例:
{
"table_name": "users"
}get_schema_info
获取数据库模式信息,包括所有表和视图的详细信息。
参数: 无
环境变量
变量 | 必需 | 默认值 | 说明 |
DAMENG_HOST | 是 | - | 数据库主机地址 |
DAMENG_PORT | 是 | - | 数据库端口(默认 5236) |
DAMENG_USER | 是 | - | 数据库用户名 |
DAMENG_PASSWORD | 是 | - | 数据库密码 |
DAMENG_SCHEMA | 是 | - | 数据库模式名 |
DAMENG_POOL_SIZE | 否 | 10 | 连接池大小 |
项目结构
dameng-mcp-server/
├── src/
│ ├── index.js # MCP 服务器主入口
│ └── database.js # 达梦数据库连接模块
├── .github/
│ └── workflows/
│ └── publish.yml # NPM 发布工作流
├── package.json
├── .env.example
├── .npmignore
├── LICENSE
└── README.md技术栈
@modelcontextprotocol/sdk: MCP SDK
dmdb: 达梦数据库 Node.js 驱动
zod: 输入验证
dotenv: 环境变量管理
系统要求
Node.js >= 18.0.0
故障排除
连接失败
确认达梦数据库服务已启动
检查
.env文件中的连接配置验证网络连接和防火墙设置
dmdb 驱动问题
首次使用 dmdb 驱动可能需要编译,确保系统已安装必要的编译工具:
Ubuntu/Debian:
sudo apt-get install build-essentialmacOS:
xcode-select --installWindows: 安装 Visual Studio Build Tools
贡献
欢迎提交 Issue 和 Pull Request!
许可证
作者
相关链接
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/zqeast/dameng-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server