vmoo-mcp-database-server 1.1.0 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -15,9 +15,6 @@ npx vmoo-mcp-database-server@latest --env=dev
15
15
 
16
16
  # 生产环境
17
17
  npx vmoo-mcp-database-server@latest --env=prod
18
-
19
- # 配送测试站
20
- npx vmoo-mcp-database-server@latest --env=deliver
21
18
  ```
22
19
 
23
20
  ### 在Augment中配置
@@ -32,10 +29,6 @@ npx vmoo-mcp-database-server@latest --env=deliver
32
29
  "vmoo-database-prod": {
33
30
  "command": "npx",
34
31
  "args": ["vmoo-mcp-database-server@latest", "--env=prod"]
35
- },
36
- "vmoo-database-deliver": {
37
- "command": "npx",
38
- "args": ["vmoo-mcp-database-server@latest", "--env=deliver"]
39
32
  }
40
33
  }
41
34
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vmoo-mcp-database-server",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "description": "VMOO数据库MCP服务器集合 - 支持开发和生产环境的安全数据库访问",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -1,35 +1,25 @@
1
1
  {
2
- "server": {
3
- "name": "vmoo-database-deliver-server",
4
- "version": "1.0.0",
5
- "description": "VMOO配送测试站MCP服务器 - 支持配送系统的数据库访问和管理"
6
- },
7
2
  "database": {
8
3
  "host": "118.25.190.11",
9
4
  "port": 3306,
10
5
  "user": "ceshi_deliver",
11
6
  "password": "Gf8G3pEnm7pjRMGE",
12
7
  "database": "ceshi_deliver",
13
- "charset": "utf8mb4",
14
- "timezone": "+08:00",
15
- "acquireTimeout": 60000,
16
- "timeout": 60000,
17
- "reconnect": true,
18
- "connectionLimit": 10
8
+ "charset": "utf8mb4"
19
9
  },
20
10
  "security": {
21
11
  "level": "development",
22
- "allowedOperations": ["SELECT", "INSERT", "UPDATE", "SHOW", "DESCRIBE", "EXPLAIN"],
23
- "blockedOperations": ["DELETE", "DROP", "TRUNCATE", "ALTER TABLE DROP"],
24
- "queryTimeout": 30000,
25
- "maxQueryLength": 10000,
26
- "autoLimit": true,
27
- "defaultLimit": 100
12
+ "description": "配送测试站:允许查询、插入、更新,禁止删除操作",
13
+ "features": [
14
+ "SELECT、INSERT、UPDATE、ALTER TABLE、CREATE TABLE",
15
+ "禁止DELETE、DROP TABLE、DROP DATABASE",
16
+ "自动LIMIT限制",
17
+ "时区自动转换"
18
+ ]
28
19
  },
29
- "features": {
30
- "timeZoneConversion": true,
31
- "autoAnonymization": false,
32
- "queryLogging": true,
33
- "performanceMonitoring": true
20
+ "server": {
21
+ "name": "vmoo-database-deliver-server",
22
+ "version": "1.0.0",
23
+ "description": "配送测试站数据库服务器"
34
24
  }
35
25
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vmoo-database-deliver-server",
3
3
  "version": "1.0.0",
4
- "description": "VMOO配送测试站MCP服务器",
4
+ "description": "VMOO配送测试站数据库MCP服务器",
5
5
  "type": "module",
6
6
  "main": "server.js",
7
7
  "scripts": {
@@ -19,9 +19,7 @@
19
19
  "mysql",
20
20
  "vmoo",
21
21
  "deliver",
22
- "delivery",
23
- "配送",
24
- "测试站"
22
+ "配送测试站"
25
23
  ],
26
24
  "author": "VMOO Team",
27
25
  "license": "MIT"