File tree 1 file changed +27
-1
lines changed
1 file changed +27
-1
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,33 @@ Or if you don't want to use smithery, use this
107
107
```
108
108
npx mcprunner MYSQL_HOST=127.0.0.1 MYSQL_PORT=3306 MYSQL_USER=root MYSQL_PASS=root MYSQL_DB=demostore ALLOW_INSERT_OPERATION=true ALLOW_UPDATE_OPERATION=true ALLOW_DELETE_OPERATION=false -- npx -y @benborla29/mcp-server-mysql
109
109
```
110
- Don't forget to replace the ` env ` values on that command.
110
+ Don't forget to replace the ` env ` values on that command. If you have the latest version of Cursor, just copy and paste the config below:
111
+
112
+ ` mcp.json `
113
+ ``` json
114
+ {
115
+ "mcpServers" : {
116
+ "MySQL" : {
117
+ "command" : " npx" ,
118
+ "args" : [
119
+ " mcprunner" ,
120
+ " MYSQL_HOST=127.0.0.1" ,
121
+ " MYSQL_PORT=3306" ,
122
+ " MYSQL_USER=root" ,
123
+ " MYSQL_PASS=root" ,
124
+ " MYSQL_DB=demostore" ,
125
+ " ALLOW_INSERT_OPERATION=true" ,
126
+ " ALLOW_UPDATE_OPERATION=true" ,
127
+ " ALLOW_DELETE_OPERATION=false" ,
128
+ " --" ,
129
+ " npx" ,
130
+ " -y" ,
131
+ " @benborla29/mcp-server-mysql"
132
+ ]
133
+ }
134
+ }
135
+ }
136
+ ```
111
137
112
138
### Using MCP Get
113
139
You can’t perform that action at this time.
0 commit comments