-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy path.mcp.json.example
More file actions
41 lines (41 loc) · 894 Bytes
/
.mcp.json.example
File metadata and controls
41 lines (41 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"mcpServers": {
"mysql-game": {
"type": "stdio",
"command": "cmd",
"args": [
"/c",
"npx",
"-y",
"@benborla29/mcp-server-mysql"
],
"env": {
"MYSQL_HOST": "127.0.0.1",
"MYSQL_PORT": "3306",
"MYSQL_USER": "root",
"MYSQL_PASS": "your_password",
"MYSQL_DB": "game-server",
"ALLOW_INSERT_OPERATION": "true",
"ALLOW_UPDATE_OPERATION": "true",
"ALLOW_DELETE_OPERATION": "true"
}
},
"mysql-data": {
"type": "stdio",
"command": "cmd",
"args": [
"/c",
"npx",
"-y",
"@benborla29/mcp-server-mysql"
],
"env": {
"MYSQL_HOST": "127.0.0.1",
"MYSQL_PORT": "3306",
"MYSQL_USER": "root",
"MYSQL_PASS": "your_password",
"MYSQL_DB": "maple-data"
}
}
}
}