Skip to content

Commit e7e3485

Browse files
author
yanbei.pyb@alibaba-inc.com
committed
readme
1 parent 7ce3bbe commit e7e3485

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Alibaba Cloud DMS MCP Server
2+
3+
A Model Context Protocol server for Alibaba Cloud DMS(Data Management).
4+
5+
This server facilitates unified metadata access and cross-engine data querying for large language models working with diverse database ecosystems.
6+
7+
---
8+
9+
## Overview
10+
**DMS MCP Server** provides:
11+
- Standardized interface for database metadata operations
12+
13+
---
14+
15+
## Configuration
16+
Download from Github
17+
```shell
18+
git clone https://github.com/aliyun/alibabacloud-dms-mcp-server.git
19+
```
20+
Add the following configuration to the MCP client configuration file:
21+
```json5
22+
"mcpServers": {
23+
"dms-mcp-server": {
24+
"command": "uv",
25+
"args": [
26+
"--directory",
27+
"/path/to/alibabacloud-dms-mcp-server/src/alibabacloud_dms_mcp_server",
28+
"run",
29+
"server.py"
30+
],
31+
"env": {
32+
"ALIBABA_CLOUD_ACCESS_KEY_ID": "access_id",
33+
"ALIBABA_CLOUD_ACCESS_KEY_SECRET": "access_key",
34+
"ALIBABA_CLOUD_SECURITY_TOKEN": "sts_security_token" // optional, required when using STS Token
35+
}
36+
}
37+
}
38+
```

0 commit comments

Comments
 (0)