We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5cf9d7e + 5e9dc8d commit e4894e5Copy full SHA for e4894e5
README.md
@@ -60,6 +60,31 @@ Add this to your `claude_desktop_config.json`:
60
}
61
```
62
63
+### With Visual Studio Code
64
+Add this to your `mcp.json`:
65
+```json
66
+{
67
+ "servers": {
68
+ "mysql": {
69
+ "type": "stdio",
70
+ "command": "uvx",
71
+ "args": [
72
+ "--from",
73
+ "mysql-mcp-server",
74
+ "mysql_mcp_server"
75
+ ],
76
+ "env": {
77
+ "MYSQL_HOST": "localhost",
78
+ "MYSQL_PORT": "3306",
79
+ "MYSQL_USER": "your_username",
80
+ "MYSQL_PASSWORD": "your_password",
81
+ "MYSQL_DATABASE": "your_database"
82
+ }
83
84
+}
85
+```
86
+Note: Will need to install uv for this to work
87
+
88
### Debugging with MCP Inspector
89
While MySQL MCP Server isn't intended to be run standalone or directly from the command line with Python, you can use the MCP Inspector to debug it.
90
0 commit comments