@xingyuchen/mysql-mcp-server 3.0.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/smithery.yaml ADDED
@@ -0,0 +1,18 @@
1
+ startCommand:
2
+ type: stdio
3
+ configSchema:
4
+ type: object
5
+ properties:
6
+ description:
7
+ type: string
8
+ title: "服务器描述"
9
+ description: "此MySQL MCP服务器的用途描述(可选)"
10
+ default: "MySQL数据库查询服务器"
11
+ commandFunction: |-
12
+ (config) => ({
13
+ "command": "node",
14
+ "args": ["dist/index.js"],
15
+ "env": {
16
+ "NODE_ENV": "production"
17
+ }
18
+ })